* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

          /* Header */
        header {
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

     /* Base navbar styles (Image 1 - initial state) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed; /* Changed to fixed for scroll effect */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    
    /* Initial state - transparent/blurred */
    background: white; /* Very transparent teal */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0; /* No border radius initially */
    box-shadow: none; /* No shadow initially */
    
    /* Smooth transition for all changes */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0; /* No margin initially */
}

/* Scrolled state (Image 2 - after scroll) */
nav.scrolled {
    background:white; /* More opaque teal background */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px; /* Rounded corners when scrolled */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Shadow when scrolled */
    margin: 10px 20px 0 20px; /* Add margin to create the "card" effect */
    padding: 15px 35px; /* Slightly reduce padding when scrolled */
}

/* Logo styles */
.logo {
    color: black;
    font-size: 29px;
    font-weight: 600;
    font-style: italic;
    font-family: "Playfair Display", "Didot", "Bodoni MT", "Times New Roman", serif;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    margin-left: 55px; /* Adjusted for better alignment */
}
.logo span {
    font-size: 14px;
    display: block;
    margin-top: -2px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Playfair Display", "Didot", "Bodoni MT", "Times New Roman", serif;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    justify-content: center;
    flex: 1;
    padding: 0;
    margin: 0;
    margin-left: -50px; /* Adjusted for better alignment */
}

.nav-links a {
     color: black;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    padding: 8px 0 12px 0; /* Extra bottom padding for underline space */
    transition: all 0.3s ease;
}

/* Underline effect on hover - positioned BELOW the text */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; /* At the very bottom */
    left: 0;
    width: 0;
    height: 3px; /* Thicker underline */
    background-color: #e05bab; /* Yellow underline */
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    color: black; /* Yellow text color on hover */

}

.nav-links a:hover::after {
    width: 100%; /* Expand underline to full width */
}

/* Active/current page state (optional) */
.nav-links a.active {
    color: #e05bab;
}

.nav-links a.active::after {
    width: 100%;
    background-color: #e05bab;
}


/* Book call button */
.book-call-btn {
   background: linear-gradient(135deg, hsl(330 65% 58%) 0%, hsl(330 65% 52%) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    border: none;
    cursor: pointer;
    margin-right: 50px;
}

.book-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 40px -10px hsl(330 65% 58% / 0.4);
}

 .highlight {
            color: hsl(330 65% 58%);
        }

/* Ensure body has top padding to account for fixed navbar */
body {
    padding-top: 80px; /* Adjust based on your navbar height */
}

/* Optional: Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        margin: 0; /* Remove margin on mobile */
    }
    
    nav.scrolled {
        margin: 5px 10px 0 10px;
        padding: 12px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none; /* Hide nav links on very small screens */
    }
    
    nav.scrolled {
        margin: 5px;
    }
}
.mobile-menu-btn {
    display: none; /* Hide by default, show on mobile */
}

        /* Mobile Menu Button */
        .mobile-menu-btn {
          display: none;
          border: 20px ;
          color: #e05bab;
          background: #FDF2F8;
          font-size: 24px;
          cursor: pointer;
          padding: 8px;
          margin-right: 20px;
        }


        .hero-container {
            background: linear-gradient(135deg, #faf7f7 0%, #f5f0f0 100%);
            border-radius: 24px;
            padding: 50px;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .hero-container::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(135deg, #FDF2F8 0%, #FDF2F8 100%);
            border-radius: 0 0 24px 24px;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .left-section h3 {
            color: #dc4c94;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .left-section h1 {
            color: #dc4c94;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .left-section p {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #333;
            font-size: 14px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            background: #dc4c94;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

        .form-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 30px;
            backdrop-filter: blur(10px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        input, textarea {
            padding: 12px 16px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            background: white;
            transition: border-color 0.3s ease;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #FDF2F8;
        }

        input::placeholder, textarea::placeholder {
            color: #999;
        }

        textarea {
            min-height: 100px;
            resize: vertical;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 20px;
        }

        .radio-group label {
            font-size: 14px;
            color: #666;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .radio-item input[type="radio"] {
            width: 16px;
            height: 16px;
            margin: 0;
        }

        .captcha {
            margin: 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .captcha-box {
            width: 24px;
            height: 24px;
            border: 2px solid #ccc;
            border-radius: 3px;
            position: relative;
            cursor: pointer;
            background: white;
        }

        .captcha-text {
            font-size: 14px;
            color: #666;
        }

        .captcha-logo {
            font-size: 12px;
            color: #999;
            margin-left: auto;
        }

        .submit-btn {
            background: #dc4c94;
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background: #dc4c94;
        }

        @media (max-width: 768px) {
            .hero-container {
                padding: 30px 20px;
            }

            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .left-section h1 {
                font-size: 36px;
            }

          .form-row {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    .form-section {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        padding: 15px;
        backdrop-filter: blur(10px);
    }
    input, textarea {
        font-size: 14px;
        padding: 8px 10px;
    }

}

/* Mobile devices - 430px and below */
@media (max-width: 430px) {
    .hero-container {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 16px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .left-section h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .form-section {
        padding: 20px;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 14px;
    }
    
    textarea {
        min-height: 80px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .captcha {
        flex-wrap: wrap;
        margin: 15px 0;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}

/* iPhone 14 Pro Max - 430px */
@media (max-width: 430px) and (min-width: 415px) {
    .hero-container {
        padding: 35px 25px;
    }
    
    .left-section h1 {
        font-size: 38px;
    }
    
    .form-section {
        padding: 22px;
        width: 100%;
        box-sizing: border-box;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
    }
}

/* iPhone 12 Pro, 13 Pro - 390px */
@media (max-width: 414px) and (min-width: 391px) {
    .hero-container {
        padding: 30px 20px;
    }
    
    .left-section h1 {
        font-size: 34px;
    }
    
    .contact-info {
        gap: 10px;
    }
    
    .form-section {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 11px 14px;
        font-size: 14px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 13px;
    }
}

/* iPhone 6/7/8 Plus - 414px */
@media (max-width: 414px) and (min-width: 376px) {
    .hero-container {
        padding: 32px 22px;
    }
    
    .left-section h1 {
        font-size: 36px;
    }
    
    .form-section {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}

/* iPhone X/11/12/13 - 375px */
@media (max-width: 375px) and (min-width: 361px) {
    .hero-container {
        padding: 25px 18px;
    }
    
    .left-section h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .left-section p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .form-section {
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 11px 13px;
        font-size: 14px;
    }
    
    textarea {
        min-height: 75px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .captcha {
        margin: 14px 0;
        flex-wrap: wrap;
    }
    
    .submit-btn {
        width: 100%;
        padding: 13px;
        font-size: 15px;
    }
}

/* Samsung Galaxy S8+ - 360px */
@media (max-width: 360px) and (min-width: 321px) {
    .hero-container {
        padding: 25px 16px;
    }
    
    .left-section h1 {
        font-size: 30px;
    }
    
    .left-section h3 {
        font-size: 15px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .form-section {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    textarea {
        min-height: 70px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .radio-group label {
        font-size: 13px;
    }
    
    .captcha {
        margin: 12px 0;
        flex-wrap: wrap;
    }
    
    .captcha-text {
        font-size: 13px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

/* iPhone 5/SE - 320px */
@media (max-width: 320px) {
    .hero-container {
        padding: 20px 15px;
        margin: 5px;
        border-radius: 12px;
    }
    
    .content-wrapper {
        gap: 25px;
    }
    
    .left-section h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .left-section h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .left-section p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .form-section {
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .form-group {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-icon::after {
        width: 6px;
        height: 6px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    textarea {
        min-height: 65px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .captcha {
        margin: 10px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .captcha-text {
        font-size: 12px;
    }
    
    .captcha-box {
        width: 20px;
        height: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .radio-group label {
        font-size: 12px;
    }
    
    .radio-item {
        gap: 6px;
    }
    
    .radio-item input[type="radio"] {
        width: 14px;
        height: 14px;
    }
}

/* Pixel 6 Pro - 412px */
@media (max-width: 412px) and (min-width: 391px) {
    .hero-container {
        padding: 30px 20px;
    }
    
    .left-section h1 {
        font-size: 35px;
    }
    
    .form-section {
        padding: 18px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    input, textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}






        /*MODAL SECTION*/
        .person-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Loading Animation */
        .loading-dots {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
        }

        .loading-dots.show {
            display: flex;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #dc4c94;
            animation: bounce 1.4s infinite ease-in-out both;
        }

        .dot:nth-child(1) { animation-delay: -0.32s; }
        .dot:nth-child(2) { animation-delay: -0.16s; }
        .dot:nth-child(3) { animation-delay: 0s; }

        @keyframes bounce {
            0%, 80%, 100% {
                transform: scale(0);
            }
            40% {
                transform: scale(1);
            }
        }



         /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.show {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .modal {
            background: white;
            border-radius: 16px;
            width: 600px;
            max-width: 90vw;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.show .modal {
            transform: scale(1);
        }

        .modal-header {
            text-align: center;
            padding: 30px 30px 20px;
            border-bottom: 1px solid #e5e5e5;
        }

        .modal-logo {
            font-size: 24px;
            font-weight: bold;
            color: black;
            margin-bottom: 20px;
        }

        .consultant-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border: #dc4c94;
            font-size: 24px;
            font-weight: bold;
        }

        .modal-title {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .modal-heading {
            color: #2d4a47;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .duration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #666;
            font-size: 16px;
        }

        .clock-icon {
            width: 16px;
            height: 16px;
            border: 2px solid #666;
            border-radius: 50%;
            position: relative;
        }

        .clock-icon::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 6px;
            width: 1px;
            height: 4px;
            background-color: #666;
        }

        .modal-body {
            padding: 30px;
        }

        .description-text {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .connection-method {
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: center;
        }

        .calendar-section h3 {
            color: #dc4c94;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

          .calendar-container {
            display: flex;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .calendar-left {
            flex: 1;
            transition: all 0.3s ease;
        }

        .calendar-container.full-width .calendar-left {
            flex: 1;
            width: 100%;
        }

        .time-selection {
            flex: 1;
            min-height: 300px;
            width: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .calendar-container.show-times .time-selection {
            width: auto;
            opacity: 1;
            overflow: visible;
        }

        .selected-date {
            color: #dc4c94;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
        }

        .time-slots {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .time-slot {
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            background-color: white;
            color: #2d4a47;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.2s;
        }

        .time-slot:hover {
            border-color: #dc4c94;
            background-color: #f5f5f5;
        }

        .time-slot.selected {
            background-color: #666;
            color: white;
            border-color: #666;
        }

        .time-slot.with-next {
            background-color: #dc4c94;
            color: white;
            border-color: #dc4c94;
            position: relative;
            padding-right: 80px;
        }

        .next-button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .next-button:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .calendar-nav {
            background: none;
            border: none;
            color: #666;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .calendar-nav:hover {
            background-color: #f0f0f0;
        }

        .calendar-month {
            color: #dc4c94;
            font-size: 18px;
            font-weight: 600;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0;
            margin-bottom: 20px;
        }

        .calendar-day-header {
            background-color: transparent;
            padding: 8px 4px;
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
        }

        .calendar-day {
            background-color: transparent;
            padding: 8px 4px;
            text-align: center;
            cursor: default;
            color: #ccc;
            position: relative;
            min-height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            margin: 2px auto;
        }

        .calendar-day.available {
            cursor: pointer;
            color: #333;
            transition: all 0.2s;
            background-color: #FDF2F8;
            border: 2px solid #dc4c94;
        }

        .calendar-day.available:hover {
            background-color: #fad2e8;
        }

        .timezone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
            margin-top: 15px;
        }

        .globe-icon {
            width: 16px;
            height: 16px;
            border: 1px solid #666;
            border-radius: 50%;
            position: relative;
        }

        .globe-icon::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border: 1px solid #666;
            border-radius: 50%;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            border: none;
            font-size: 40px;
            color: #666;
            cursor: pointer;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);
        }

        .close-btn:hover {
            background-color: #f0f0f0;
            color: #666;
            box-shadow: 0 4px 8px rgba(0,0,0,0.16), 0 0 12px rgba(0,0,0,0.08);
            transform: translateY(-1px);
        }

        .close-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);
        }




        .appointment-details {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 16px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            color: #666;
            font-size: 14px;
        }

        .appointment-info {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        

        .back-btn {
           position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            border: none;
            font-size: 24px;
            color: #666;
            cursor: pointer;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);
        }

        .back-btn:hover {
            background-color: #f0f0f0;
            color: #666;
            box-shadow: 0 4px 8px rgba(0,0,0,0.16), 0 0 12px rgba(0,0,0,0.08);
            transform: translateY(-1px);
        }

        .back-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);
        }


        .modal-body {
            padding: 30px;
        }

         /* Form Styles */
        .form-title-2 {
            color: #dc4c94;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: left;
        }

        .form-group-2 {
            margin-bottom: 20px;
        }

        .form-row-2 {
            display: flex;
            gap: 15px;
        }

        .form-row-2 .form-group-2 {
            flex: 1;
        }

        .form-label-2 {
            display: block;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-label-2.required::after {
            content: ' *';
            color: #dc4c94;
        }

        .form-input-2 {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.2s;
            background-color: white;
        }

        .form-input-2:focus {
            outline: none;
            border-color: #dc4c94;
        }

        .form-textarea-2 {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.2s;
            background-color: white;
            min-height: 100px;
            resize: vertical;
            font-family: inherit;
        }

        .form-textarea-2:focus {
            outline: none;
            border-color: #dc4c94;
        }

        .radio-group-2 {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-option-2 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .radio-input-2 {
            width: 18px;
            height: 18px;
            accent-color: #dc4c94;
        }

        .radio-label-2 {
            color: #333;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .platform-icon-2 {
            width: 20px;
            height: 20px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
            font-weight: bold;
        }

        .teams-icon-2 {
            background-color: white;
        }

        .zoom-icon-2 {
            background-color: white;
        }

        .phone-icon-2 {
            background-color: white;
        }

        .add-guests-btn {
            background-color: transparent;
            border: 2px solid #dc4c94;
            color: #dc4c94;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .add-guests-btn:hover {
            background-color: #dc4c94;
            color: white;
        }

        .phone-input-container-2 {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            transition: border-color 0.2s;
            background-color: white;
        }

        .phone-input-container-2:focus-within {
            border-color: #2196f3;
        }

        .country-flag-2 {
            padding: 12px 16px;
            border-right: 1px solid #e0e0e0;
            font-size: 18px;
        }

        .phone-number-input-2 {
            flex: 1;
            padding: 12px 16px;
            border: none;
            font-size: 16px;
            background: transparent;
        }

        .phone-number-input-2:focus {
            outline: none;
        }

        .terms-text-2 {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .terms-text-2 a {
            color: #dc4c94;
            text-decoration: none;
        }

        .terms-text-2 a:hover {
            text-decoration: underline;
        }

        .submit-btn-2 {
            background-color: #dc4c94;
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            width: 100%;
        }

        .submit-btn-2:hover {
            background-color: #dc4c94;
        }

        .custom-input-2 {
            margin-top: 8px;
            display: none;
        }

        .custom-input-2.show {
            display: block;
        }

                
/* Large Mobile (430px) */
@media (max-width: 430px) {
    .modal {
        width: 95vw;
        max-width: 95vw;
        margin: 10px;
        border-radius: 12px;
    }
    
    .modal-header, .modal-body {
        padding: 20px;
    }
    
    .modal-heading {
        font-size: 24px;
    }
    
    .calendar-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .calendar-container.show-times .time-selection {
        width: 100%;
        opacity: 1;
    }
    
    .form-row-2 {
        flex-direction: column;
        gap: 10px;
    }
    
    .close-btn, .back-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* iPhone 12 Pro (390px) */
@media (max-width: 390px) {
    .modal {
        width: 96vw;
        border-radius: 10px;
    }
    
    .modal-header, .modal-body {
        padding: 18px;
    }
    
    .modal-heading {
        font-size: 22px;
    }
    
    .consultant-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .calendar-grid {
        gap: 1px;
    }
    
    .calendar-day {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .time-slot {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .form-input-2, .form-textarea-2 {
        padding: 10px 14px;
        font-size: 15px;
    }
}

/* iPhone 6/7/8 Plus (414px) */
@media (max-width: 414px) {
    .modal {
        width: 95vw;
        border-radius: 12px;
    }
    
    .modal-logo {
        font-size: 22px;
    }
    
    .calendar-header {
        margin-bottom: 15px;
    }
    
    .calendar-month {
        font-size: 16px;
    }
    
    .form-title-2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .submit-btn-2 {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* iPhone 6/7/8 (375px) */
@media (max-width: 375px) {
    .modal {
        width: 97vw;
        border-radius: 8px;
    }
    
    .modal-header, .modal-body {
        padding: 16px;
    }
    
    .modal-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .consultant-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .calendar-day {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .time-slot {
        padding: 9px 12px;
        font-size: 14px;
    }
    
    .time-slot.with-next {
        padding-right: 70px;
    }
    
    .next-button {
        padding: 5px 10px;
        font-size: 12px;
        right: 6px;
    }
    
    .form-input-2, .form-textarea-2 {
        padding: 9px 12px;
        font-size: 14px;
    }
    
    .close-btn, .back-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: 15px;
    }
    
    .close-btn {
        right: 15px;
    }
    
    .back-btn {
        left: 15px;
    }
}

/* Small Mobile (320px) */
@media (max-width: 320px) {
    .modal {
        width: 98vw;
        max-height: 95vh;
        border-radius: 6px;
    }
    
    .modal-header, .modal-body {
        padding: 14px;
    }
    
    .modal-logo {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .modal-heading {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .consultant-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .calendar-day {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin: 1px auto;
    }
    
    .calendar-day-header {
        font-size: 10px;
        padding: 6px 2px;
    }
    
    .time-slot {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .time-slot.with-next {
        padding-right: 60px;
    }
    
    .next-button {
        padding: 4px 8px;
        font-size: 11px;
        right: 4px;
    }
    
    .form-title-2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-input-2, .form-textarea-2 {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .submit-btn-2 {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .close-btn, .back-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 12px;
    }
    
    .close-btn {
        right: 12px;
    }
    
    .back-btn {
        left: 12px;
    }
    
    .appointment-details {
        padding: 12px;
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }
    
    .phone-input-container-2 {
        flex-direction: column;
    }
    
    .country-flag-2 {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
    }
}

/* Pixel 2 XL (412px) */
@media (max-width: 412px) {
    .modal {
        width: 95vw;
    }
    
    .calendar-container {
        gap: 16px;
    }
    
    .form-group-2 {
        margin-bottom: 18px;
    }
}

/* Galaxy S8+ (360px) */
@media (max-width: 360px) {
    .modal {
        width: 98vw;
        border-radius: 8px;
    }
    
    .modal-header, .modal-body {
        padding: 15px;
    }
    
    .modal-heading {
        font-size: 19px;
    }
    
    .calendar-day {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .time-slot {
        padding: 8px 11px;
        font-size: 13px;
    }
    
    .form-input-2, .form-textarea-2 {
        padding: 8px 11px;
        font-size: 14px;
    }
    
    .close-btn, .back-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
        top: 14px;
    }
    
    .close-btn {
        right: 14px;
    }
    
    .back-btn {
        left: 14px;
    }
}







        
         /*MENU STYYING*/
        /* Mobile Menu Overlay - EXACT match to image */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #FDF2F8; /* Exact green color from image */
            z-index: 2000;
            display: none;
            flex-direction: column;
            padding: 23px;
        }

        .mobile-menu-overlay.active {
            display: flex;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 120px;
        }

        .mobile-menu-logo {
            font-size: 22px !important;
            font-weight: bold !important;
            color: black !important;
            line-height: 1.2;
            z-index: 2001;
            position: relative;
             font-family: "Playfair Display", "Didot", "Bodoni MT", "Times New Roman", seri;
            margin-top: 110px;
            }

        .mobile-menu-logo span {
            color: #E91E63 !important;
        }

        .mobile-menu-logo small {
            font-size: 10px !important;
            color: black !important;
            font-weight: 500 !important;
            display: block !important;
            margin-top: -2px;
        }

        /* Close button - EXACT positioning from image */
        .close-btn-2 {
            background: #dc4c94 !important;
            color: white !important;
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-weight: 300;
            line-height: 1;
            z-index: 2001;
            position: relative;
            margin-top: 90px;
        }

        /* Navigation menu - EXACT styling from image */
        .mobile-menu-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-top:240px;
            background: #FDF2F8;
            
        }

        .mobile-menu-nav a {
            color: #dc4c94;
            text-decoration: none;
            font-size: 26px;
            font-weight: 800;
            transition: color 0.3s ease;
            line-height: 1.2;
        }

        .mobile-menu-nav a:hover {
            color: #f782bc;
        }

        /* Call to action section - EXACT positioning from image */
        .mobile-menu-cta {
            margin-top: auto;
            margin-bottom: 200px;
            left: -50px;
            position: relative;
        }

        .mobile-book-call-btn {
            background: #dc4c94;
            color: white;
            padding: 18px 32px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px white;
            margin-left: 150px;

        }

      
        /* Social media buttons - EXACT styling from image */
        .mobile-menu-footer {
            display: flex;
            gap: 12px;
            margin-bottom: 60px;
        }

        .social-btn {
            background: #dc4c94;
            color: white;
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            margin-top: -130px;
        }

        .social-btn.facebook::before {
            content: 'f';
        }

        .social-btn.linkedin::before {
            content: 'in';
            font-size: 14px;
        }

       

        /* Mobile Responsiveness - Hide desktop nav, show mobile menu button */
@media (max-width: 768px) {
    /* HIDE desktop navigation links */
    .nav-links {
        display: none !important;
    }
    
    /* HIDE desktop book a call button */
    .book-call-btn {
        display: none !important;
    }

    /* SHOW mobile menu button */
    .mobile-menu-btn {
        display: block !important;
        border-radius: 20px;
    }

    /* Update nav styling for mobile */
    nav {
        padding: 15px 20px;
        background: white;
        backdrop-filter: blur(10px);
    }
    
    nav.scrolled {
        background: white;
        margin: 5px 10px 0 10px;
        padding: 12px 20px;
    }
    
    .logo {
        color: black;
        margin-left: 0;
        font-size: 24px;
    }
    
    .logo span {
        color: black;
    }
}

/* Ensure mobile menu overlay is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}


/* Large Mobile (414px) */
@media (min-width: 414px) {
     .mobile-menu-cta {
            margin-bottom: 150px;
            left: -40px;
        }

        .mobile-book-call-btn {
         
            margin-left: 150px;

        } 

          .social-btn {
            margin-top: -200px;
        }
}

/*  Mobile (390px) */

@media (max-width: 390px) {
   
.mobile-book-call-btn {
         
            margin-left: 150px;

        } 

         .mobile-menu-cta {
            margin-bottom: 200px !important;
            left: -60px;
        }

             .social-btn {
            margin-top: -250px;
        }
}

/* Large Mobile (430px) */

@media (min-width: 430px) {
     .mobile-menu-cta {
            margin-top: 200px;
            left: -40px;
        }

        .mobile-book-call-btn {
         
            margin-left: 150px;

        } 

          .social-btn {
            margin-top: -150px;
        }
}


@media (max-width: 375px) {
   
.mobile-book-call-btn {
         
            margin-left: 150px;

        } 

         .mobile-menu-cta {
            margin-bottom: 60px;
            left: -60px;
        }

             .social-btn {
            margin-top: -110px;
        }
}


        


