/* Insurance Zindagi Stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all elements */
*,
*::before,
*::after {
    max-width: 100%;
}

/* Ultimate horizontal scroll prevention */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Wrapper to contain all content */
body>*:not(.nav-menu) {
    max-width: 100%;
    overflow-x: hidden;
}

/* Exception for navigation menu */
.nav-menu,
.nav-menu * {
    max-width: none !important;
    overflow-x: visible !important;
}

/* Prevent horizontal scroll on critical elements only */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
    width: 100%;
}

/* Header Tags with Syne Font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wght" 600;
    font-style: normal;
}

h1 {
    font-variation-settings: "wght" 700;
}

h2 {
    font-variation-settings: "wght" 650;
}

h3 {
    font-variation-settings: "wght" 600;
}

h4,
h5,
h6 {
    font-variation-settings: "wght" 550;
}

/* Mobile Viewport Fix */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    html {
        height: -webkit-fill-available;
    }

    body {
        min-height: -webkit-fill-available;
    }
}

/* Touch-friendly interactions */
button,
a,
.service-card,
.plan-card,
.testimonial-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Ensure buttons are touch-friendly */
button {
    min-height: 44px;
    min-width: 44px;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    font-size: 0.8rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.location,
.hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.location i,
.hours i {
    font-size: 0.7rem;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.emergency-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.emergency-line i {
    font-size: 0.7rem;
    opacity: 0.9;
}

.follow-us {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.2rem;
}

.social-links a {
    color: white;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

/* Top Bar Responsive - Hide on Mobile */
@media screen and (max-width: 768px) {

    .top-bar,
    .top-bar-container,
    .top-bar-left,
    .top-bar-right,
    .contact-info,
    .emergency-line,
    .follow-us {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        height: 100%;
        overflow-x: hidden;
    }

    .header {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1000;
        margin: 0 !important;
        padding: 0 !important;
        background: white;
        box-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
        transform: translate3d(0, 0, 0);
        /* Hardware acceleration */
        -webkit-transform: translate3d(0, 0, 0);
    }

    body {
        padding-top: 70px;
        /* Adjust to header height */
        margin-top: 0 !important;
        position: relative;
    }
}

/* Header & Navigation */
.header {
    background: white;
    position: fixed;
    top: 32px;
    /* Account for top bar height */
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    max-width: none !important;
    overflow-x: visible !important;
}

/* Default body padding for desktop with top bar */
body {
    padding-top: 110px;
    /* Top bar (32px) + Header height (~78px) */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 90px;
    width: 85%;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .line1 {
    color: black;
    font-size: 1.2rem;
}

.logo-text .line2 {
    color: #8B5CF6;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
    /* Remove outline */
}

.nav-menu a:hover {
    color: #8B5CF6;
    /* Updated to match theme purple color */
}

/* Add underline effect on hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8B5CF6;
    /* Updated to match theme purple color */
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #8B5CF6;
    /* Updated to match theme purple color */
}

/* Add highlight for active section */
.nav-menu a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8B5CF6;
    /* Updated to match theme purple color */
}

.nav-menu a:focus,
.nav-menu a:active {
    outline: none;
    /* Remove outline when focused/active */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 0rem 1rem;
    transition: all 0.3s ease;
}

.search-container:hover {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #333;
    font-size: 0.9rem;
    width: 120px;
}

.search-input::placeholder {
    color: #8B5CF6;
    opacity: 0.7;
}

.search-btn {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #8B5CF6;
    font-size: 0.9rem;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #A855F7;
    transform: scale(1.1);
}

.search-btn {
    background: none;
    border: none;
    color: #b23eb2;
    cursor: pointer;
    margin-left: 0.5rem;
}

.btn-appointment {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    font-size: 1rem;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    background: #A855F7;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F3F0FF 0%, #E8E5FF 50%, #DDD6FE 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    /* Account for top bar (32px) + header (80px) */
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #8B5CF6;
    padding: 0;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-badge::before {
    content: "⭐";
    margin-right: 0.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1E293B;
}

.hero-content h1 span {
    color: #1E293B;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #64748B;
    line-height: 1.6;
}

.hero-buttons {
    display: none;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.btn-secondary:hover {
    background: #8B5CF6;
    color: white;
}

/*------- Hero-Image-Section ------*/

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 650px;
    width: 100%;
}

.family-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.family-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.insurance-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    color: #1E293B;
    font-weight: 500;
    pointer-events: auto;
    z-index: 11;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.insurance-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
    background: white;
    z-index: 12;
}

.insurance-card i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.insurance-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.term-plan {
    top: 55%;
    left: 2%;
    animation-delay: 0s;
}

.child-plan {
    bottom: 10%;
    left: -8%;
    animation-delay: 1s;
}

.retirement {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #8B5CF6;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    gap: 3rem;
    margin-top: 0;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-row .trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trust-row .trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-trust-row .rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-trust-row .rating-num {
    font-size: 3rem;
    font-weight: 300;
    color: #FF7D44;
    font-family: 'Georgia', serif;
    letter-spacing: -1.5px;
}

.hero-trust-row .star-icon {
    color: #FFC107;
    font-size: 1.5rem;
    margin-top: -5px;
}

.hero-trust-row .trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
    line-height: 1.1;
    text-transform: none;
}

.hero-trust-row .zerodha-icon {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-trust-row {
        gap: 2rem;
        justify-content: flex-start;
        margin-bottom: 2.5rem;
    }

    .hero-trust-row .rating-num {
        font-size: 2.4rem;
    }

    .hero-trust-row .trust-text {
        font-size: 0.8rem;
    }

    .hero-trust-row .zerodha-icon {
        height: 26px;
    }
}

/* Premium Trust Row for Hero */
.hero-trust-row.premium {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 60px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.8s ease-out;
    flex-wrap: nowrap;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-trust-row.premium .trust-item {
    display: flex;
    align-items: center;
}

.hero-trust-row.premium .trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.hero-trust-row.premium .trust-icon {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-trust-row.premium .trust-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-trust-row.premium .trust-text .small-text {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.hero-trust-row.premium .trust-text .main-text {
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
}

.hero-trust-row.premium .trust-separator {
    width: 1px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .hero-trust-row.premium {
        gap: 1.5rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero-trust-row.premium {
        gap: 1rem;
        padding: 10px 15px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        margin-bottom: 2rem;
    }

    .hero-trust-row.premium .trust-separator {
        display: none;
    }

    .hero-trust-row.premium .laurel-svg {
        width: 35px;
        height: 50px;
    }

    .hero-trust-row.premium .trust-text .main-text {
        font-size: 13px;
    }
}

/* Hero Logo & Tagline */
.hero-logo-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.hero-tagline-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D32F2F;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero-logo-tagline {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-logo-img {
        width: 45px;
    }

    .hero-tagline-text {
        font-size: 0.95rem;
    }
}

/* Features Section */
.features {
    background: white;
    padding: 4rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.feature-card:nth-child(1) .feature-icon {
    background: transparent;
    color: #8B5CF6;
}

.feature-card:nth-child(2) .feature-icon {
    background: transparent;
    color: #8B5CF6;
}

.feature-card:nth-child(3) .feature-icon {
    background: transparent;
    color: #8B5CF6;
}

.feature-card:nth-child(4) .feature-icon {
    background: transparent;
    color: #8B5CF6;
}

.feature-icon i {
    font-size: 24px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.support-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #8B5CF6;
    border-radius: 8px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    position: relative;
}

.badge-24 {
    font-size: 14px;
    font-weight: 700;
}

.badge-7 {
    font-size: 8px;
    position: absolute;
    top: 2px;
    right: 2px;
    background: #A855F7;
    border-radius: 2px;
    padding: 1px 2px;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    text-align: left;
}

.feature-content p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748B;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

/* ----------About Section-------- */

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fdf9f9;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side - Image and Trustpilot */
.about-left {
    flex: 1;
    max-width: 650px;
}

.about-image {
    margin-bottom: 10px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    display: block;
    object-fit: cover;
}

/* Right Side - Content */
.about-right {
    flex: 1;
    max-width: 650px;
    padding-left: 40px;
}

.about-badge {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Syne', sans-serif;
}

.about-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 35px;
}

.btn-about-us {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-about-us:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8B5CF6;
}

.profile-signature {
    font-weight: 700;
    color: #333333;
    font-size: 16px;
}

/* About Section Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 60px;
        padding: 0 20px;
    }

    .about-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 80px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 50px;
        text-align: left;
        align-items: flex-start;
    }

    .about-left {
        max-width: 100%;
        order: 2;
    }

    .about-right {
        max-width: 100%;
        padding-left: 0;
        order: 1;
    }

    .about-title {
        font-size: 36px;
        text-align: left;
    }

    .about-description {
        text-align: left;
    }

    .about-actions {
        justify-content: flex-start;
    }

    .trustpilot-card {
        margin: 0;
    }

    .about-image {
        width: 100%;
        margin: 0;
    }

    .about-image img {
        width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .about-right {
        max-width: 100%;
        padding-left: 0;
        text-align: left;
        order: 2;
    }

    .about-content {
        max-width: 100%;
        text-align: left;
    }

    .about-title {
        font-size: 28px;
        text-align: left;
    }

    .about-description {
        max-width: 100%;
        padding-top: 0;
        text-align: left;
    }

    .about-description p {
        font-size: 15px;
        text-align: left;
    }

    .about-actions {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .btn-about-us {
        padding: 14px 28px;
        font-size: 14px;
    }

    .about-profile {
        align-self: flex-start;
    }

    /* Full-width image for mobile */
    .about-left {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        order: 1;
    }

    .about-image {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }

    .trustpilot-card {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}

/* Duplicate CSS removed - using new about section structure above */

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9ba9d5 0%, #faf5ff 40%, #F9D8FF 100%);
}

/* Services section with perfect card alignment */
.services-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.services-text {
    padding-right: 2rem;
    grid-column: 1;
}

.services-top-cards {
    display: contents;
}

/* Bottom row: Four cards perfectly aligned with top cards */
.services-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.services-label {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.services-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2D1B4E;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-description {
    color: #5B4794;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.nri-why-matters {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.nri-why-matters h4 {
    color: #2D1B4E;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.nri-matters-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nri-matters-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #5B4794;
    font-size: 0.95rem;
    font-weight: 500;
}

.nri-matters-list li i {
    color: #8B5CF6;
    font-size: 1.1rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.service-card:has(.card-buttons) {
    min-height: 380px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    /* Clean outline icons without background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Larger container for all NRI icons and Car Insurance */
.services .service-card .service-icon:has(img[src*="NRI_family.png"]),
.services .service-card .service-icon:has(img[src*="NRI_Term.png"]),
.services .service-card .service-icon:has(img[src*="NRI_Medical.png"]),
.services .service-card .service-icon:has(img[src*="NRI_working_women.png"]),
.services .service-card .service-icon:has(img[src*="NRI_Global.png"]),
.services .service-card .service-icon:has(img[src*="car-icon (2).png"]) {
    width: 60px;
    height: 60px;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    /* Show icons in their original colors - no filter */
}

/* Larger icons for all NRI services and Car Insurance */
.services .service-card .service-icon img[src*="NRI_family.png"],
.services .service-card .service-icon img[src*="NRI_Term.png"],
.services .service-card .service-icon img[src*="NRI_Medical.png"],
.services .service-card .service-icon img[src*="NRI_working_women.png"],
.services .service-card .service-icon img[src*="NRI_Global.png"],
.services .service-card .service-icon img[src*="car-icon (2).png"] {
    width: 100px !important;
    height: 100px !important;
}

/* Specific styling for NRI cards with longer titles */
.services .service-card:has(img[src*="NRI_working_women.png"]) h3,
.services .service-card:has(img[src*="NRI_Global.png"]) h3 {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.nri-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
}

.nri-why-card {
    background: linear-gradient(145deg, #ffffff, #f9f8ff) !important;
    border: 2px solid #8B5CF6 !important;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15) !important;
    position: relative;
}

.nri-why-card::after {
    content: "Must Read";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8B5CF6;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nri-why-card h3 {
    color: #2D1B4E !important;
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .nri-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .nri-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.services .service-card:has(img[src*="NRI_working_women.png"]) p,
.services .service-card:has(img[src*="NRI_Global.png"]) p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: #8B5CF6;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.service-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: auto;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    max-width: 100%;
}

.service-link {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: #7C3AED;
}

.service-link:hover {
    color: #1e3f73;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.btn-call,
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-call {
    background: #0076FF;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 118, 255, 0.2);
}

.btn-call:hover {
    background: #0066DD;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 118, 255, 0.3);
}

.btn-whatsapp {
    background: #f8fafc;
    color: #10B981;
    border: 1px solid #e2e8f0;
}

.btn-whatsapp:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}


.btn-call i,
.btn-whatsapp i {
    font-size: 1.2rem;
}



/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: #f2f1ff;
    position: relative;
    width: 100%;
    overflow: visible;
    min-height: 600px;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.why-choose-label {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.why-choose-left h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #2D1B4E;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
}

.purple-text {
    color: #8B5CF6;
}

.why-choose-description {
    color: #5B4794;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.choose-features.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover {
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.12);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f3f0ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8B5CF6;
    font-size: 1.4rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.feature-content p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.why-choose-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-image {
    position: relative;
    z-index: 1;
}

.why-choose-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.why-choose-image {
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* End-to-End Assistance Section */
.assistance {
    padding: 100px 0;
    background-color: #f8faff;
    overflow: hidden;
}

.assistance-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.assistance-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Right Side Content */
.step-number {
    background: #dbeafe;
    color: #2563eb;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.assistance-heading {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.assistance-subheading {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.assistance-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-assistance {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-assistance.orange {
    background: #ff8a4c;
    color: white;
}

.btn-assistance.orange:hover {
    background: #f77a35;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 138, 76, 0.3);
}

.btn-assistance.gray {
    background: #f1f5f9;
    color: #475569;
}

.btn-assistance.gray:hover {
    background: #e2e8f0;
}

.assistance-steps {
    border-left: 2px dashed #e2e8f0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #8B5CF6;
    border-radius: 50%;
    transform: translateY(-50%);
}

.step-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-item span {
    font-weight: 500;
    color: #334155;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .assistance-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .assistance-heading {
        font-size: 2.2rem;
    }
}

/* Insurance Journey Section */
/* Our Promise Section */
.promise-section {
    padding: 100px 0;
    background: #f8faff;
    font-family: 'Poppins', sans-serif;
}

.promise-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
    text-align: center;
}

.green-text {
    color: #10b981;
}

.promise-subheading {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.journey-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.promise-roadmap {
    position: relative;
    width: 750px !important;
    height: 750px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-line-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    height: 580px;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
    z-index: 1;
}

.journey-center {
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    z-index: 10;
    position: relative;
    border: 1px solid #f1f5f9;
}

.center-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin: 15px 0 10px;
}

.center-subtitle {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-phases {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.phase-circle {
    position: absolute;
    width: 180px;
    text-align: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.phase-circle:hover {
    transform: scale(1.05);
}

.phase-circle::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 6;
}

.phase-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px;
    border: 3px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.phase-circle h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
    line-height: 1.2;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
}

.phase-circle p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    max-width: 130px;
    margin: 0 auto;
}

/* 9-Step Positioning for 750x750 container (Radius = 290, Center = 375,375) */
.p-step-1 {
    top: 30px;
    left: 375px;
    transform: translateX(-50%);
}

.p-step-2 {
    top: 120px;
    left: 575px;
    transform: translateX(-50%);
}

.p-step-3 {
    top: 310px;
    left: 685px;
    transform: translateY(-50%) translateX(-50%);
}

.p-step-4 {
    top: 510px;
    left: 635px;
    transform: translateX(-50%);
}

.p-step-5 {
    bottom: 30px;
    left: 490px;
    transform: translateX(-50%);
}

.p-step-6 {
    bottom: 30px;
    left: 260px;
    transform: translateX(-50%);
}

.p-step-7 {
    top: 510px;
    left: 115px;
    transform: translateX(-50%);
}

.p-step-8 {
    top: 310px;
    left: 65px;
    transform: translateY(-50%) translateX(-50%);
}

.p-step-9 {
    top: 120px;
    left: 175px;
    transform: translateX(-50%);
}

/* Colors for Steps */
.p-step-1 .phase-icon {
    border-color: #3b82f6;
    color: #3b82f6;
}

.p-step-1::before {
    border: 2px solid #3b82f6;
}

.p-step-2 .phase-icon {
    border-color: #0d9488;
    color: #0d9488;
}

.p-step-2::before {
    border: 2px solid #0d9488;
}

.p-step-3 .phase-icon {
    border-color: #65a30d;
    color: #65a30d;
}

.p-step-3::before {
    border: 2px solid #65a30d;
}

.p-step-4 .phase-icon {
    border-color: #eab308;
    color: #eab308;
}

.p-step-4::before {
    border: 2px solid #eab308;
}

.p-step-5 .phase-icon {
    border-color: #f97316;
    color: #f97316;
}

.p-step-5::before {
    border: 2px solid #f97316;
}

.p-step-6 .phase-icon {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.p-step-6::before {
    border: 2px solid #8b5cf6;
}

.p-step-7 .phase-icon {
    border-color: #3b82f6;
    color: #3b82f6;
}

.p-step-7::before {
    border: 2px solid #3b82f6;
}

.p-step-8 .phase-icon {
    border-color: #d946ef;
    color: #d946ef;
}

.p-step-8::before {
    border: 2px solid #d946ef;
}

.p-step-9 .phase-icon {
    border-color: #ec4899;
    color: #ec4899;
}

.p-step-9::before {
    border: 2px solid #ec4899;
}

/* Category Bar */
.promise-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 60px 0 30px;
    border: 1px solid #f1f5f9;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.category-item i {
    font-size: 1.8rem;
    color: #8B5CF6;
}

.category-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
}

/* CTA Bar */
.promise-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    background: #2D1B4E;
    padding: 25px 40px;
    border-radius: 20px;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(45, 27, 78, 0.2);
}


.cta-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.8;
}

.cta-link i {
    font-size: 2.2rem;
    color: #fff;
}

.cta-link .cta-text {
    display: flex;
    flex-direction: column;
}

.cta-link .cta-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-link small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.btn-book-call {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    width: 100%;
}

.btn-book-call:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-book-call i {
    font-size: 1.8rem;
}

.btn-book-call .btn-text {
    text-align: left;
}

.btn-book-call .btn-title {
    font-size: 1.1rem;
    display: block;
}

.btn-book-call small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Footer Bar */
.promise-footer-bar {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.footer-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .promise-roadmap {
        transform: scale(0.9);
    }
}

@media (max-width: 1024px) {
    .promise-roadmap {
        transform: scale(0.75);
    }

    .promise-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .promise-cta-bar {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .cta-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .journey-wrapper {
        padding: 40px 0;
    }

    .promise-roadmap {
        width: 100% !important;
        height: auto !important;
        display: block;
        transform: none;
    }

    .roadmap-line-circle,
    .journey-center {
        display: none;
    }

    .journey-phases {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .phase-circle {
        position: static;
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 20px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .phase-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .phase-circle::before {
        left: 20px;
        top: 20px;
        transform: none;
        width: 24px;
        height: 24px;
    }

    .phase-circle p {
        margin: 0;
        max-width: none;
    }

    .promise-footer-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .promise-categories {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 20px 15px;
        margin: 40px 0 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        border: 1px solid #f1f5f9;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .promise-categories::-webkit-scrollbar {
        display: none;
    }

    .promise-categories .category-item {
        flex: 0 0 auto;
        width: 140px;
        scroll-snap-align: start;
        padding: 15px 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid #f1f5f9;
        background: #fff;
    }
}



/* Statistics Section */
.statistics {
    padding: 2rem 0;
    margin: 0;
    background: #A855F7;
    position: relative;
    overflow: hidden;
}

.statistics-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.statistics .stat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: white;
    flex: 1;
    justify-content: center;
}

.statistics .stat-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.8rem;
}

.statistics .stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.statistics .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1;
    color: white;
    font-variation-settings: "wght" 600;
}

.statistics .stat-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.1;
    font-variation-settings: "wght" 400;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.vision-mission .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Vision & Mission Content Container */
.vision-mission-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Vision & Mission Content Blocks */
.vision-content,
.mission-content {
    padding: 0;
}

.vision-badge,
.mission-badge {
    background: transparent;
    color: #8B5CF6;
    border: none;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-badge span,
.mission-badge span {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
}

.vision-title,
.mission-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.vision-description,
.mission-description,
.mission-description-2 {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-description-2 {
    margin-bottom: 2rem;
}

/* Vision Features - Vertical List */
.vision-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vision-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.vision-features .feature-item i {
    color: #8B5CF6;
    font-size: 1rem;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline;
    flex-shrink: 0;
}

.vision-features .feature-item span {
    color: #1a202c;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Right Side - Team Image */
.vision-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Mission Features - 2x2 Grid */
.mission-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    gap: 1.2rem;
}

.mission-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.mission-features .feature-item i {
    color: #8B5CF6;
    font-size: 1rem;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline;
    flex-shrink: 0;
}

.mission-features .feature-item span {
    color: #1a202c;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mission Layout - 40%/60% Split */
.mission-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: flex-start;
}

.mission-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mission-text .mission-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: normal;
}

.mission-features {
    padding: 2rem;
    background-color: #FFFFFF;
    position: relative;
}

.mission-features::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #000;
    border-radius: 50px 30px 60px 40px / 40px 60px 30px 50px;
    z-index: -1;
}

.mission-features .mission-description,
.mission-features .mission-description-2 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.mission-features .feature-row {
    margin-top: 1rem;
}

/* Mission Only Section */
.mission-only {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.mission-only .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-only-container {
    display: flex;
    justify-content: center;
}

.mission-only .mission-content {
    max-width: 100%;
    padding: 0;
}

.mission-only .mission-badge {
    background: transparent;
    color: #8B5CF6;
    border: 1px solid #8B5CF6;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-only .mission-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.mission-only .mission-description,
.mission-only .mission-description-2 {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-only .mission-description-2 {
    margin-bottom: 2rem;
}

.mission-only .mission-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mission-only .feature-row {
    display: flex;
    gap: 2rem;
}

.mission-only .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.mission-only .feature-item i {
    color: #8B5CF6;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    border: 2px solid #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.mission-only .feature-item span {
    color: #1a202c;
    font-weight: 500;
    font-size: 1rem;
}

/* Request Quote Section */
.request-quote {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.request-quote .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.request-quote-content {
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    z-index: 2;
}

.request-quote-label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.request-quote-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-variation-settings: "wght" 700;
}

.btn-quote-now {
    background: #ffffff;
    color: #8B5CF6;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-quote-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

/* ---------Our Team Section------- */

.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #F3F0FF 0%, #E8E5FF 50%, #DDD6FE 100%);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 60px;
}

.team-content {
    flex: 1;
    max-width: 500px;
}

.team-label {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.team-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    font-family: 'Syne', sans-serif;
}

.team-description {
    flex: 1;
    max-width: 400px;
    padding-top: 40px;
}

.team-description p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.team-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 0px;
    overflow: hidden;
    border: none;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    font-family: 'Syne', sans-serif;
    text-align: center;
}

.team-position {
    font-size: 14px;
    color: #888888;
    margin: 0 0 15px 0;
    font-weight: 500;
    text-align: center;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
    border: none;
}

.social-link.facebook {
    color: #8B5CF6;
}

.social-link.facebook:hover {
    color: #7C3AED;
    transform: scale(1.1);
}

.social-link.linkedin {
    color: #8B5CF6;
}

.social-link.linkedin:hover {
    color: #7C3AED;
    transform: scale(1.1);
}

.social-link.instagram {
    color: #8B5CF6;
}

.social-link.instagram:hover {
    color: #7C3AED;
    transform: scale(1.1);
}

.social-link.twitter {
    color: #8B5CF6;
}

.social-link.twitter:hover {
    color: #7C3AED;
    transform: scale(1.1);
}

/* Team Section Responsive */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .team-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .team {
        padding: 80px 0;
    }

    .team-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .team-content,
    .team-description {
        max-width: 100%;
    }

    .team-description {
        padding-top: 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 60px 0;
    }

    .team-header {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .team-content {
        max-width: 100%;
        text-align: left;
    }

    .team-description {
        max-width: 100%;
        padding-top: 0;
        text-align: left;
    }

    .team-title {
        font-size: 28px;
        text-align: left;
    }

    .team-description p {
        font-size: 15px;
        text-align: left;
    }

    /* Mobile Slider - One Card at a Time */
    .team-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 20px 0;
        margin: 20px 0 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: 100%;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-image {
        width: calc(100%);
        max-width: none;
        height: 450px;
        border-radius: 0px;
        margin-bottom: 20px;

    }

    /* Slider Navigation Dots */
    .team-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(139, 92, 246, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #8B5CF6;
        width: 24px;
        border-radius: 4px;
    }
}

/* Hide slider dots on desktop */
.team-slider-dots {
    display: none;
}

/* Video Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f8f9ff;
    text-align: center;
}

/* Testimonials Header */
.testimonials-header {
    margin-bottom: 4rem;
    text-align: center;
    padding: 2rem 0;
}

.testimonials-label {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.testimonials-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Testimonials Grid */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-testimonial-card {
    text-align: center;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.play-button:hover {
    background: #7C3AED;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.play-button i {
    margin-left: 3px;
    /* Adjust play icon position */
}

/* Video Rating */
.video-rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    padding: 0;
}

.video-rating i {
    font-size: 1.2rem;
    color: #FFD700;
}

.video-rating .far {
    color: #E5E7EB;
}

/* Video Testimonial Text */
.video-testimonial-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 0 0.5rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.contact-form-section {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section .contact-header {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #f9f7fe;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.consulting-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 20 20'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: #8B5CF6;
    color: white;
}

.btn-quote {
    background: white;
    color: #8B5CF6;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.contact-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.consulting-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 0;
}

/* Footer */
.footer {
    background: #a8b8c8;
    color: #333;
    padding: 3rem 0 0;
    width: 100%;
    overflow: hidden;
}

/* Newsletter Section */
.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #1c1b1b;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000 !important;
    line-height: 1.2;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    padding: 12px 20px;
    border: 2px solid #7a8a9a;
    border-radius: 25px 0 0 25px;
    background: transparent;
    font-size: 1rem;
    min-width: 250px;
    outline: none;
    border-right: none;
    color: #333;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    border-color: #8B5CF6;
}

.newsletter-btn {
    padding: 12px 25px;
    background: #8B5CF6;
    color: white;
    border: 2px solid #8B5CF6;
    border-radius: 0 25px 25px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #7C3AED;
    border-color: #7C3AED;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Updated footer styles - October 10, 2025 */
.footer-section h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-decoration-color: #000000 !important;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

.contact-info p,
.working-time p {
    color: #000000;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom-new {
    background: #2E2E63;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    width: 100%;
    margin: 0;
    left: 0;
    right: 0;
    position: relative;
    box-sizing: border-box;
}

.footer-bottom-new p {
    margin: 0;
    font-size: 1rem;
}

/* Tablet Responsive Design (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0 30px;
    }

    .hero-container {
        gap: 2rem;
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .services-top-cards,
    .services-bottom-row,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .search-input {
        width: 100px;
    }

    /* Features Section - Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    /* Why Choose Us Section - Tablet */
    .why-choose-content {
        gap: 3rem;
    }

    .why-choose-left h2 {
        font-size: 2.2rem;
    }

    .feature-item {
        padding: 1.3rem;
    }
}

/* Hide mobile elements on desktop */
.mobile-social-icons,
.nav-close {
    display: none;
}

/* Mobile Responsive Design (max-width: 768px) */
@media (max-width: 768px) {

    /* Navigation */
    .hamburger {
        display: flex;
        color: white;
        margin-right: 5px;
        position: relative;
        padding: 15px;
        border-radius: 50%;
        background: linear-gradient(135deg, #8B5CF6, #A855F7);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    }

    .hamburger .bar {
        background-color: white;
        width: 20px;
        height: 2px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        transition: 0.3s ease;
        padding: 80px 0 20px 0;
        /* More space after the close button */
        margin: 0;
        z-index: 99999;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }

    /* Ensure mobile menu shows above everything */
    .header .nav-menu {
        max-width: none !important;
        overflow-x: visible !important;
        gap: 20px;
    }

    /* Mobile Navigation Close Button */
    .nav-close {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        background: #8B5CF6;
        border: none;
        border-radius: 0;
        color: white;
        font-size: 1.5rem;
        font-weight: normal;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10000;
        padding: 0;
    }

    .nav-close:hover {
        background: #A855F7;
    }

    .nav-menu li {
        margin: 2px 0;
        padding: 0;
        list-style: none;
        width: 80%;
        /* Narrower width to match screenshot */
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        /* Add bottom line to all items */
        padding-bottom: 5px;
        /* Spacing for the bottom line */
        cursor: pointer;
        /* Show pointer cursor to indicate clickable */
    }

    .nav-menu li:first-child {
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .nav-menu a {
        font-size: 1.25rem;
        /* Increase font size to match screenshot */
        padding: 8px 0;
        /* Decreased padding to match screenshot */
        display: block;
        color: #777;
        /* Lighter gray to match screenshot */
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        text-align: left;
        width: auto;
        margin-left: 15px;
        /* Add left margin for text */
    }

    /* Replace the after pseudo-element with a separate element for the arrow */
    .nav-menu a::after {
        display: none;
        /* Hide default arrow */
    }

    /* Add a separate element for the purple circle arrows */
    .nav-menu li::after {
        content: "→";
        width: 45px;
        /* Match size from screenshot */
        height: 50px;
        background: #cfa2fc;
        /* Lighter purple to match screenshot */
        color: white;
        border-radius: 15px;
        /* More rounded corners as shown */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        /* Slightly larger arrow */
        transition: all 0.3s ease;
        margin-right: 15px;
        /* Right margin to match screenshot */
        pointer-events: auto;
        /* Make the arrow itself clickable */
        cursor: pointer;
        /* Show cursor as pointer */
    }

    .nav-menu a:hover {
        color: #8B5CF6;
    }

    .nav-menu a.active {
        color: #8B5CF6;
        font-weight: 600;
    }

    .nav-menu li:hover::after {
        background: #8B5CF6;
    }

    /* Mobile Navigation Social Icons */
    .mobile-social-icons {
        position: relative;
        padding: 1.5rem 0;
        display: flex;
        gap: 1.5rem;
        width: 80%;
        /* Match width of menu items */
        justify-content: flex-start;
        /* Left align like the menu items */
        margin-top: 1rem;
        padding-left: 15px;
        /* Align with menu text */
        border-top: 1px solid #eee;
        /* Add top border to separate from menu items */
    }

    .mobile-social-icons a {
        width: 32px;
        height: 32px;
        background: #f2f2f2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #777;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
        text-decoration: none;
    }

    .mobile-social-icons a:hover {
        background: #8655f7;
        color: white;
        transform: translateY(-2px);
    }

    .mobile-social-icons a::after {
        display: none;
    }

    .nav-right {
        display: flex;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .search-container {
        display: none;
        /* Hide search bar on mobile view */
    }

    .search-input {
        width: 80px;
    }

    .btn-appointment {
        display: none;
    }

    .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 160px;
        /* Minimal padding since body has padding-top */
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
        padding: 0;
        width: 100%;
    }

    .hero-content {
        order: 2;
        padding: 1.5rem 20px 0;
    }

    .hero-image {
        order: 1;
        height: 450px;
        margin-bottom: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-top: 3rem;
    }

    .family-image {
        width: 100%;
        height: 100%;
    }

    .family-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        display: none;
    }

    /* Floating cards adjustments for mobile */
    .floating-cards {
        display: block;
    }

    .insurance-card {
        font-size: 0.8rem !important;
        padding: 0.6rem 1rem !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        color: #1E293B !important;
        font-weight: 500 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        backdrop-filter: blur(10px) !important;
    }

    .insurance-card i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .insurance-card img {
        width: 28px;
        height: 28px;
    }

    .term-plan {
        top: auto !important;
        bottom: 40% !important;
        left: 5% !important;
        right: auto !important;
    }

    .child-plan {
        bottom: 15% !important;
        left: 5% !important;
        right: auto !important;
    }

    .retirement {
        bottom: 20% !important;
        right: 5% !important;
        left: auto !important;
    }

    .hero-indicators {
        margin-top: 1.5rem;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Services Section */
    .services {
        padding: 3rem 0;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-text {
        padding-right: 0;
        text-align: left;
    }

    .services-text h2 {
        font-size: 2rem;
    }

    .services-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-top-cards,
    .services-bottom-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .service-icon img {
        width: 50px;
        height: 50px;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Why Choose Us Section - Mobile */
    .why-choose-us {
        padding: 4rem 0;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-left h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .why-choose-description {
        text-align: center;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .choose-features.grid-2-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .feature-icon {
        margin-bottom: 0.5rem;
        width: 50px;
        height: 50px;
    }

    .why-choose-image {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Plans Section */
    .plans {
        padding: 3rem 0;
    }

    .plans h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        text-align: left;
    }

    .plan-card {
        margin: 0 10px;
    }

    .plan-card.silver-plan {
        transform: none;
        order: -1;
    }

    .plan-price .amount {
        font-size: 3rem;
    }

    /* Statistics Section */
    .statistics {
        padding: 1.5rem 0;
    }

    .statistics-container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem 3rem;
    }

    .statistics .stat-item {
        justify-content: flex-start;
        padding-left: 0;
        flex: none;
    }

    .statistics .stat-content {
        text-align: left;
    }

    .statistics .stat-number {
        font-size: 1.8rem;
    }

    .statistics .stat-label {
        font-size: 0.8rem;
    }

    .statistics .stat-label {
        font-size: 0.9rem;
    }

    /* Vision & Mission Section - Mobile */
    .vision-mission {
        padding: 3rem 0;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-mission-content {
        order: 2;
        gap: 2rem;
    }

    .vision-image {
        order: 1;
    }

    .vision-image img {
        height: 300px;
    }

    .vision-content,
    .mission-content {
        padding: 0;
    }

    .vision-title,
    .mission-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    /* Mission Layout Mobile Responsive */
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-text {
        padding-right: 0;
        text-align: left;
    }

    .mission-text .mission-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .mission-features {
        padding: 1.5rem;
    }

    .mission-features::before {
        border-radius: 25px 18px 30px 20px / 20px 28px 18px 25px;
    }
}

/* New Layout Sections */
.our-mission-top,
.our-mission-bottom {
    padding: 5rem 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.our-vision-middle {
    padding: 5rem 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.our-mission-top .container,
.our-mission-bottom .container,
.our-vision-middle .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Vision Layout - Left content, Right image */
.vision-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: center;
}

.vision-left {
    padding-right: 2rem;
}

.vision-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0B0B2B;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
}

.vision-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vision-features .feature-row {
    display: flex;
    gap: 2rem;
}

.vision-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.vision-features .feature-item i {
    color: #8B5CF6;
    font-size: 1rem;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    display: inline;
    flex-shrink: 0;
}

.vision-features .feature-item span {
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
}

.vision-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-right img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0px;
}

/* Responsive for new sections */
@media (max-width: 768px) {

    .our-mission-top,
    .our-mission-bottom,
    .our-vision-middle {
        padding: 4rem 0;
    }

    .our-mission-top .container,
    .our-mission-bottom .container,
    .our-vision-middle .container {
        padding: 0 1.5rem;
    }

    .vision-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vision-left {
        padding-right: 0;
        order: 2;
    }

    .vision-right {
        order: 1;
    }

    .vision-title {
        font-size: 1.8rem;
    }

    .vision-features .feature-row {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-description,
    .mission-description,
    .mission-description-2 {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-features .feature-item,
    .mission-features .feature-item {
        gap: 0.6rem;
    }

    .vision-features .feature-item span,
    .mission-features .feature-item span {
        font-size: 0.9rem;
    }

    /* Mission Only Section - Mobile */
    .mission-only {
        padding: 3rem 0;
    }

    .mission-only .container {
        padding: 0 1rem;
    }

    .mission-only .mission-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .mission-only .mission-description,
    .mission-only .mission-description-2 {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .mission-only .feature-row {
        flex-direction: column;
        gap: 1rem;
    }

    .mission-only .feature-item span {
        font-size: 0.95rem;
    }

    /* Request Quote Section - Mobile */
    .request-quote {
        padding: 3rem 0;
    }

    .request-quote .container {
        padding: 0 1rem;
    }

    .request-quote-content {
        padding: 3rem 1.5rem;
        border-radius: 15px;
    }

    .request-quote-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .btn-quote-now {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    /* Video Testimonials Section - Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .video-thumbnail {
        height: 250px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        gap: 0.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
        margin-bottom: 0.2rem;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Contact Section */
    .contact {
        padding: 2rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 15px;
        margin: 0 1rem;
    }

    .contact-form-section {
        padding: 2.5rem 2rem;
    }

    .contact-form-section .contact-header {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .contact-form-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-image-section {
        min-height: 250px;
    }

    .consulting-image {
        min-height: 250px;
    }

    /* Footer - Mobile Update October 10, 2025 */
    .footer {
        padding: 2rem 0 0 !important;
        background: #4A5568 !important;
        color: white !important;
    }

    .newsletter-section {
        flex-direction: column !important;
        gap: 1.5rem;
        text-align: left !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 1.5rem 1rem !important;
        align-items: flex-start !important;
    }

    .footer-logo {
        margin-bottom: 0.5rem;
        align-self: flex-start;
    }

    .footer-logo span {
        color: #8B5CF6 !important;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .newsletter-form {
        flex-direction: row;
        gap: 0;
        align-items: center;
        max-width: 400px;
        align-self: flex-start;
    }

    .newsletter-input {
        flex: 1;
        padding: 12px 20px;
        border-radius: 25px 0 0 25px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        border-right: none;
    }

    .newsletter-btn {
        padding: 12px 25px;
        border-radius: 0 25px 25px 0;
        background: #8B5CF6;
        color: white;
        border: 2px solid #8B5CF6;
        font-size: 0.95rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    /* Reorder footer sections for mobile */
    .footer-section:nth-child(1) {
        order: 1;
    }

    /* Contact */
    .footer-section:nth-child(2) {
        order: 2;
    }

    /* Company */
    .footer-section:nth-child(3) {
        order: 3;
    }

    /* Our Services */
    .footer-section:nth-child(4) {
        order: 4;
    }

    /* Working Time */

    .footer-section h4 {
        font-size: 1.2rem;
        color: white !important;
        text-decoration-color: white !important;
    }

    .footer-section ul li a,
    .contact-info p,
    .working-time p {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Footer Bottom - Mobile Fix */
    .footer-bottom-new {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin: 1rem 0 0 0 !important;
        padding: 1rem 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-bottom-new p {
        font-size: 0.9rem !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 200px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn-appointment {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .service-card,
    .plan-card,
    .testimonial-card,
    .contact-form-container {
        margin: 0 5px;
    }

    .stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI/Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-img {
        height: 50px;
    }
}

/* Dark mode support (if user prefers) */
@media (prefers-color-scheme: dark) {
    .hero {
        background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    }

    .hero-content {
        color: #101113;
    }

    .hero-content p {
        color: #101113;
    }
}

/* Print styles */
@media print {

    .header,
    .hamburger,
    .hero-buttons,
    .btn-appointment,
    .floating-cards,
    .hero-indicators {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        page-break-after: always;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth scrolling for iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}

/* Additional mobile-specific styles */
.is-mobile .hero-buttons {
    width: 100%;
}

.is-mobile button {
    cursor: default;
}

.is-mobile .service-card:hover,
.is-mobile .plan-card:hover,
.is-mobile .testimonial-card:hover {
    transform: none;
}

/* Safe area handling for newer mobile devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .services-top-cards,
    .services-bottom-row,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Services Section - Extra Small Mobile */
    .services {
        padding: 2rem 0;
    }

    .services-top-row {
        gap: 2rem;
    }

    .services-text h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .services-description {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .plan-card.silver-plan {
        transform: none;
    }

    /* Footer - Mobile */
    .footer {
        background: #3F3D61 !important;
    }

    .newsletter-section {
        flex-direction: column;
        gap: 1.2rem;
        text-align: left;
        padding: 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 0.5rem;
        align-self: flex-start;
    }

    .footer-logo span {
        font-size: 1.1rem;
        color: #8B5CF6 !important;
        font-weight: 700;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
        max-width: 300px;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        padding: 12px 20px;
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px 25px;
        border-radius: 25px;
        background: #8B5CF6;
        color: white;
        border: 2px solid #8B5CF6;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    /* Reorder footer sections for small mobile */
    .footer-section:nth-child(1) {
        order: 1;
    }

    /* Contact */
    .footer-section:nth-child(2) {
        order: 2;
    }

    /* Company */
    .footer-section:nth-child(3) {
        order: 3;
    }

    /* Our Services */
    .footer-section:nth-child(4) {
        order: 4;
    }

    /* Working Time */

    .footer-section h4 {
        font-size: 1.1rem;
        color: white !important;
        text-decoration-color: white !important;
    }

    .footer-section ul li a,
    .contact-info p,
    .working-time p {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Features Section - Extra Small Mobile */
    .features-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .feature-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 0.6rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Sub-Pages Styles */
.page-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Sub-page content sections */
.testimonials-page,
.about-page,
.contact-page {
    padding: 5rem 0;
    background: white;
    min-height: 400px;
}

.testimonials-placeholder,
.about-placeholder,
.contact-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9ff;
    border-radius: 20px;
    border: 2px dashed #E5D4FF;
}

.testimonials-placeholder h2,
.about-placeholder h2,
.contact-placeholder h2 {
    color: #8B5CF6;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
}

.testimonials-placeholder p,
.about-placeholder p,
.contact-placeholder p {
    color: #666;
    font-size: 1.1rem;
}

/* Navigation active state for sub-pages */
.nav-menu a.active {
    color: #16141a;
    font-weight: 600;
}

/* Mobile responsive for sub-pages */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .testimonials-page,
    .about-page,
    .contact-page {
        padding: 3rem 0;
    }

    .testimonials-placeholder,
    .about-placeholder,
    .contact-placeholder {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }

    .testimonials-placeholder h2,
    .about-placeholder h2,
    .contact-placeholder h2 {
        font-size: 1.5rem;
    }

    .testimonials-placeholder p,
    .about-placeholder p,
    .contact-placeholder p {
        font-size: 1rem;
    }
}

/* Sub-page testimonials specific styling */
.page-testimonials .testimonials {
    padding-top: 4rem;
    /* Extra padding for sub-page layout to ensure clear section start */
}

/* Mobile adjustments for sub-page testimonials */
@media (max-width: 768px) {
    .page-testimonials .testimonials {
        padding-top: 5rem;
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Updated: 10/10/2025 10:35:27 */

/* ===================================================================
   CUSTOM CONTACT FORM SECTION HEADER STYLES
   Dedicated CSS for contact page header - DO NOT MODIFY OTHER SECTIONS
   =================================================================== */

.contact-page-header {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    display: inline-block;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8B5CF6;
    border-radius: 2px;
}

/* Mobile responsive for custom contact header */
@media (max-width: 768px) {
    .contact-page-header {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        letter-spacing: 1px;
    }

    .contact-page-header::before {
        width: 30px;
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .contact-page-header {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.8px;
    }

    .contact-page-header::before {
        width: 25px;
    }
}

/* ===================================================================
   CUSTOM WHITE BACKGROUND CONTACT FORM STYLING
   Override styles for white background contact form like in Requirements
   =================================================================== */

/* Custom white background contact container */
.contact-container.white-theme {
    background: white;
    border-radius: 20px 0 0 20px;
    /* Only round left side */
    box-shadow: 0 10px 30px rgba(252, 249, 249, 0.1);
    overflow: hidden;
}

.contact-container.white-theme .contact-form-section {
    background: white;
    padding: 3rem 2.5rem;
}

/* Remove border-radius from image section */
.contact-container.white-theme .contact-image-section {
    border-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    overflow: hidden;
    position: relative;
}

.contact-container.white-theme .consulting-image {
    border-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Custom header styling for white theme - Compact Boxed Design */
.contact-container.white-theme .contact-header {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #8B5CF6;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(250, 249, 252, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    position: relative;
    width: fit-content;
    white-space: nowrap;
}

/* Custom main heading for white theme */
.contact-container.white-theme .contact-form-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Custom form styling for white theme */
.contact-container.white-theme .form-group input,
.contact-container.white-theme .form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #8B5CF6;
    border-radius: 50px;
    background: white;
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-container.white-theme .form-group input::placeholder {
    color: #8B5CF6;
    opacity: 0.7;
}

.contact-container.white-theme .form-group input:focus,
.contact-container.white-theme .form-group select:focus {
    border-color: #A855F7;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Custom select styling for white theme */
.contact-container.white-theme .form-group select {
    color: #8B5CF6;
    cursor: pointer;
}

.contact-container.white-theme .form-group select option {
    color: #333;
    background: white;
}

/* Custom button styling for white theme */
.contact-container.white-theme .btn-quote {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-container.white-theme .btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Mobile responsive for white theme */
@media (max-width: 768px) {
    .contact-container.white-theme .contact-header {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.6rem;
        border-radius: 12px;
    }

    .contact-container.white-theme .contact-form-section {
        padding: 2.5rem 2rem;
    }

    .contact-container.white-theme .contact-form-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-container.white-theme .form-group input,
    .contact-container.white-theme .form-group select {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }

    .contact-container.white-theme .btn-quote {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-container.white-theme .contact-header {
        font-size: 0.75rem;
        padding: 0.2rem 0.1rem;
        margin-bottom: 0.5rem;
        border-radius: 10px;
    }

    .contact-container.white-theme .contact-form-section {
        padding: 2rem 1.25rem;
    }

    .contact-container.white-theme .contact-form-section h2 {
        font-size: 1.8rem;
    }

    .contact-container.white-theme .form-group input,
    .contact-container.white-theme .form-group select {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   LOCATION SECTION STYLES
   ======================================== */

.location-section {
    padding: 5rem 0;
    background: #ffffff;
}

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-label {
    background: transparent;
    color: #b23eb2;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid #a69faf;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.location-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: stretch;
}

.location-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e4078 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.location-card-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.location-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.location-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.location-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 100%;
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .location-info-cards {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1rem;
    }

    .location-map-container {
        height: 400px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .location-section {
        padding: 3rem 0;
    }

    .location-header h2 {
        font-size: 2rem;
    }

    .location-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-card {
        padding: 1.2rem;
    }

    .location-map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .location-header h2 {
        font-size: 1.6rem;
    }

    .location-map-container {
        height: 300px;
    }
}

/* Remove blue highlight and focus outline for all interactive elements */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
.navbar a:focus,
.top-bar a:focus,
.social-links a:focus,
.nav-menu a:focus,
.footer a:focus,
.btn:focus,
[role="button"]:focus {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* === DROPDOWN MENU SERVICES === */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

/* Dropdown container */
.dropdown-content {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 999;
    flex-direction: column;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: #f3e8ff;
    color: #6a0dad;
}

/* === DESKTOP: show dropdown on hover === */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* === MOBILE: dropdown functionality === */
@media (max-width: 768px) {
    .dropdown {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 80% !important;
        height: auto !important;
        position: relative;
    }
    
    .dropdown .dropbtn {
        order: 1 !important;
        flex: 1 !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
        margin-left: 15px;
        color: #777;
        font-size: 1.25rem;
        font-weight: 500;
        text-decoration: none;
    }
    
    .dropdown::after {
        order: 2 !important;
        margin-left: auto;
    }
    
    .dropdown-content {
        order: 3 !important;
        display: none;
        position: static;
        width: 100% !important;
        background: #faf7ff;
        box-shadow: none;
        border-radius: 8px;
        padding: 5px 0 !important;
        margin-top: 10px;
        margin-bottom: 8px;
        border-left: 2px solid #8B5CF6;
        flex-direction: column;
    }
    
    /* Show dropdown content when active */
    .dropdown.active .dropdown-content {
        display: flex !important;
    }
    
    /* Rotate the chevron icon when dropdown is active */
    .dropdown.active .dropbtn i {
        transform: rotate(180deg);
        color: #8B5CF6;
    }

    /* Rotate/animate the main arrow symbol when dropdown is active */
    .dropdown.active::after {
        transform: rotate(90deg);
        background: #8B5CF6 !important;
    }
    
    /* Style sub-items inside the dropdown */
    .nav-menu .dropdown-content li {
        width: 100% !important;
        border-bottom: 1px solid #f1eeff !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        cursor: pointer;
    }

    .nav-menu .dropdown-content li:last-child {
        border-bottom: none !important;
    }
    
    /* Remove the default arrow symbol for sub-menu items */
    .nav-menu .dropdown-content li::after {
        display: none !important;
    }
    
    .nav-menu .dropdown-content a {
        font-size: 1.1rem !important;
        color: #555 !important;
        padding: 10px 15px 10px 25px !important;
        margin: 0 !important;
        width: 100%;
        display: block;
        text-decoration: none;
        text-align: left;
        transition: background-color 0.2s ease;
    }

    .nav-menu .dropdown-content a:hover,
    .nav-menu .dropdown-content a:active {
        background-color: #f3e8ff;
        color: #8B5CF6 !important;
    }
}


/* NRI Matters Modal Styles */
.nri-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 27, 78, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nri-modal.active {
    display: block;
    opacity: 1;
}

.nri-modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #64748B;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: #2D1B4E;
}

.modal-body {
    padding: 40px;
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    color: #2D1B4E;
    margin-bottom: 10px;
    font-weight: 800;
}

.modal-header .subtitle {
    font-size: 1.1rem;
    color: #8B5CF6;
    font-weight: 600;
}

.modal-section {
    margin-bottom: 30px;
}

.highlight-quote {
    background: #F5F3FF;
    border-left: 4px solid #8B5CF6;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #5B4794;
    font-size: 1.1rem;
    border-radius: 0 12px 12px 0;
}

.complications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.comp-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.comp-item h3 {
    font-size: 1rem;
    color: #2D1B4E;
    margin-bottom: 10px;
    font-weight: 700;
}

.comp-item p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.sol-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sol-item i {
    color: #10B981;
    margin-top: 4px;
}

.modal-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #F1F5F9;
}

.final-quote {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 20px;
}

.btn-modal-cta {
    background: #0076FF;
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 118, 255, 0.2);
}

@media (max-width: 768px) {

    .complications-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 25px;
    }
}

/* Working Women Modal Specific Styles */
.women-theme .modal-header .subtitle {
    color: #DB2777;
    /* Rose/Pink accent for working women theme */
}

.women-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    background: #FFF5F7;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #FCE7F3;
}

.benefit-item i {
    color: #DB2777;
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-text h4 {
    font-size: 0.95rem;
    color: #2D1B4E;
    margin-bottom: 4px;
    font-weight: 700;
}

.benefit-text p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

.founder-message-box {
    background: #2D1B4E;
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.founder-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.founder-info i {
    font-size: 1.5rem;
    color: #FCE7F3;
    opacity: 0.8;
}

.founder-info p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.founder-name {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.founder-name strong {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.founder-name span {
    font-size: 0.9rem;
    color: #FCE7F3;
}

.founder-name small {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

.women-btn {
    background: #DB2777 !important;
}

.women-btn:hover {
    background: #BE185D !important;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.2);
}

@media (max-width: 768px) {
    .women-benefits-list {
        grid-template-columns: 1fr;
    }

    .founder-info p {
        font-size: 1rem;
    }
}