@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800;900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.8;
    background: #000000; /* black background */
    color: #ffffff; /* white text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900 !important;
    color: #ffffff; /* headings white */
}

a {
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 800;
    color: #ffffff;
}

.navbar {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.6);
    background: #000000; /* black navbar */
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    background: linear-gradient(#ffffff, #aaaaaa); /* white gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */

section {
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 2;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.8)); /* white-to-black gradient */
    z-index: -1;
}

#blog {
  color: #000000; /* force black text */
}

#blog h1,
#blog h5,
#blog p,
#blog small,
#blog a {
  color: #000000 !important; /* make all elements black */
}

.bg-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 14px 22px;
    transition: all 0.3s ease;
}

.btn-main {
    background: linear-gradient(to right, #ffffff, #aaaaaa); /* white gradient */
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: #000000; /* black text */
}

.btn:hover {
    color: #000000;
    transform: translateY(-5px);
}

/* Services Section */

.section-intro {
    margin-bottom: 40px;
    color: #ffffff;
}

.section-intro .divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #ffffff, #aaaaaa); /* white divider */
    margin: 16px auto;
}

img {
    width: 100%;
}

.service .service-img .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(to right, #ffffff, #aaaaaa); /* white icon bg */
    color: #000000; /* black icon inside */
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .service-img .icon i {
    font-size: 36px;
}

.service .service-img {
    position: relative;
}

.service .service-img .icon {
    position: absolute;
    margin-top: -45px;
    left: 50%;
    transform: translate(-50%);
}

/* About Section */

.video-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #ffffff, #aaaaaa);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-radius: 100px;
}

.video-btn i {
    font-size: 32px;
}

/* Feature Section */

.feature i {
    background: -webkit-linear-gradient(#ffffff, #aaaaaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 54px;
}

/* Review Section */

.review .person {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
}

.review .person img {
    width: 75px;
    height: 75px;
    border-radius: 100px;
}

.review {
    box-shadow: 0 12px 12px rgba(255, 255, 255, 0.1);
    background: #111111; /* subtle dark bg for contrast */
}

.review .stars {
    color: #ffffff; /* white stars */
}

/* Form Section */

form .form-control {
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

form .form-control::placeholder {
    color: #ffffff;
}

form input.form-control {
    height: 54px;
}

form .form-control:focus {
    color: #ffffff;
    background: transparent;
    border-color: #ffffff;
}

/* Footer */

footer {
    background: linear-gradient(to right, #111111, #000000);
    color: #ffffff;
}

footer a {
    color: #ffffff;
}