/*NAVBAR AND HERO SECTION*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: white;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: none;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* 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 */
    text-decoration: none;
}
.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;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}


.mobile-menu-btn {
    display: none; /* Hide by default, show on mobile */
}

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

       /* Hero Section - Exactly like Image 1 */

 .container-90 {
            display: flex;
            align-items: center;
            min-height: 100vh;
            padding: 2rem;
            max-width: 1500px;
            margin: 0 auto;
            background: white;
        }


.content-90 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    align-items: center;
    }

.text-section-90 {
    padding-right: 2rem;
}


.geometric-section-90 {
    position: relative;
    height: 35rem;
    width: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 150px;
    margin-left: -170px;
}

.hero-image-section-90 {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.15);
    overflow: hidden;
}

.hero-image-90 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    border-radius: 1rem;
    transform: scale(0.95);
    animation: fadeInScale 1s ease 0.8s forwards;
    border-radius: 0.5rem;
     opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}


 


.hero-content {
   padding: 50px 40px 30px 60px;
    grid-column: 1 / 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 25px;
    position: relative;
    margin-top: -100px; /* Changed from -190px to move down */
    transform: translateY(0px); /* Changed from -60px to move down */
}



.location-tag {
   background: #FDF2F8;
            color: hsl(330 65% 40%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
    margin-bottom: -20px;
    margin-top: -150px; /* Move up by 30px */
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease 0.1s forwards;
     border: 1px solid hsl(330 65% 58% / 0.1);
}

.location-tag::before {
    content: "";
    font-size: 18px;
}



    .main-heading {
            color: #333333;
            font-size: 68px;
            font-weight: 500;
            line-height: 1.10 !important;
            margin-top: 30px;
            margin-bottom: -60px !important;
            min-height: 75px;
            opacity: 0;
            transform: translateY(-400px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
            overflow: visible;
        }

        .sub-heading {
            color: #333333;
            font-size: 68px;
            font-weight: 500;
            line-height: 1.10 !important;
             margin-top: 85px;
            margin-bottom: -60px !important;
            min-height: 75px;
            opacity: 0;
            transform: translateY(-400px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
            overflow: visible;
        }

        .second-sub-heading {
            color: #333333;
            font-size: 68px;
            font-weight: 500;
            line-height: 1.10 !important;
               margin-top: 85px;
            margin-bottom: -150px !important;
            min-height: 75px;
            opacity: 0;
            transform: translateY(-400px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
            overflow: visible;
        }

        .main-heading.visible,
        .sub-heading.visible,
        .second-sub-heading.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .typewriter-cursor {
            display: inline-block;
            background-color: #333333;
            width: 3px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }


.description-section {
   
     padding: 10px 60px; 
    grid-column: 1 / 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom-left-radius: 0; /* Remove border radius for full-screen effect */
  margin-bottom: 50px; /* Changed from -90px to give space for button */
     transform: translateY(160px); /* Changed from 100px to move down less */
    min-height: 200px; /* Add minimum height for the button */
}
.description {
    color: #333333;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.6;
     margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease 0.1s forwards;
}

.description strong {
    font-weight: 700;
}

/* Repositioned CTA Button */
.floating-cta {
   position: absolute;
    bottom: 60px; /* Distance from bottom of container */
    left: 40%; /* Center horizontally */
    transform: translateX(-50%); /* Perfect center alignment */
    background: linear-gradient(135deg, hsl(330 65% 58%) 0%, hsl(330 65% 52%) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.3);
    opacity: 0;
    animation: slideUp 1s ease 1.4s forwards;
    z-index: 20;
    transition: all 0.3s ease;
    white-space: nowrap;

    /* Add these properties to control size */
    display: inline-block;
    width: auto;
    min-width: fit-content;
    max-width: 150px; /* Prevents it from getting too wide */
    text-align: center;
}

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


/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1) translateX(20px);
    }
}


/* Mobile Responsive Styles */
@media screen and (max-width: 430px) {
    /* Container adjustments */
    .container-90 {
        padding: 1rem;
        min-height: auto;
        flex-direction: column;
    }

    .content-90 {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    /* Image section - move to top under navbar */
    .geometric-section-90 {
        height: 250px;
        width: 100%;
        margin: 20px 0;
        margin-left: 0;
        order: 1;
        grid-column: 1;
        grid-row: 1;
    }

    /* Hero content - reorder and center, includes location tag and headings */
    .hero-content {
        padding: 20px;
        margin-top: 0;
        transform: none;
        text-align: center;
        order: 2;
        grid-column: 1;
        grid-row: 2;
    }

    /* Location tag - move to top of headings within hero content */
    .location-tag {
        margin-top: 0;
        margin-bottom: 20px;
        align-self: center;
        position: relative;
        z-index: 10;
    }

    /* Headings - stack vertically and reduce size */
    .main-heading {
        font-size: 32px;
        margin-top: 20px;
        margin-bottom: 10px;
        white-space: normal;
        line-height: 1.2;
    }

    .sub-heading {
        font-size: 32px;
        margin-top: 10px;
        margin-bottom: 10px;
        white-space: normal;
        line-height: 1.2;
    }

    .second-sub-heading {
        font-size: 32px;
        margin-top: 10px;
        margin-bottom: 30px;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-image-section-90 {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

    .hero-image-90 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }

    /* Description section - center and move after image */
    .description-section {
        padding: 20px;
        text-align: center;
        transform: none;
        margin-bottom: 0;
        min-height: auto;
        order: 3;
        grid-column: 1;
        grid-row: 3;
        position: relative;
    }

    .description {
        font-size: 19px !important;
        line-height: 1.5;
        margin-bottom: 30px !important;
        margin-left: 30px !important;
    }

    /* Button - center under description with proper centering */
    .floating-cta {
        cursor: pointer;
        position: static;
        display: block;
        margin: 20px auto 0 auto;
        transform: none;
        max-width: 200px;
        order: 4;
        text-align: center;
        width: fit-content;
        margin-right: 90px !important;
        margin-top: -40px !important;
    }

    /* Navigation adjustments for mobile */
    nav {
        padding: 15px 20px;
        margin: 0;
    }

    nav.scrolled {
        margin: 5px 10px 0 10px;
        padding: 12px 20px;
        border-radius: 20px;
    }

    .logo {
        font-size: 24px;
        margin-left: 0;
    }

    .nav-links {
        display: none; /* Hide nav links on mobile, show hamburger menu instead */
    }

    .book-call-btn {
        padding: 10px 16px;
        font-size: 14px;
        margin-right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Adjust body padding for smaller nav */
    body {
        padding-top: 70px;
    }
}

/* Additional breakpoints for specific widths */
@media screen and (max-width: 414px) {
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 30px;
    }

    .geometric-section-90 {
        height: 230px;
    }

    .description {
        font-size: 17px;
    }
}

@media screen and (max-width: 390px) {
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 28px;
    }

    .geometric-section-90 {
        height: 220px;
    }

    .container-90 {
        padding: 0.5rem;
    }

     .floating-cta {
        margin-right: 80px !important;
     }
}

@media screen and (max-width: 375px) {
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 26px;
    }

    .geometric-section-90 {
        height: 200px;
    }

    .description {
        font-size: 16px;
    }

    .hero-content {
        padding: 15px;
    }
}

@media screen and (max-width: 360px) {
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 24px;
    }

    .geometric-section-90 {
        height: 180px;
    }

    .floating-cta {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media screen and (max-width: 320px) {
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 22px;
    }

    .geometric-section-90 {
        height: 160px;
    }

    .description {
        font-size: 15px;
    }

    .container-90 {
        padding: 0.25rem;
    }

    .hero-content {
        padding: 10px;
    }
}




        /* Tablet Responsiveness */
      @media (max-width: 1024px) {
    .hero-container {
        min-height: 450px;
    }

    .hero-content {
        padding: 40px 35px;
    }

    .description-section {
        padding: 30px 35px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 48px;
    }
}

/* Mobile Responsiveness - Like Image 1 */
@media (max-width: 768px) {
     body {
        padding-top: 40px; /* Reduced from 80px */
    }
    /* Hide navigation links and show mobile menu */
    .nav-links {
        display: none;
    }
    
    /* Remove book a call button from nav */
    .book-call-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        color: hsl(330 65% 58%);
        background: #FDF2F8;
        border-radius: 21px;
    }

    /* Update nav styling for mobile */
    nav {
        padding: 15px 20px;
        background:white; /* Teal background */
        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;
    }

    /* Hero section mobile layout */
    .hero {
        padding: 10px;
        height: auto;
         padding: 0; /* Remove hero padding */
        margin: 0; /* Remove hero margins */
        width: 100vw; /* Full viewport width */
        margin-left: calc(-50vw + 50%); /* Center full-width element */
    }

    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        border-radius: 20px;
        background: white; /* Teal gradient background */
        padding: 15px;
    }

    .hero-content {
        padding: 20px 15px 20px 30px; /* Added more left padding */
        grid-row: 2;
        grid-column: 1;
        background: transparent; /* Remove white background */
        border-radius: 0;
       text-align: left;
    }

    .description-section {
        padding: 30px 15px 40px;
        grid-row: 3;
        grid-column: 1;
        background: transparent; /* Remove white background */
        border-radius: 0;
        margin-top: 20px;
    }

    .hero-image-section {
        grid-row: 1;
        grid-column: 1;
        min-height: 400px;
        border-radius: 0 0 20px 20px;
        background: transparent;
        margin-bottom: 20px;
    }

    .main-heading {
        color: #333333 !important; 
        font-size: 42px !important;
        margin-bottom: 5px !important; /* Closer spacing */
        margin-top: 0 !important;
        line-height: 1.0 !important; /* Tighter line height */
        text-align: left !important;
    }
    
    .sub-heading {
      color: #333333 !important; 
        font-size: 42px !important;
        margin-bottom: 5px !important; /* Closer spacing */
        margin-top: 0 !important;
        line-height: 1.0 !important; /* Tighter line height */
        text-align: left !important;
    }
    
    .second-sub-heading {
         color: #333333 !important; 
        font-size: 42px !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        line-height: 1.0 !important; /* Tighter line height */
        text-align: left !important;
    }
    
    /* Override any existing spacing from the original CSS */
    .main-heading.visible,
    .sub-heading.visible,
    .second-sub-heading.visible {
        margin-bottom: 5px !important;
        margin-top: 0 !important;
    }
    
    /* Container adjustments */
    .hero-content {
        padding: 20px 15px 20px 30px !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important; /* Remove any gap between flex items */
    }

    /* Update location tag for mobile */
    .location-tag {

        border: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 0px;
        margin-top: 0;
        align-self: flex-start;
          background: #FDF2F8;
            color: hsl(330 65% 40%);
    }

    /* Update text colors for mobile */
    .main-heading,
    .sub-heading,
    .second-sub-heading {
        color: white;
        font-size: 42px;
        margin-bottom: 10px;
        margin-bottom: 15px; /* Increased spacing between lines */
        line-height: 1.1;
    }
    
    .second-sub-heading {
        margin-bottom: 0;
    }
     /* Specific spacing adjustments */
    .main-heading {
        margin-bottom: 8px; /* Tighter spacing after first line */
    }
    
    .sub-heading {
        margin-bottom: 15px; /* Normal spacing after second line */
    }
  

    .description {
        color: #333333;
        font-size: 18px;
        margin-bottom: 0;
        margin-top: -60px;
        opacity: 0.9;
         text-align: center;
         font-weight: 600;
    }

    /* Update floating CTA for mobile */
    .floating-cta {
        position: static;
         margin: 20px auto 0; /* Center the button */
        align-self: flex-start;
        background: linear-gradient(135deg, hsl(330 65% 58%) 0%, hsl(330 65% 52%) 100%);
    color: white;
        font-weight: 700;
    }
    
    .floating-cta:hover {
        transform: translateY(-1px);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 15px;
    }

    .hero-content,
    .description-section {
        padding: 30px 25px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 36px;
    }

    .hero-container {
        border-radius: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .description {
        font-size: 14px;
    }
}

/* MacBook Pro 16" (2560px and above) */
@media (min-width: 2560px) {
    .hero {
        max-width: 2400px;
        height: 800px;
        margin: 40px auto;
    }

    .hero-container {
        grid-template-columns: 50% 50%;
        min-height: 800px;
        max-width: 2400px;
        margin: 0 auto;
        margin-bottom: -190px;
    }

    .hero-content {
        padding: 80px 60px 40px 80px;
        justify-content: center;
    }

    .location-tag {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: -180px;
        margin-bottom: -30px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 85px;
        line-height: 1.05;
        margin-bottom: -50px;
    }

    .main-heading {
        margin-top: 40px;
    }

    .sub-heading {
        margin-top: 95px;
    }

    .second-sub-heading {
        margin-top: 95px;
        margin-bottom: -120px;
    }

    .description-section {
        padding: 20px 80px 60px;
    }

    .description {
        font-size: 28px;
        line-height: 1.7;
        margin-bottom: 60px;
    }

    .hero-image-section {
        padding: 40px;
    }

    .hero-image {
        width: 110%;
        height: 110%;
        transform: scale(1.1) translateX(10px);
    }

    .floating-cta {
        right: -80px;
        bottom: 60px;
        padding: 20px 40px;
        font-size: 18px;
    }
}

/* MacBook Pro 14" (1512px - 2559px) */
@media (min-width: 1512px) and (max-width: 2559px) {
  .text-section-90 {
    padding-right: 2rem;
}


.geometric-section-90 {
    position: relative;
    height: 35rem;
    width: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 150px;
    margin-left: -170px;
}

.hero-image-section-90 {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.15);
    overflow: hidden;
}

.hero-image-90 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    border-radius: 1rem;
    transform: scale(0.95);
    animation: fadeInScale 1s ease 0.8s forwards;
    border-radius: 0.5rem;
     opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}


    .location-tag {
        font-size: 15px;
        padding: 9px 18px;
        margin-top: -160px;
        margin-bottom: -25px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 75px;
        line-height: 1.08;
        margin-bottom: -45px;
    }

    .main-heading {
        margin-top: 35px;
        
    }

    .sub-heading {
        margin-top: 90px;
    }

    .second-sub-heading {
        margin-top: 90px;
        margin-bottom: -110px;
    }

    .description-section {
        padding: 15px 70px 50px;
    }

    .description {
        font-size: 36px;
        line-height: 1.6;
        margin-bottom: 55px;
    }

    .hero-image-section {
        padding: 30px;
    }

    .hero-image {
        width: 115%;
        height: 105%;
        transform: scale(1.05) translateX(15px);
    }

    .floating-cta {
        right: -70px;
        bottom: 190px;
        padding: 18px 36px;
        font-size: 17px;
    }
}

/* MacBook Pro 13" (1280px - 1511px) */
@media (min-width: 1280px) and (max-width: 1511px) {
    .hero {
        max-width: 1200px;
        height: 650px;
        margin: 20px auto;
    }

    .hero-container {
        grid-template-columns: 54% 46%;
        min-height: 650px;
    }

    .hero-content {
        padding: 60px 45px 30px 60px;
        justify-content: center;
    }

    .location-tag {
        font-size: 14px;
        padding: 8px 16px;
        margin-top: -140px;
        margin-bottom: -20px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 65px;
        line-height: 1.1;
        margin-bottom: -40px;
    }

    .main-heading {
        margin-top: 30px;
    }

    .sub-heading {
        margin-top: 80px;
    }

    .second-sub-heading {
        margin-top: 80px;
        margin-bottom: -100px;
    }

    .description-section {
        padding: 10px 60px 45px;
    }

    .description {
        font-size: 30px !important;
        line-height: 1.6;
        margin-bottom: 50px;
    }

    .hero-image-section {
        padding: 25px;
    }

    .hero-image {
        width: 120%;
        height: 100%;
        transform: scale(1) translateX(20px);
    }

    .floating-cta {
        right: -60px;
        bottom: 95px;
        padding: 16px 32px;
        font-size: 17px;
    }
}

/* Standard Desktop (1025px - 1279px) */
@media (min-width: 1025px) and (max-width: 1279px) {
    .hero {
        max-width: 1000px;
        height: 600px;
        margin: 15px auto;
    }

    .hero-container {
        grid-template-columns: 56% 44%;
        min-height: 600px;
    }

    .hero-content {
        padding: 50px 40px 25px 50px;
    }

    .location-tag {
        margin-top: -120px;
        margin-bottom: -15px;
    }

    .main-heading,
    .sub-heading,
    .second-sub-heading {
        font-size: 58px;
        margin-bottom: -35px;
    }

    .main-heading {
        margin-top: 25px;
    }

    .sub-heading {
        margin-top: 75px;
    }

    .second-sub-heading {
        margin-top: 75px;
        margin-bottom: -90px;
    }

    .description-section {
        padding: 5px 50px 40px;
    }

    .description {
        font-size: 22px;
        margin-bottom: 45px;
    }

    .hero-image {
        width: 125%;
        height: 95%;
    }

    .floating-cta {
        right: -50px;
        bottom: 40px;
    }
}

/* Ensure proper centering for all MacBook sizes */
@media (min-width: 1025px) {
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-radius: 25px;
    }

    /* Better image positioning and scaling */
    .hero-image-section {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image {
        object-fit: cover;
        object-position: center center;
    }
}



/*SIMPLIFY SECTION*/


  /* YOUR CONTENT SECTION WITH REVEAL ANIMATION */
    .content-section-14 {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #FDF2F8;
    }

    /* CONTAINER AND LAYOUT */
    .container-10 {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      box-sizing: border-box;
      opacity: 0;
      transition: opacity 1.2s ease 1s;
    }

    .reveal-active .container-10 {
      opacity: 1;
    }

    .left-section-10 {
      flex: 1;
      max-width: 45%;
      padding-right: 2rem;
    }

    .main-heading-10 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 3rem;
      letter-spacing: -0.02em;
      color: #333333;
    }

    .cta-section-10 {
      margin-top: 4rem;
    }

    .cta-text-10 {
       font-size: 2rem;
       font-weight: 600;
       margin-bottom: 1rem;
       color: #333333;
    }

    .begin-link {
      color: #dc4c94;
      font-weight: bold;
      cursor: pointer;
      text-decoration: underline;
     transition: all 0.3s ease;
    }

    .right-section-10 {
      flex: 1;
      max-width: 50%;
      background: white;
      backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 3rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        
    }

    .card-title-10 {
      color: #333333;
      margin-bottom: 2rem;
      text-align: center;
      font-size: 1.125rem;
      font-weight: 600;      
    }

    .services-grid-10 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .service-item-10 {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(800px);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: flex-start;
      gap: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-item-10:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .service-icon-10 {
     width: 41px;
     height: 40px;
     flex-shrink: 0;
            
    }

    .service-text-10 {
      font-size: 1rem;
      line-height: 1.5;
      color: black;
    }

    /* OVERLAY CURTAINS - INTEGRATED */
    .overlay-container-14 {
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      width: 100%;
      height: 100%;
      z-index: 3;
      pointer-events: none;
    }

    .overlay-14 {
      flex: 1;
      background: white;
      height: 100%;
      transform: translateY(0%);
      transition: transform 1s ease;
    }

    /* Stagger curtain animation */
    .overlay-14:nth-child(1) {
      transition-delay: 0s;
    }
    .overlay-14:nth-child(2) {
      transition-delay: 0.2s;
    }
    .overlay-14:nth-child(3) {
      transition-delay: 0.4s;
    }

    .reveal-active .overlay-14 {
      transform: translateY(-100%);
    }

   

   /* Mobile and Tablet (768px and below) */
@media (max-width: 768px) {
  .content-section-14 {
    height: auto;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .container-10 {
    position: static;
    height: auto;
    min-height: auto;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    justify-content: flex-start;
  }
  
  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    flex: none;
  }
  
  .left-section-10,
  .right-section-10 {
    max-width: 100%;
    padding-right: 0;
    flex: none;
  }
  
  .left-section-10 {
    text-align: center;
  }
  
  .main-heading-10 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .right-section-10 {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
  }
  
  .services-grid-10 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-item-10 {
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
  }
  
  .card-title-10 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-section-10 {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
    order: 3;
  }
  
}



/*CARDS SECTION*/
 .container2 {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .cards-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cards-wrapper.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .card {
            background: linear-gradient(135deg, hsl(330 65% 58%) 0%, hsl(330 65% 52%) 100%);
            border-radius: 24px;
            padding: 59px 40px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            min-height: 500px;
            z-index: 2;
        }

        .card.business-card {
            background: linear-gradient(135deg, #9e9e9e 0%, #e91e63 100%);
        }

        .card:hover {
            
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card:hover .arrow-icon {
            opacity: 1;
            transform: translateY(0) rotate(45deg);
        }

        .card:hover .learn-more-btn {
            background-color: #0f4a47;
            color: #f4f5db;
        }

        .small-title {
            font-size: 18px !important;
            font-weight: 600 !important;
            color: white;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

         .people-icon, .chart-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
            opacity: 0.9;
        }
        .icon-title-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }


        

     .main-heading2 {
            font-size: 40px !important;
            font-weight: 700;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            transition: all 0.4s ease;
        }

        .card:hover .main-heading2 {
            transform: translateY(-60px);
        }

        .card-description {
            margin-top: 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            max-height: 0;
            overflow: hidden;
        }

        .card:hover .card-description {
            opacity: 1;
            transform: translateY(0);
            max-height: 200px;
            margin-top: 20px;
        }

        .description-text {
            font-size: 16px;
            line-height: 1.6;
            color: white;
            margin-bottom: 0;
        }
  @media (max-width: 768px) {
            .cards-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .card {
                padding: 40px 30px;
                min-height: 350px;
            }
            
            .main-heading2 {
                font-size: 12px;
            }

             .main-heading {
                font-size: 12px;
            }
            
            .main-heading2 {
                font-size: 28px !important;
                line-height: 1.3;
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
            
            .small-title {
                font-size: 16px !important;
                margin-bottom: 30px;
            }
            
            
            .decorative-lines {
                right: 20px;
                top: 60px;
            }
        }




/*SERVICES SECTION */
.section {
            padding: 60px 40px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            margin-top: -30px; /* Moves up by 30px */
           
        }
        .section-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        .section-content.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .section-left {
            flex: 1;
            max-width: 400px;
        }
        .section-right {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }
        .section-header {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.2;
            color: black;
            overflow: hidden;
        }
        .section-subtext {
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 1.5;
            color: #333333;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out 0.3s;
        }
        .section-subtext.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .section-link {
            font-size: 16px;
            font-weight: 600;
            color: #dc4c94;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out 0.5s;
        }
        .section-link.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .section-link:hover {
            opacity: 0.8;
        }
        .services-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s ease-out;
        }
        .services-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .services-item-icon-wrapper {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
        }
        .services-item-text {
            font-size: 16px;
            line-height: 1.3;
            color: black;
        }
        .section-divider {
            margin: 80px 0;
            height: 1px;
            background: #9e9e9e;
        }
        .svg-bg-arrow {
            position: absolute;
            z-index: 0;
            top: 40px;
            left: 0;
            width: 100%;
            height: 200px;
            pointer-events: none;
            opacity: 0.3;
        }
        .relative-container {
            position: relative;
            z-index: 1;
            margin-top: 50px;
        }

        /* Type animation */
        .typewriter {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            margin: 0;
            animation: typing 3s steps(40, end);
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }


         .centered-heading {
      text-align: center;
      max-width: 800px;
      padding: 40px 20px;
      margin: 0 auto;
      color: black;
      font-size: 48px;
      font-weight: 700;
    }

    h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }


/* RESPONSIVE STYLES - Mobile first approach */

/* RESPONSIVE STYLES - Mobile first approach */

/* Tablet styles */
@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
        margin-top: -20px;
    }
    
    .section-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-left {
        max-width: none;
    }
    
    .section-header {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .section-subtext {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .centered-heading {
        font-size: 36px;
        padding: 30px 15px;
        margin-top: -80px;
    }
    
    .services-item-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .services-item-text {
        font-size: 15px;
    }
}

/* Mobile styles - This will create the single column layout you want */
@media (max-width: 480px) {
    .section {
        padding: 30px 15px;
        margin-top: -10px;
    }
    
    .section-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .section-right {
        grid-template-columns: repeat(4, 1fr); /* 4 columns - icons in a horizontal row */
        gap: 15px;
        justify-items: center;
    }
    
    .section-header {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .section-subtext {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .section-link {
        font-size: 15px;
    }
    
    .centered-heading {
        font-size: 30px;
        padding: 20px 15px;
        margin-top: 60px;
        line-height: 1.3;
    }
    
    .services-item {
        max-width: 120px;
    }
    
    .services-item-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .services-item-text {
        font-size: 14px;
        line-height: 1.4;
    }

}




    /*ABOUT SECTION*/
     .about-section {
            background-color: white;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: auto;
            transform: translateY(-200px);


        }

        .about-container {
            background-color: #FDF2F8;
            border-radius: 40px 40px 0 0;
            margin: 0 auto;
            max-width: 1800px; /* Increased from 1200px */
            width: 100%; /* Increased from 90% */
            padding: 80px 60px;
            position: relative;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .about-container.animate {
            transform: translateY(0);
            opacity: 1;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
        }

        .about-left {
            position: relative;
        }

        .about-name h3 {
            font-size: 1rem;
            color: black;
            margin-bottom: 8px;
            font-weight: 600;
            
        }

        .credentials {
            font-size: 20px;
            color: #666666;
            margin-bottom: 40px;
            line-height: 1.4;
             font-family: "Playfair Display", "Didot", "Bodoni MT", "Times New Roman", serif;
        }

        .credentials .underline {
            text-decoration: underline;
            cursor: pointer;
        }

        .main-heading-9 {
            font-size: 42px;
            font-weight: 700;
            color: black;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 24px;
            height: 24px;
            color: black;
            transition: transform 0.3s ease;
        }

        .social-link:hover {
            transform: scale(1.1);
        }

        .about-curly-arrow-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
 height: 180px; /* Increased from 120px */
  width: 550px;
  position: relative;
}

.curly-arrow-img {
  width: 100%;
height: 900px; /* Increased from 500px */
  max-width: 1500px;
  object-fit: contain;
 filter: brightness(0) saturate(100%) invert(51%) sepia(40%) saturate(4600%) hue-rotate(302deg) brightness(90%) contrast(90%) !important;
}

/* Safari-specific fine-tuning */
@supports (-webkit-appearance: none) {
  .curly-arrow-img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(42%) saturate(4800%) hue-rotate(298deg) brightness(92%) contrast(92%) !important;
  }
}
        .about-right {
            position: relative;
        }

        .about-text {
            font-size: 1rem;
            color: #333333;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .book-call-btn-wrapper {
            background-color: white;
            color: black;
            padding: 16px 32px;
            border: none;
            border-radius: 15px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .book-call-btn-wrapper:hover {
            
            transform: translateY(-2px);
        }

        .curly-arrow {
            position: absolute;
            right: -20px;
            bottom: 80px;
            width: 200px;
            height: 150px;
            pointer-events: none;
            
        }

        .curly-arrow svg {
            width: 100%;
            height: 100%;
            color: #000;
        }

        /* Character animation for main heading */
        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .about-container.animate .char:nth-child(1) { animation-delay: 0.1s; }
        .about-container.animate .char:nth-child(2) { animation-delay: 0.15s; }
        .about-container.animate .char:nth-child(3) { animation-delay: 0.2s; }
        .about-container.animate .char:nth-child(4) { animation-delay: 0.25s; }
        .about-container.animate .char:nth-child(5) { animation-delay: 0.3s; }
        .about-container.animate .char:nth-child(6) { animation-delay: 0.35s; }
        .about-container.animate .char:nth-child(7) { animation-delay: 0.4s; }
        .about-container.animate .char:nth-child(8) { animation-delay: 0.45s; }
        .about-container.animate .char:nth-child(9) { animation-delay: 0.5s; }
        .about-container.animate .char:nth-child(10) { animation-delay: 0.55s; }
        .about-container.animate .char:nth-child(11) { animation-delay: 0.6s; }
        .about-container.animate .char:nth-child(12) { animation-delay: 0.65s; }
        .about-container.animate .char:nth-child(13) { animation-delay: 0.7s; }
        .about-container.animate .char:nth-child(14) { animation-delay: 0.75s; }
        .about-container.animate .char:nth-child(15) { animation-delay: 0.8s; }
        .about-container.animate .char:nth-child(16) { animation-delay: 0.85s; }
        .about-container.animate .char:nth-child(17) { animation-delay: 0.9s; }
        .about-container.animate .char:nth-child(18) { animation-delay: 0.95s; }
        .about-container.animate .char:nth-child(19) { animation-delay: 1s; }
        .about-container.animate .char:nth-child(20) { animation-delay: 1.05s; }
        .about-container.animate .char:nth-child(21) { animation-delay: 1.1s; }
        .about-container.animate .char:nth-child(22) { animation-delay: 1.15s; }
        .about-container.animate .char:nth-child(23) { animation-delay: 1.2s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design */
      /* Responsive design */
@media (max-width: 1024px) {
    .about-container {
        padding: 60px 40px;
        width: 95%;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .main-heading-9 {
        font-size: 36px;
    }
    
    .about-curly-arrow-wrapper {
        height: 140px;
        width: 400px;
    }
    
    .curly-arrow-img {
        height: 600px;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .about-section {
        min-height: auto;
        transform: translateY(-100px);
    }
    
    .about-container {
        padding: 40px 30px;
        width: 95%;
        border-radius: 30px 30px 0 0;
    }

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

    .main-heading-9 {
        font-size: 30px;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .credentials {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .about-curly-arrow-wrapper {
        height: 100px;
        width: 300px;
        margin-top: 15px;
    }
    
    .curly-arrow-img {
        height: 350px;
        max-width: 600px;
    }

    .curly-arrow {
        right: 10px;
        bottom: 40px;
        width: 120px;
        height: 100px;
    }
    
    .book-call-btn-wrapper {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .about-section {
        transform: translateY(-50px);
    }
    
    .about-container {
        padding: 30px 20px;
        width: 98%;
        border-radius: 20px 20px 0 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .main-heading-9 {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .credentials {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }
    
    .about-curly-arrow-wrapper {
        height: 80px;
        width: 250px;
        margin-top: 10px;
    }
    
    .curly-arrow-img {
        height: 250px;
        max-width: 400px;
    }
    
    .curly-arrow {
        right: 5px;
        bottom: 30px;
        width: 100px;
        height: 80px;
    }
    
    .book-call-btn-wrapper {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 20px;
        height: 20px;
    }
    
    .about-name h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 390px){
.main-heading-9 {
        font-size: 26px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

}

@media (max-width: 320px) {
    .about-container {
        padding: 25px 15px;
    }
    
    .main-heading-9 {
        font-size: 24px;
    }
    
    .about-curly-arrow-wrapper {
        height: 60px;
        width: 200px;
    }
    
    .curly-arrow-img {
        height: 200px;
        max-width: 300px;
    }
    
    .curly-arrow {
        width: 80px;
        height: 60px;
    }
}




        /*VALUES SECTION*/
         .main-container-11 {
      min-height: 100vh;
      padding: 60px 40px;
    }

    .container-11 {
      display: flex;
      justify-content: space-between;
      gap: 60px;;
      align-items: flex-start;
      max-width: 1400px;
       margin: -150px auto 0 auto; /* Negative top margin pulls it up */
    }
    

    .content-11 {
      flex: 1;
      max-width: 600px;
    }

    .second-heading-11 {
      font-size: 40px;
      font-weight: 700;
      margin-top: -110px; /* Reduced from 40px */
      color: black;
       margin-left: 150px;
    }

     .steps-11 {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 60px;
      
    }

   .step-box-11 {
  background-color: #e8e8e8; /* Light grey/beige background */
  color: #333333; /* Dark text */
  padding: 33px 50px; /* Increased padding for more spacious look */
  border-radius: 20px; /* Slightly more rounded corners */
  display: flex;
  align-items: flex-start;
  gap: 24px; /* Increased gap between number and text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer shadow */
  transform: translateY(0);
  opacity: 1;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 85%; /* Increased width to match image */
  min-height: 140px; /* Minimum height for consistent box sizes */
  margin-left: 120px;
}

    .step-box-11.animate {
      transform: translateY(-10px);
      opacity: 1;
    }

  
.step-number-11 {
  background-color: hsl(330 65% 58%); /* Pink background */
  color: white; /* White text */
  width: 36px; /* Slightly larger circle */
  height: 36px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Slightly larger number */
  flex-shrink: 0;
  margin-top: 4px; /* Adjusted positioning */
}

.step-text-11 h2 {
  margin-bottom: 16px; /* Increased spacing */
  font-size: 24px; /* Adjusted font size */
  font-weight: 600;
  color: #333333; /* Dark text for heading */
  line-height: 1.3;
}

.step-text-11 p {
  font-size: 16px; /* Slightly smaller for better proportion */
  line-height: 1.5;
  color: #666666; /* Slightly lighter grey for paragraph text */
}

  .geometric-wrapper-11 {
  flex: 1;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  

}

.geometric-section {
  position: relative;
  height: 40rem;
  width: 100%;
  max-width: 500px;
   margin-left: -90px;
}

.geometric-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Two columns: wider left, narrower right */
  grid-template-rows: 1fr 1fr; /* Two equal rows */
  gap: 1rem;
  height: 100%;
}

.geo-shape {
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.geo-shape:hover {
  transform: scale(1.02);
}

/* Top-left: Large pink gradient rectangle */
.shape-1 {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(135deg, hsl(330 65% 58%) 0%, hsl(330 65% 52%) 100%);
  box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.2);
  animation: pulse 3s ease-in-out infinite;
}

/* Top-right: Light pink rectangle */
.shape-2 {
  grid-column: 2;
  grid-row: 1;
  background: hsl(0 28% 87%);
  box-shadow: 0 4px 20px -8px hsl(0 0% 62% / 0.3);
}

/* Bottom-left: Light grey rectangle */
.shape-3 {
  grid-column: 1;
  grid-row: 2;
  background: hsl(0 0% 62% / 0.2);
  box-shadow: 0 4px 20px -8px hsl(0 0% 62% / 0.3);
}

/* Bottom-right: Light pink gradient rectangle */
.shape-4 {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(45deg, hsl(0 28% 87%) 0%, hsl(330 65% 58% / 0.2) 100%);
  box-shadow: 0 4px 20px -8px hsl(0 0% 62% / 0.3);
}

.floating-dot-1 {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  background: hsl(330 65% 58%);
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.2);
  animation: bounce 2s ease-in-out infinite;
}

.floating-dot-2 {
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(330 65% 52%);
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px hsl(330 65% 58% / 0.2);
  animation: bounce 2s ease-in-out infinite 300ms;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
  .main-container-11 {
    padding: 50px 30px;
  }
  
  .container-11 {
    gap: 50px;
    margin: -120px auto 0 auto;
  }
  
  .second-heading-11 {
    font-size: 36px;
    margin-left: 100px;
    margin-top: -80px;
  }
  
  .step-box-11 {
    width: 90%;
    margin-left: 80px;
    padding: 28px 40px;
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  .main-container-11 {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .container-11 {
    flex-direction: column;
    gap: 40px;
    margin: -80px auto 0 auto;
  }
  
  .second-heading-11 {
    font-size: 32px;
    margin-left: 0;
    margin-top: -40px;
    text-align: center;
  }
  
  .steps-11 {
    margin-top: 40px;
  }
  
  .step-box-11 {
    width: 100%;
    margin-left: 0;
    padding: 24px 30px;
    min-height: 110px;
    gap: 20px;
  }
  
  .step-number-11 {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .step-text-11 h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .step-text-11 p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .geometric-wrapper-11 {
    max-width: 100%;
    margin-top: 30px;
    order: 2; /* Places geometric patterns after the cards */
  }
  
  
  .geometric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

    .geometric-grid {
                grid-template-columns: repeat(2, 1fr);

            }
            
            .shape-1, .shape-4,.shape-2, .shape-3 {
                grid-column: span 18;
            }
            .shape-2, .shape-3 {
                grid-column: span 12;
            }
            
            .geometric-section {
                height: 16rem;
                  margin-left: 40px;
            }
  
  .floating-dot-1 {
    width: 1.5rem;
    height: 1.6rem;
    top: -0.8rem;
    right: -0.8rem;
  }
  
  .floating-dot-2 {
    width: 1.2rem;
    height: 1.2rem;
    bottom: -0.4rem;
    left: -0.4rem;
  }
}

@media (max-width: 480px) {
  .main-container-11 {
    padding: 30px 15px;
  }
  
  .container-11 {
    gap: 30px;
    margin: -60px auto 0 auto;
  }
  
  .second-heading-11 {
    font-size: 28px;
    margin-top: 30px;
  }
  
  .steps-11 {
    margin-top: 70px;
    gap: 25px;
  }
  
  .step-box-11 {
    padding: 20px 25px;
    min-height: 100px;
    gap: 20px;
    border-radius: 16px;
  }
  
  .step-number-11 {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
  
  .step-text-11 h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .step-text-11 p {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .geometric-section {
    height: 16rem;
    max-width: 280px;
    margin-right: -90px;
    margin-top: -20px;
  }
  
  .geometric-grid {
    gap: 0.6rem;
  }
  
  .floating-dot-1 {
    width: 1.2rem;
    height: 1.2rem;
    top: -0.6rem;
    right: -4rem;
  }
  
  .floating-dot-2 {
    width: 1rem;
    height: 1rem;
    bottom: -0.3rem;
    left: -0.3rem;
  }
}

@media (max-width: 375px){
    .geometric-section {
    height: 16rem;
    max-width: 280px;
    margin-right: -30px;
  }  

   .floating-dot-1 {
    width: 1.2rem;
    height: 1.2rem;
    top: -0.6rem;
    right: -0.9rem;
  }
}

@media (max-width: 390px){
    .geometric-section {
    height: 16rem;
    max-width: 280px;
    margin-right: -30px;
  }  

   .floating-dot-1 {
    width: 1.2rem;
    height: 1.2rem;
    top: -0.6rem;
    right: -0.9rem;
  }
}

@media (max-width: 320px) {
  .main-container-11 {
    padding: 25px 10px;
  }
  
  .second-heading-11 {
    font-size: 24px;
  }
  
  .step-box-11 {
    padding: 18px 20px;
    min-height: 90px;
  }
  
  .step-text-11 h2 {
    font-size: 16px;
  }
  
  .step-text-11 p {
    font-size: 13px;
  }
  
  .geometric-section {
    height: 14rem;
    max-width: 240px;
  }
  
  .geometric-grid {
    gap: 0.5rem;
  }
}


    /*WHAT WE DELIVER SECTION*/
      .carousel-container {
            width: 1200px;
            height: 450px;
            position: relative;
            background: #FDF2F8;
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            border-bottom: 3px ;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
             margin: -10px auto 0 auto; /* Negative top margin pulls it up */
         
        }

       

        .heading-9 {
            text-align: center;
            padding: 30px 0 20px 0;
               font-size: 46px;
            font-weight: 700;
            color: #333333;
        }

           .pink-line-11 {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #dc4c94, #dc4c94);
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: calc(100% - 80px);
        }

       .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 60px 40px 60px;
}

        .carousel-slide.active {
            opacity: 1;
        }


        .testimonial-text {
            font-size: 18px;
            line-height: 1.6;
            color: #0c0c0c;
            text-align: center;
            margin-bottom: 30px;
            max-width: 600px;
        }

         .header-author {
            text-align: center;
            margin-bottom: 20px;
        }

        .header-author-name {
            font-size: 16px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 5px;
        }

        .header-author-title {
            font-size: 25px;
            font-weight: 500;
            color: #dc4c94;
        }

        .author {
            text-align: center;
        }

        .author-name {
            font-size: 16px;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 5px;
        }

        .author-title {
            font-size: 14px;
            color: #6c757d;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background-color: #dc4c94;
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-arrow:hover {
           
            color: white;
        }

        .nav-arrow.prev {
            left: 100px; 
        }

        .nav-arrow.next {
            right: 110px;
        }

        .nav-arrow::before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
        }

        .nav-arrow.prev::before {
            border-width: 8px 12px 8px 0;
            border-color: transparent white transparent transparent;
        }

        .nav-arrow.next::before {
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent white;
        }

        .nav-arrow:hover.prev::before {
            border-color: transparent white transparent transparent;
        }

        .nav-arrow:hover.next::before {
            border-color: transparent transparent transparent white;
        }

        .dots-container-2 {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot-2 {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #6c757d;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot-2.active {
            background-color: #dc4c94;
        }
/* Responsive media queries for carousel section */
@media (max-width: 1024px) {
    .carousel-container {
        width: 95%;
        max-width: 1000px;
        height: 420px;
        margin: -10px auto 0 auto;
    }
    
    .heading-9 {
        font-size: 40px;
        padding: 25px 0 15px 0;
    }
    
    .carousel-slide {
        padding: 15px 50px 35px 50px;
    }
    
    .testimonial-text {
        font-size: 17px;
        max-width: 550px;
    }
    
    .nav-arrow.prev {
        left: 80px;
    }
    
    .nav-arrow.next {
        right: 90px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        width: 95%;
        height: 380px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    
    .heading-9 {
        font-size: 36px;
        padding: 20px 0 10px 0;
    }
    
    .carousel-slide {
        padding: 10px 40px 30px 40px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
        max-width: 500px;
    }
    .testimonial-text .li {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 25px;
        max-width: 500px;
    }
    
    .header-author-title {
        font-size: 22px;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
    }
    
    .nav-arrow.prev {
        left: 10px;
    }
    
    .nav-arrow.next {
        right: 10px;
    }
    
    .nav-arrow.prev::before {
        border-width: 7px 10px 7px 0;
    }
    
    .nav-arrow.next::before {
        border-width: 7px 0 7px 10px;
    }
    
    .dots-container-2 {
        bottom: 15px;
    }
    
    .dot-2 {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        width: 98%;
        height: 390px !important;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
         transform: translateY(50px) !important; /* Move container down by 50px */
       /* Changed from -160px to move container down */
         margin: 100px auto 0 auto !important; /* Use full margin override to move container down */
    }
        
    
    .heading-9 {
        font-size: 28px;
        padding: 15px 0 8px 0;
    }
    
    .carousel-slide {
        padding: 8px 25px 25px 25px;
        padding-top: 30px; /* Added to push content down */
    }
    
    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.8;
      margin-bottom: 20px !important; /* Changed from -80px to positive value */
        margin-top: 20px; /* Added to push text down further */
        max-width: 100%;
    }
    
    .header-author-name {
        font-size: 15px;
    }
    
    .header-author-title {
        font-size: 20px;
    }
    
    .author-name {
        font-size: 15px;
    }
    
    .author-title {
        font-size: 13px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow.prev {
        left: 20px !important;
        margin-top: -27px;
    }
    
    .nav-arrow.next {
        right: 10px !important;
         margin-top: -27px;
    }
    
    .nav-arrow.prev::before {
        border-width: 6px 8px 6px 0;
    }
    
    .nav-arrow.next::before {
        border-width: 6px 0 6px 8px;
    }
    
    .dots-container-2 {
        bottom: 10px;
        gap: 8px;
    }
    
    .dot-2 {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 320px) {
    .carousel-container {
        width: 100%;
        height: 320px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    
    .heading-9 {
        font-size: 24px;
        padding: 12px 0 6px 0;
    }
    
    .carousel-slide {
        padding: 6px 20px 20px 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .header-author-title {
        font-size: 18px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-arrow.prev {
        left: 10px;
    }
    
    .nav-arrow.next {
        right: 40px;
    }
    
    .nav-arrow.prev::before {
        border-width: 5px 7px 5px 0;
    }
    
    .nav-arrow.next::before {
        border-width: 5px 0 5px 7px;
    }
}

/* MacBook Pro 13" and 15" (1280px - 1511px) */
@media (max-width: 1280px)  {
   .carousel-container {
       margin-top: -20px !important;
      }


}


/* MacBook Pro 15" (1280px - 1511px) */
@media (max-width: 1511px) {
     .carousel-container {
       margin-top: -170px;
        } 
}

@media (min-width: 1512px) and (max-width: 2559px) {
     .carousel-container {
       margin-top: -370px;
        } 
}


        /* PRE FOOTER SECTION */
         .main-container2 {
            min-height: 100vh;
            padding: 60px 40px;
             margin-top: 60px;
        }
        .container-6 {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
            height: 714px;
        }
    .left-content {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-start;
    padding-top: 70px; /* Adjust this value to control how much to move up */
}
        .left-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            color: black;
            line-height: 1.2;
        }
        .left-content p {
            font-size: 18px;
            line-height: 1.6;
            color: grey;
            font-weight: 500;
            margin-bottom: 40px;
        }
        .arrow-container {
            display: flex;
            justify-content: flex-start;
            margin-top: 20px;
        }
        .arrow-svg {
            width: 120px;
            height: 80px;
            stroke: rgba(255, 255, 255, 0.8);
            stroke-width: 3;
            fill: none;
        }
        .content-3 {
            flex: 1;
            max-width: 500px;
        }
        .steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .step-box {
            background-color: #e3e2e3;
            color: white;
            padding: 24px;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .step-box.animate {
            transform: translateY(0);
            opacity: 1;
        }
        .step-number {
             background-color: hsl(330 65% 58%); /* Pink background */
  color: white; /* White text */
  width: 36px; /* Slightly larger circle */
  height: 36px;
  text-align: center;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Slightly larger number */
  flex-shrink: 0;
  margin-top: 4px; /* Adjusted positioning */
        }
        .step-text h2 {
            margin-bottom: 5px;
            font-size: 20px;
            font-weight: 700;
            color: #333333;
        }
        .step-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #666666;
        }

        .book-button {
            background-color: #dc4c94;
            color: white;
            border: none;
            padding: 16px 32px;
            font-weight: 700;
            font-size: 16px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px #dc4c94;
            margin-top: 30px;
            align-self: flex-start;
        }
        .book-button:hover {
           
            transform: translateY(-2px);
            box-shadow: 0 6px 16px #dc4c94;
        }
        .book-button:active {
            transform: translateY(0);
        }
        
       
        
   @media (max-width: 1024px) {
    .main-container2 {
        padding: 50px 30px;
        margin-top: 50px;
    }
    
    .container-6 {
        gap: 35px;
        max-width: 1000px;
        height: auto;
    }
    
    .left-content {
        padding-top: 50px;
    }
    
    .left-content h1 {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .left-content p {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .arrow-svg {
        width: 100px;
        height: 70px;
    }
    
    .step-box {
        padding: 20px;
        gap: 18px;
    }
    
    .step-text h2 {
        font-size: 18px;
    }
    
    .step-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .main-container2 {
        padding: 40px 20px;
        margin-top: 40px;
        min-height: auto;
        margin-bottom: 190px;
    }
    
    .container-6 {
        flex-direction: column;
        gap: 40px;
        height: auto;
    }
    
    .left-content {
        max-width: 100%;
        padding-top: 20px;
        text-align: center;
    }
    
    .left-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .left-content p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .arrow-container {
        justify-content: center;
        margin-top: 15px;
    }
    
    .arrow-svg {
        width: 90px;
        height: 60px;
    }
    
    .content-3 {
        max-width: 100%;
    }
    
    .steps {
        gap: 20px;
    }
    
    .step-box {
        padding: 18px;
        gap: 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .step-text h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step-text p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .book-button {
        padding: 14px 28px;
        font-size: 15px;
        margin-top: 25px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .main-container2 {
        padding: 30px 15px;
        margin-top: 90px;
    }
    
    .container-6 {
        gap: 30px;
    }
    
    .left-content {
        padding-top: 10px;
    }
    
    .left-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .left-content p {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.8;
    }
    
    .arrow-svg {
        width: 80px;
        height: 50px;
    }
    
    .steps {
        gap: 16px;
    }
    
    .step-box {
        padding: 16px;
        gap: 14px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .step-text h2 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .step-text p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .book-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 20px;
        border-radius: 10px;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .main-container2 {
        padding: 25px 10px;
        margin-top: 20px;
    }
    
    .container-6 {
        gap: 25px;
    }
    
    .left-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .left-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .arrow-svg {
        width: 70px;
        height: 45px;
    }
    
    .step-box {
        padding: 14px;
        gap: 12px;
    }
    
    .step-number {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .step-text h2 {
        font-size: 15px;
    }
    
    .step-text p {
        font-size: 13px;
    }
    
    .book-button {
        padding: 10px 20px;
        font-size: 13px;
        margin-top: 15px;
    }
}

     @media (min-width: 1512px) and (max-width: 2559px) {
     .footer-70 {
       margin-top: -390px;
        } 
}



/*FOOTER*/

        .footer-70 {
            background-color: #9c9c9c;
            color: #F4F5DB;
            padding: 60px 0 0;
            margin-top: -150px;
        }

        .container-70 {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Section */
        .footer-top-70 {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-logo-70 img {
            height: 70px;
            width: auto;
        }

        .footer-contact-70 {
            display: flex;
             align-items: center;
            gap: 20px;
        }

        .contact-item-70 {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
            font-size: 16px;
            transition: opacity 0.3s ease;
        }

        .contact-item-70:hover {
            opacity: 0.8;
        }

        .contact-icon-70 {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .social-links-70 {
            display: flex;
            gap: 16px;
        }

        .social-link-70 {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(244, 245, 219, 0.1);
            border-radius: 8px;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        .social-link-70:hover {
            background-color: rgba(244, 245, 219, 0.2);
        }

        .social-icon-70 {
            width: 20px;
            height: 20px;
            fill: white;
        }

        /* Middle Section */
        .footer-middle-70 {
            display: grid;
             grid-template-columns: 2fr 1.2fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .navigation-sections-70 {
            background-color: white ;
            padding: 25px;
            border-radius: 12px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-column-70 h3 {
            font-size: 18px;
            font-weight: 650;
            margin-bottom: 20px;
            color: #333333;
        }

        .footer-links-70 {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link-70 {
            color: grey;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.3s ease;
            position: relative;
        }

        .footer-link-70:hover {
            opacity: 0.8;
        }

        /* Newsletter Section */
        .newsletter-70 {
            background-color: white ;
            padding: 30px;
            border-radius: 12px;
        }

        .newsletter-70 h3 {
            font-size: 24px;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .newsletter-form-70 {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .newsletter-input-70 {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid  grey;
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.1);
            color:gray;
            font-size: 16px;
        }

        .newsletter-input-70::placeholder {
            color: grey;
        }

        .newsletter-input-70:focus {
            outline: none;
            border-color: #F4F5DB;
        }

        .newsletter-btn-70 {
            padding: 12px 24px;
            background-color: #dc4c94;
            color:  #F4F5DB;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 550;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn-70:hover {
            background-color: #FDF2F8;
            color: #333333;
        }

        .newsletter-disclaimer-70 {
            font-size: 12px;
            opacity: 0.8;
            line-height: 1.4;
            color: #9e9e9e;;
        }

        /* Logo Strip */
        .logo-strip-70 {
            background-color: #F4F5DB;
            padding: 30px 0;
            margin-bottom: 0;
            overflow: hidden;
        }

        .logo-carousel-70 {
            display: flex;
            align-items: center;
            gap: 60px;
            animation: scroll 30s linear infinite;
        }

        .logo-item-70 {
            flex-shrink: 0;
            height: 60px;
            display: flex;
            align-items: center;
        }

        .logo-item-70 img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Bottom Section */
        .footer-bottom-70 {
            background-color: #9e9e9e;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .footer-bottom-70 a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom-70 a:hover {
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-middle {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .logo-carousel {
                gap: 40px;
            }

             .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    
@media (max-width: 480px) {
    .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    .footer-logo img {
        height: 90px; /* Increased from 70px */
        width: auto;
    }
        
}
       .container-70 {
        padding: 0 15px;
    }
    
    .footer-70 {
        padding: 40px 0 0;
    }
    
    .footer-top-70 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .footer-logo-70 {
        order: 1;
        align-self: flex-start;
    }
    
    .footer-logo-70 img {
        height: 60px;
        width: auto;
    }
    
    .social-links-70 {
        order: 2;
        align-self: flex-end;
        position: absolute;
        top: 40px;
        right: 15px;
        gap: 12px;
    }
    
    .social-link-70 {
        width: 36px;
        height: 36px;
    }
    
    .social-icon-70 {
        width: 18px;
        height: 18px;
    }
    
    .footer-contact-70 {
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        margin-top: 20px;
    }
    
    .contact-item-70 {
        width: 100%;
        font-size: 14px;
    }
    
    .footer-middle-70 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .navigation-sections-70 {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column-70 h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-link-70 {
        font-size: 14px;
    }
    
    .newsletter-70 {
        padding: 20px;
    }
    
    .newsletter-70 h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .newsletter-form-70 {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input-70 {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .newsletter-btn-70 {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .newsletter-disclaimer-70 {
        font-size: 11px;
    }
    
    .logo-carousel-70 {
        gap: 30px;
    }
    
    .logo-item-70 {
        height: 50px;
    }
    
    .footer-bottom-70 {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 12px;
        padding: 15px 0;
    }
}


        @media (min-width: 1512px) and (max-width: 2559px) {
     .footer-70 {
       margin-top: -390px;
        } 
}


        /*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 {
            color: #dc4c94;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: left;
        }

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

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

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

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

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

        .form-input {
            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:focus {
            outline: none;
            border-color: #dc4c94;
        }

        .form-textarea {
            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:focus {
            outline: none;
            border-color: #dc4c94;
        }

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

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

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

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

        .platform-icon {
            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 {
            background-color: white;
        }

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

        .phone-icon {
            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 {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            transition: border-color 0.2s;
            background-color: white;
        }

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

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

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

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

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

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

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

        .submit-btn {
            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:hover {
            background-color: #dc4c94;
        }

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

        .custom-input.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 {
        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, .form-textarea {
        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 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .submit-btn {
        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, .form-textarea {
        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 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-input, .form-textarea {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .submit-btn {
        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 {
        flex-direction: column;
    }
    
    .country-flag {
        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 {
        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, .form-textarea {
        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 !important;

        }


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

        .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;
    }

    /* 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;
    }
}

@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;
        }
}

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

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

        } 

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

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

        } 

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

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

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

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

        } 

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


      
