.bg-white {
 background-color: #72cfe2 !important;
}
/* ===== CSS Variables ===== */
:root {
    --purple-primary: #7B4B94;
    --purple-light: #9B6BB5;
    --purple-dark: #5A3670;
    --teal: #4A90A4;
    --teal-light: #6AB0C4;
    --pink: #E91E8C;
    --pink-light: #F06BAC;
    --lavender: #E8DFF5;
    --lavender-light: #F4EFFA;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --gradient-green: linear-gradient(135deg, #198754 0%, #3f775d 100%);
    --gradient-hero: linear-gradient(135deg, #7ad1ec 0%, #d0f0ed6b 50%, #effafaba 100%);
    --shadow-sm: 0 2px 8px rgba(123, 75, 148, 0.1);
    --shadow-md: 0 4px 16px rgba(123, 75, 148, 0.15);
    --shadow-lg: 0 8px 32px rgba(123, 75, 148, 0.2);
    --transition: all 0.3s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--purple-dark);
}

a {
    color: var(--purple-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--purple-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
.brand-script,
.tagline-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-primary);
}

.brand-subtitle {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--teal);
    font-weight: 500;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--pink);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--purple-dark);
    margin-bottom: 1rem;
}

.section-title .brand-script {
    color: var(--purple-primary);
    font-size: 3rem;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--gradient-green);
    border: none;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid var(--purple-primary);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    color: var(--purple-primary);
    background: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background: var(--purple-primary);
    color: var(--white);
    border-color: var(--purple-primary);
}

/* ===== Navigation ===== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white) !important;
    box-shadow: var(--shadow-md);
}

.navbar-nav .nav-link {
    color: var(--gray-800);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--purple-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--purple-primary);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B4B94' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-title .brand-script {
    font-size: 5rem;
    color: var(--purple-primary);
    display: block;
    line-height: 1;
}

.hero-title span:last-child {
    color: var(--teal);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-quote {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 400px;
}

.hero-quote .quote-mark {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--pink);
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.hero-quote p {
    font-style: italic;
    color: var(--purple-dark);
    margin: 0;
    font-size: 1.1rem;
    padding-left: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px 100px 30px 100px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.hero-image-big {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 30px 100px 30px 100px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.hero-tagline {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
}

.tagline-script {
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--purple-primary), var(--pink));
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
}

/* ===== Why Choose Us Section ===== */
.why-section {
    background: var(--white);
    padding: 5rem 0;
}

.feature-card {
    background: var(--lavender-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.feature-icon.purple {
    background: var(--lavender);
    color: var(--purple-primary);
}

.feature-icon.teal {
    background: #D0E8F0;
    color: var(--teal);
}

.feature-icon.pink {
    background: #FCE4F0;
    color: var(--pink);
}

.feature-icon.blue {
    background: #D6EAF8;
    color: #3498DB;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--purple-dark);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--lavender-light);
    padding: 5rem 0;
}

.services-image-wrapper {
    position: relative;
}

.services-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.services-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--purple-primary);
    border-radius: 20px;
    z-index: -1;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--lavender);
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list i {
    color: var(--pink);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.support-list span {
    font-size: 1.1rem;
    color: var(--gray-800);
}

/* ===== About Section ===== */
.about-section {
    background: var(--white);
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--lavender-light);
    border-radius: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.stat-text strong {
    display: block;
    color: var(--purple-dark);
    font-size: 1.1rem;
}

.stat-text span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Testimonial Section ===== */
.testimonial-section {
    background: var(--gradient-hero);
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: var(--pink);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--purple-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--white);
    padding: 5rem 0;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--lavender-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--purple-dark);
    font-size: 0.95rem;
}

.contact-text a,
.contact-text span {
    color: var(--gray-600);
    font-size: 1rem;
}

.contact-text a:hover {
    color: var(--pink);
}

.contact-form-wrapper {
    background: var(--lavender-light);
    padding: 2.5rem;
    border-radius: 25px;
}

.form-title {
    color: var(--purple-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-control,
.form-select {
    border: 2px solid var(--lavender);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 0.2rem rgba(123, 75, 148, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--gray-800);
}

/* ===== Footer ===== */
.footer {
    background: var(--gradient-green);
    color: var(--white);
}

.footer-brand-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-subtitle {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .brand-script {
        font-size: 3.5rem;
    }

    .hero-tagline {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title .brand-script {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .brand-script {
        font-size: 3rem;
    }

    .hero-quote {
        margin: 0 auto;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .hero-image {
        border-radius: 20px;
    }

    .services-image-wrapper::before,
    .about-image-wrapper::after {
        display: none;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer .row > div {
        text-align: center !important;
    }

    .footer-brand {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title .brand-script {
        font-size: 2.5rem;
    }

    .hero-title span:last-child {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title .brand-script {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Utility Classes ===== */
.text-purple {
    color: var(--purple-primary) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.text-teal {
    color: var(--teal) !important;
}

.bg-lavender {
    background: var(--lavender-light) !important;
}


