html {
    scroll-padding-top: 75px; /* adjust to the height of your navbar */
}

/* body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, .navbar-brand, .btn {
    font-family: 'Poppins', sans-serif;
}


/* body {
    font-family: 'Cormorant Garamond', serif;
}


h1, h2, h3, h4, .navbar-brand, .btn {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
} */


/* Body text (clean & readable) */
body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Headings, Navbar, Buttons (impactful) */
h1, h2, h3, h4,  .navbar-brand, .btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* optional: gives marketing punch */
}

/* Achievements / Stats Section */
#stats {
    background: linear-gradient(135deg, #ffe6f0, #ffd6e6);
}
#stats .text-pink {
    color: #b30059 !important;
}
#stats .glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(179,0,89,0.3);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Clients / Testimonials Section */
#clients {
    background: linear-gradient(135deg, #ffe6f0, #ffd6e6);
}
#clients .text-pink {
    color: #b30059 !important;
}
#clients .testimonial-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 2px solid #b30059;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#clients .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25), 0 0 12px rgba(179,0,89,0.2);
}
#clients .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    display: block;
    margin: 0 auto 1rem auto;
}
#clients .stars i {
    color: #b30059;
    margin: 0 2px;
}

#clients .text {
    color: #b30059;
    /* margin: 0 2px; */
}


/* hero */
/* Offset for fixed navbar */
body {
    padding-top: 80px; /* ensures sections start below navbar */
}

/* Hero base */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh; /* same height for all */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Glass overlay */
.hero-glass {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    /* margin: auto; */
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

/* Typography */
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.hero-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        height: 70vh;
    }
    .hero-glass {
        padding: 2rem 1.5rem;
    }
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .hero-text {
        font-size: 1rem;
    }
}

