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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f3f0;
            color: white;
            overflow-x: hidden;
        }

        /* --- HERO-SECTION & NAVIGATION --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
             padding: 20px 40px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s ease;  
            width: 100%;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.498);
            backdrop-filter: blur(10px);
            padding: 15px 32px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 0;
        }
        .logo-group {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .nav-logo-img {
            height: 40px;
            width: auto;
            border-radius: 4px;
        }

        .logo-text {
            color: white;
            font-size: 22px;
            font-weight: 600;
            font-family: "Playfair Display", serif;
            line-height: 1;
        }

        nav.scrolled .logo-text { color: black; }

        .logo-text span {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            font-family: 'Inter', sans-serif;
            opacity: 0.8;
        }

       /* --- NAVIGATION LINKS --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    /* Required for the absolute underline to position itself correctly */
    position: relative; 
    /* Creates space for the line so it doesn't touch the letters */
    padding-bottom: 8px; 
}

/* Underline effect - positioned BELOW the text */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; /* Positioned at the bottom of the padding */
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e05bab;
    transition: width 0.3s ease;
}

/* Hover State */
.nav-links a:hover {
    color: #e05bab; /* Matches the line color for a cleaner look */
}

/* When the navbar is scrolled, the text becomes black, but hover stays pink */
nav.scrolled .nav-links a { 
    color: black; 
}

nav.scrolled .nav-links a:hover {
    color: #e05bab;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-links a.active::after {
    width: 100%;
}

        .book-call-btn {
            background: linear-gradient(135deg, #e05bab 0%, #be4a8d 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(rgba(118, 117, 117, 0.653), rgba(0,0,0,0.6)), 
                        url('/images/people-in-boardroom--output.png'); 
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            margin-top: 70px !important;
            z-index: 10;
        }

        .location-tag {
            background: rgba(224, 91, 171, 0.2);
            color: #ff9edb;
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 30px;
            font-size: 14px;
            letter-spacing: 1px;
            border: 1px solid rgba(224, 91, 171, 0.3);
            backdrop-filter: blur(5px);
        }

        /* FIXED: Added height to prevent text jumping */
        .typewriter-container {
            min-height: 280px; 
            margin-bottom: -10px;
            text-align: center;
        }

        .main-heading {
            display: block; /* Ensures words stack vertically */
            font-size: clamp(40px, 8vw, 80px);
            font-weight: 900;
            line-height: 1.1;
            font-family: 'Playfair Display', serif;
            min-height: 1.1em; /* Reserves line height */
        }

        .cursor {
            display: inline-block;
            width: 4px;
            height: 0.8em;
            background: #e05bab;
            margin-left: 5px;
            vertical-align: middle;
        }

        .description {
            font-size: clamp(18px, 2vw, 24px);
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            color: #f0f0f0;
            font-weight: 300;

        }

        .highlight {
            color: #e05bab;
            font-weight: 700;
        }

       .floating-cta {
    display: inline-block;
    background: rgba(224, 91, 171, 0.2);
    color: white;
    padding: 10px 28px; /* Smaller sizing */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* Smaller font */
    border: 1px solid rgba(224, 91, 171, 0.5); /* Secondary pink border */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    opacity: 1 !important; /* Forces visibility */
}

.floating-cta:hover {
    background: rgba(224, 91, 171, 0.2);
    border-color: #e05bab;
    transform: translateY(-2px);
}


/*MENU FOR MOBILE DEVICES STYLE*/
/* --- MOBILE MENU STYLES --- */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state for toggle */
nav.scrolled .menu-toggle span { background: black; }

/* Hamburger Transform to X */
.menu-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); background: black !important; }
.menu-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); background: black !important; }

/* Fullscreen Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1500;
}

.mobile-overlay.active { transform: translateX(0); }

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li { margin: 25px 0; opacity: 0; transform: translateY(20px); transition: 0.4s; }
.mobile-overlay.active .mobile-nav-links li { opacity: 1; transform: translateY(0); }

.mobile-nav-links a {
    color: black;
    text-decoration: none;
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.mobile-cta {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    color: #e05bab !important;
    border: 1px solid #e05bab;
    padding: 10px 30px;
    border-radius: 50px;
}

/* Mobile Media Query Update */
@media (max-width: 768px) {
    .nav-links, .book-call-btn { display: none; }
    .menu-toggle { display: flex; }
    nav.scrolled { padding: 10px 20px; margin: 0px; margin-top: 30px; }
}


        @media (max-width: 768px) {
            nav { padding: 90px 30px; width: 100%; }
            .nav-links, .book-call-btn { display: none; }
            .typewriter-container { min-height: 180px; }
        }



/*SERVICES SECTION */
.section {
            padding: 60px 40px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            background-color: #f5f3f0;
           
        }
        .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: #4A4A4A;
            overflow: hidden;
        }
        .section-subtext {
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 1.5;
            color: #4a4a4a;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out 0.3s;
            font-weight: 300;
        }
        .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: #D6C3A3;
        }
        .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: #2B2B2B;
      font-size: 48px;
      font-weight: 700;
       font-family: "Playfair Display", serif !important;
    }

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

}


/* SECTION 1: IT SPECIALIZATION - ASYMMETRIC LAYOUT */
        .it-specialization-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
           background-color: #f5f3f0;
            overflow: hidden;
            padding: 120px 0;
        }

        .specialization-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

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

        .spec-label {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            color: #E85B9C;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0;
        }

        .spec-heading {
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 30px;
            opacity: 0;
             font-family: 'Playfair Display', serif;
        }

        .spec-heading .highlight {
            color:  #E85B9C;
            font-style: italic;
            position: relative;
            display: inline-block;
        }

        .spec-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0;
            font-weight: 300;
            color: #4a4a4a;
        }

        .spec-points {
            list-style: none;
            margin-bottom: 40px;
        }

        .spec-point {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateX(-30px);
        }

        .spec-point-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #E85B9C 0%, #d4498a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(232, 91, 156, 0.2);
        }

        .spec-point-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .spec-point-text h4 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .spec-point-text p {
            font-size: 16px;
            line-height: 1.6;
            font-weight: 300;
            line-height: 1.8;
            color: #4a4a4a;
        }

        .spec-visual {
            position: relative;
            height: 600px;
            opacity: 0;
        }

        .visual-card {
            position: absolute;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .visual-card-1 {
            width: 70%;
            height: 400px;
            top: 0;
            left: 0;
            z-index: 3;
            background: url('/images/attractive-young-businesswomen-discussing-documentation-hands-two-pretty-confident-female-colleagues-holding-papers-standing-office-room-teamwork-business-management-concept.jpg') center/cover;
        }

        .visual-card-2 {
            width: 60%;
            height: 350px;
            bottom: 0;
            right: 0;
            z-index: 2;
            background: url('/images/business-leader-interviewing-job-candidate.jpg') center/cover;
        }

        .card-content {
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-stat {
            font-size: 64px;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .card-label {
            font-size: 18px;
            font-weight: 500;
            color: white;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        
        /* TABLET - 768px and up */
@media (min-width: 768px) {
    .it-specialization-section {
        padding: 80px 0;
    }

    .specialization-container {
        padding: 0 40px;
        gap: 60px;
    }

    .spec-label {
        font-size: 13px;
        letter-spacing: 2.5px;
    }

    .spec-heading {
        font-size: 42px;
        margin-bottom: 25px;
    }

    .spec-description {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .spec-point {
        gap: 18px;
        margin-bottom: 22px;
    }

    .spec-point-icon {
        width: 48px;
        height: 48px;
    }

    .spec-point-icon svg {
        width: 23px;
        height: 23px;
    }

    .spec-point-text h4 {
        font-size: 19px;
    }

    .spec-point-text p {
        font-size: 15.5px;
    }

    .spec-visual {
        height: 500px;
    }

    .visual-card-1 {
        width: 75%;
        height: 320px;
    }

    .visual-card-2 {
        width: 65%;
        height: 280px;
    }

    .card-content {
        padding: 30px;
    }

    .card-stat {
        font-size: 56px;
    }

    .card-label {
        font-size: 17px;
    }
}

/* DESKTOP - 1024px and up */
@media (min-width: 1024px) {
    .it-specialization-section {
        padding: 100px 0;
    }

    .specialization-container {
        padding: 0 50px;
        grid-template-columns: 1fr 1.2fr;
        gap: 70px;
    }

    .spec-label {
        font-size: 14px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .spec-heading {
        font-size: 48px;
        margin-bottom: 28px;
    }

    .spec-description {
        font-size: 17.5px;
        line-height: 1.75;
        margin-bottom: 38px;
    }

    .spec-point {
        gap: 20px;
        margin-bottom: 24px;
    }

    .spec-point-icon {
        width: 50px;
        height: 50px;
    }

    .spec-point-icon svg {
        width: 24px;
        height: 24px;
    }

    .spec-point-text h4 {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .spec-point-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .spec-visual {
        height: 550px;
    }

    .visual-card {
        border-radius: 18px;
    }

    .visual-card-1 {
        width: 70%;
        height: 370px;
    }

    .visual-card-2 {
        width: 60%;
        height: 320px;
    }

    .card-content {
        padding: 35px;
    }

    .card-stat {
        font-size: 60px;
        margin-bottom: 14px;
    }

    .card-label {
        font-size: 17.5px;
    }
}

/* LARGE DESKTOP - 1280px and up */
@media (min-width: 1280px) {
    .it-specialization-section {
        padding: 120px 0;
    }

    .specialization-container {
        padding: 0 60px;
        gap: 80px;
    }

    .spec-heading {
        font-size: 56px;
        margin-bottom: 30px;
    }

    .spec-description {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .spec-point {
        margin-bottom: 25px;
    }

    .spec-point-text p {
        line-height: 1.8;
    }

    .spec-visual {
        height: 600px;
    }

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

    .visual-card-1 {
        height: 400px;
    }

    .visual-card-2 {
        height: 350px;
    }

    .card-content {
        padding: 40px;
    }

    .card-stat {
        font-size: 64px;
        margin-bottom: 15px;
    }

    .card-label {
        font-size: 18px;
    }
}

/* EXTRA SMALL DEVICES - max 375px */
@media (max-width: 375px) {
    .spec-heading {
        font-size: 28px;
    }

    .spec-description {
        font-size: 15px;
    }

    .spec-point-icon {
        width: 40px;
        height: 40px;
    }

    .spec-point-icon svg {
        width: 20px;
        height: 20px;
    }

    .spec-point-text h4 {
        font-size: 16px;
    }

    .spec-point-text p {
        font-size: 14px;
    }

    .visual-card-1 {
        height: 220px;
    }

    .visual-card-2 {
        height: 190px;
    }

    .card-stat {
        font-size: 42px;
    }

    .card-label {
        font-size: 14px;
    }
}



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

         .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.85) 0%, hsla(330, 65%, 52%, 0.374) 100%),
    url("/images/african-american-financial-consultant-writing-reports-while-having-meeting-with-clients-office.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
            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, rgba(158,158,158,0.85) 0%, rgba(158, 158, 158, 0.669) 100%),
    url("/images/medium-shot-people-learning-together.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
        }

        .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-card {
            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;
             font-family: "Playfair Display", serif;
        }

        .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-heading2 {
                font-size: 20px !important;
                line-height: 1.3;
                bottom: 30px;
                left: 30px;
                right: 30px;
            }
            
            .small-title-card {
                font-size: 16px !important;
                margin-bottom: 30px;
            }
            
            
            .decorative-lines {
                right: 20px;
                top: 60px;
            }
        }



     
/*SIMPLIFY SECTION*/

/* Hide mobile CTA on desktop - MOVE THIS TO THE TOP */
.cta-section-mobile {
  display: none;
}

  /* YOUR CONTENT SECTION WITH REVEAL ANIMATION */
    .content-section-14 {
      position: relative;
      height: 150vh;
      overflow: hidden;
      background: #FDF2F8;
      margin-bottom: 150px !important;
    }

    /* 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;
       font-family: "Playfair Display", serif;
    }

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

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

    /* Desktop / default order */
.left-section-10 {
  order: 1;
}

.right-section-10 {
  order: 3;
}

.cta-section-10 {
  order: 2;
}


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

    .right-section-10 {
      flex: 1;
      max-width: 70%;
      background: white;
      backdrop-filter: blur(20px);
      border-radius: 60px;
      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;   
      font-family: "Playfair Display", serif;   
    }

    .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;
      font-weight: 300;
    color: #4a4a4a;
    }

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

   

  
@media (max-width: 768px) {
  /* Hide the desktop CTA on mobile */
  .cta-section-10 {
    display: none !important;
  }
  
  /* All your other mobile styles stay the same */
  .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;
  }
  
  .left-section-10,
  .right-section-10 {
    max-width: 100%;
    padding-right: 0;
    flex: none;
  }
  
  .left-section-10 {
    text-align: center;
    order: 1; /* Heading first */
  }
  
  .main-heading-10 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .right-section-10 {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    order: 2; /* Cards second */
  }
  
  .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;
  }
  
  /* Show mobile CTA and position it last */
  .cta-section-mobile {
    display: block !important;
    margin-top: 2rem;
    text-align: center;
    order: 3; /* CTA last - after cards */
  }
  
  .cta-text-mobile {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
  }
}






      
/*OUR VALUES SECTION*/
 .values-section {
            height: 400vh;
            position: relative;
            margin-top: -190px;
            background-color: #FAF9F8;
        }

        .values-container {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .values-title {
            position: absolute;
            left: 5vw;
            top: 50%;
            transform: translateY(-50%);
            font-size: clamp(1.75rem, 5vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            z-index: 10;
            line-height: 1.1;
            color: #2B2B2B;
             font-family: "Playfair Display", serif;
             will-change: auto;
        }

        .value-title-text{
             font-family: "Playfair Display", serif;
        }
        
        .value-title-text,
        .value-description {
            transform: translate3d(0, 0, 0);
            will-change: opacity;
        }

        .cards-wrapper-values {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            perspective: 1000px;
        }

        .value-card {
            position: absolute;
            height: 60vh;
            display: flex;
            left: 100% ;
            will-change: transform;
            margin-left: 70px;
        }

        .card-tab-values {
            width: 80px;
            color: #e05bab;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            font-family: "Playfair Display", serif;
        }

        .card-content-values {
            width: 50vw;
            padding: 4rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .value-card:nth-child(1) .card-tab-values {
            background: #e8d8e2;
        }

        .value-card:nth-child(1) .card-content-values {
            background:
     linear-gradient(135deg, hsla(0, 0%, 0%, 0.85) 0%, hsla(330, 92%, 86%, 0.374) 100%),
     url("/images/front-view-working-covid-concept.jpg");
  background-size: cover;
  background-position: center;;
            color: white;
        }

        .value-card:nth-child(2) .card-tab-values {
            background: #e8d8e2;
        }

        .value-card:nth-child(2) .card-content-values {
            background:
     linear-gradient(135deg, hsla(0, 0%, 0%, 0.85) 0%, hsla(330, 92%, 86%, 0.374) 100%), url("/images/diverse-office-colleagues-reviewing-business-insights-laptop-before-setting-goals-modern.jpg");
  background-size: cover;
  background-position: center;;
            color: white;
        }

        .value-card:nth-child(3) .card-tab-values {
            background: #e8d8e2;
        }

        .value-card:nth-child(3) .card-content-values {
            background:
    linear-gradient(135deg, hsla(0, 0%, 0%, 0.85) 0%, hsla(330, 92%, 86%, 0.374) 100%),
     url("/images/close-up-women-discussing-business.jpg");
  background-size: cover;
  background-position: center;;
            color: white;
        }

        

        .value-title-text {
            font-size: clamp(1.5rem, 3.5vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .value-description {
            font-size: clamp(0.9rem, 1.5vw, 1.25rem);
            line-height: 1.8;
            opacity: 0.95;
        }

       /* Tablet breakpoint */
        @media (max-width: 1024px) {
            .value-card {
                height: 55vh;
            }

            .card-tab-values {
                width: 70px;
                font-size: 1.75rem;
            }

            .card-content-values {
                width: 55vw;
                padding: 3rem 2.5rem;
            }

            .value-title-text {
                margin-bottom: 1.25rem;
            }
        }

/* Mobile landscape and larger phones - STACKED CARD REVEAL */
@media (max-width: 768px) {
    .values-section {
        height: 300vh;
        margin-top: 0;
        padding: 0;
    }

    .values-container {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .values-title {
        position: absolute;
        left: 32vw;
        top: 18vh !important;
        transform: none;
        text-align: center;
        width: auto;
        font-size: 2.5rem !important;
        z-index: 5;
    }

    .cards-wrapper-values {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5vw;
    }

    .value-card {
        position: absolute !important;
        height: auto;
        min-height: 350px;
        width: 90vw;
        margin-left: 0;
        left: 50% !important;
        top: 50%;
        transform: translate(-50%, -50%) !important;
        display: flex;
        opacity: 0;
    }

    .card-tab-values {
        width: 50px;
        font-size: 1.5rem;
    }

    .card-content-values {
        width: calc(90vw - 50px);
        padding: 2rem 1.5rem;
    }

    .value-title-text {
        font-size: clamp(1.25rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .value-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
}

/* Small mobile devices - STACKED CARD REVEAL */
@media (max-width: 480px) {
    .values-section {
        height: 300vh;
    }

    .values-title {
        top: 8vh;
        font-size: clamp(1.25rem, 7vw, 2rem);
    }

    .value-card {
        min-height: 320px;
        width: 90vw;
    }

    .card-tab-values {
        width: 40px;
        font-size: 1.25rem;
    }

    .card-content-values {
        width: calc(90vw - 40px);
        padding: 1.5rem 1.25rem;
    }

    .value-title-text {
        font-size: clamp(1.1rem, 5.5vw, 1.75rem);
        margin-bottom: 0.875rem;
    }

    .value-description {
        font-size: clamp(0.8rem, 3.8vw, 0.95rem);
        line-height: 1.5;
    }
}

/* Extra small mobile devices - STACKED CARD REVEAL */
@media (max-width: 375px) {
    .values-section {
        height: 300vh;
        
    }

    .values-title {
        top: 15vh !important;
        font-size: 1rem;
    }

    .value-card {
        min-height: 300px;
        width: 90vw;
        
    }

    .card-tab-values {
        width: 35px;
        font-size: 1.1rem;
    }

    .card-content-values {
        width: calc(90vw - 35px);
        padding: 1.25rem 1rem;
    }

    .value-title-text {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .value-description {
        font-size: 0.8rem;
        line-height: 1.45;
    }
}



       /*WHAT WE DELIVER - PREMIUM REDESIGN*/

/* Container */
.parallax-container-deliver {
    display: flex;
    position: relative;
    background: #0a0a0a;
}

/* Left Side: Sticky Image with Parallax */
.image-section-deliver {
    width: 45%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section-deliver img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.parallax-container-deliver:hover .image-section-deliver img {
    transform: scale(1);
}

/* Refined Overlay */
.image-overlay-deliver {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(239, 0, 159, 0.15) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
    mix-blend-mode: multiply;
}

/* Floating Label on Image */
.floating-label-deliver {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-family: "Playfair Display", serif;
}

.label-number-deliver {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    opacity: 0.3;
    letter-spacing: -2px;
}

.label-text-deliver {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* Right Side: Premium Content Section */
.content-section-deliver {
    width: 55%;
    background: linear-gradient(to bottom, #FAF9F8 0%, #f5f3f0 100%);
    padding: 0 8%;
    position: relative;
}

/* Section Header */
.section-header-deliver {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ef009f;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.main-title-deliver {
    font-size: 4.3rem;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    color: #2B2B2B;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
    margin-right: -30px;
}

/* Content Blocks */
.content-block-deliver {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 60px 0;
    position: relative;
}

.content-block-deliver::before {
    content: '';
    position: absolute;
    left: -8%;
    top: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(to bottom, transparent, #ef009f, transparent);
    transition: height 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.content-block-deliver.active {
    opacity: 1;
    transform: translateY(0);
}

.content-block-deliver.active::before {
    height: 100%;
}

/* Block Number */
.block-number-deliver {
    font-size: 8rem;
    font-family: "Playfair Display", serif;
    font-weight: 300;
    color: #ef009f;
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
    width: 140px;
    letter-spacing: -4px;
}

/* Block Content */
.block-content-deliver {
    flex: 1;
}

.content-block-deliver h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #2B2B2B;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

.divider-deliver {
    width: 60px;
    height: 2px;
    background: #ef009f;
    margin-bottom: 28px;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.content-block-deliver.active .divider-deliver {
    width: 120px;
}

.content-block-deliver p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
    font-weight: 300;
}

/* Premium CTA Link */
.learn-more-deliver {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ef009f;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    padding-bottom: 4px;
}

.learn-more-deliver::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ef009f;
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.learn-more-deliver:hover {
    gap: 20px;
}

.learn-more-deliver:hover::after {
    width: calc(100% - 32px);
}

.learn-more-deliver svg {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.learn-more-deliver:hover svg {
    transform: translateX(8px);
}

/* Footer Section */
.content-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(239, 0, 159, 0.2);
    margin-top: 60px;
}

.footer-tagline {
    font-size: 1.4rem;
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #2a2a2a;
    text-align: center;
    max-width: 500px;
    line-height: 1.6;
    font-weight: 300;
}

/* Mobile Optimization */
@media (max-width: 1024px) {
    .main-title-deliver { font-size: 4rem; }
    .content-block-deliver h2 { font-size: 2.2rem; }
    .block-number-deliver { font-size: 6rem; width: 100px; }
}

@media (max-width: 768px) {
    .parallax-container-deliver { 
        flex-direction: column; 
    }
    
    .image-section-deliver, 
    .content-section-deliver { 
        width: 100%; 
    }
    
    .image-section-deliver { 
        height: 60vh;
        position: relative;
    }
    
    .floating-label {
        bottom: 30px;
        left: 30px;
    }
    
    .label-number-deliver { font-size: 3.5rem; }
    .label-text-deliver { font-size: 0.9rem; }
    
    .main-title-deliver { font-size: 3rem; }
    
    .content-block-deliver {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        padding: 40px 0;
    }
    
    .block-number-deliver {
        font-size: 4rem;
        width: auto;
    }
    
    .content-block-deliver h2 { 
        font-size: 1.8rem; 
    }
    
    .content-block-deliver p {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
}

           /*PRE FOOTER*/
          .hr-section-convo {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: #f5f3f0;
            position: relative;
            overflow: hidden;
        }

        .container-convo {
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* Image Container with Stacked Cards */
        .image-wrapper-convo {
            position: relative;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px;
        }

        .image-wrapper-convo.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .image-wrapper-convo.animate .card-stack-left {
            transform: rotate(-8deg) translateX(-15px);
        }

        .image-wrapper-convo.animate .card-stack-right {
            transform: rotate(8deg) translateX(15px);
        }

        /* Stacked Cards Behind */
        .card-stack-left,
        .card-stack-right {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 32px;
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.3s;
        }

        .card-stack-left {
            background: linear-gradient(135deg, hsl(330 65% 58% / 0.85) 0%, hsla(330, 65%, 52%, 0.374) 100%);
            top: 0;
            left: 0;
            z-index: 1;
            transform: rotate(0deg) translateX(0);
        }

        .card-stack-right {
            background: linear-gradient(135deg,rgba(158,158,158,0.85) 0%, rgba(158, 158, 158, 0.669) 100%);
            top: 0;
            right: 0;
            z-index: 2;
            transform: rotate(0deg) translateX(0);
        }

        .image-container-convo {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            z-index: 3;
            background: white;
        }

        .image-container-convo img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 32px;
            transform: scale(1);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .image-container-convo:hover img {
            transform: scale(1.05);
        }

        /* Content */
        .content-convo {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.2s;
        }

        .content-convo.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .title-convo {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 300;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            font-family: "Playfair Display", serif;
        }

        .title-convo span {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .content-convo.animate .title-convo span:nth-child(1) {
            animation-delay: 0.3s;
        }

        .content-convo.animate .title-convo span:nth-child(2) {
            animation-delay: 0.4s;
        }

        .content-convo.animate .title-convo span:nth-child(3) {
            animation-delay: 0.5s;
        }

        .content-convo.animate .title-convo span:nth-child(4) {
            animation-delay: 0.6s;
        }

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

        .description-convo {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.7s;
            font-weight: 300;
        }
        
        .content-convo.animate .description-convo {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-button-convo {
            display: inline-block;
            padding: 1rem 2rem;
            background: #e05bab;
            color: white;
            text-decoration: none;
            font-size: 1.12rem;
            font-weight: 500;
            border-radius: 50px;
            border: 2px solid #e5e5e5;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .content-convo.animate .cta-button-convo {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            transition-delay: 0.9s;
        }

        .cta-button-convo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(224, 91, 171, 0.5) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .cta-button-convo:hover {
            border-color: #e05bab;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px -8px rgba(168, 85, 247, 0.3);
            color: white;
        }

        .cta-button-convo:hover::before {
            opacity: 1;
        }


     
/* ============================================
   RESPONSIVE MEDIA QUERIES FOR MOBILE
   ============================================ */

/* Tablets and smaller (below 1024px) */
@media (max-width: 1024px) {
    .container-convo {
        gap: 4rem;
    }
    
    .title-convo {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

/* Tablets portrait and mobile landscape (below 768px) */
@media (max-width: 768px) {
    .hr-section-convo {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .container-convo {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* IMAGE AT TOP - Content comes after image on mobile */
    .image-wrapper-convo {
        order: 1;
        padding: 15px;
    }
    
    .content-convo {
        order: 2;
        text-align: center;
    }
    
    .title-convo {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .description-convo {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button-convo {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Reduce card stack rotation on tablets */
    .image-wrapper-convo.animate .card-stack-left {
        transform: rotate(-5deg) translateX(-10px);
    }
    
    .image-wrapper-convo.animate .card-stack-right {
        transform: rotate(5deg) translateX(10px);
    }
}

/* Mobile devices (below 480px) */
@media (max-width: 480px) {
    .hr-section-convo {
        padding: 2rem 1rem;
    }
    
    .container-convo {
        gap: 2rem;
    }
    
    .image-wrapper-convo {
        padding: 10px;
    }
    
    .title-convo {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .description-convo {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .cta-button-convo {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        text-align: center;
    }
    
    /* Smaller card stack effect on mobile */
    .card-stack-left,
    .card-stack-right {
        border-radius: 24px;
    }
    
    .image-container-convo {
        border-radius: 24px;
        box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
    }
    
    .image-container-convo img {
        border-radius: 24px;
    }
    
    .image-wrapper-convo.animate .card-stack-left {
        transform: rotate(-4deg) translateX(-8px);
    }
    
    .image-wrapper-convo.animate .card-stack-right {
        transform: rotate(4deg) translateX(8px);
    }
    
    /* Disable hover effects on mobile */
    .image-container-convo:hover img {
        transform: scale(1);
    }
    
    .cta-button-convo:hover {
        transform: translateY(0);
    }
}

/* Small mobile devices (below 360px) */
@media (max-width: 360px) {
    .hr-section-convo {
        padding: 1.5rem 0.75rem;
    }
    
    .title-convo {
        font-size: 1.5rem;
    }
    
    .description-convo {
        font-size: 0.875rem;
    }
    
    .cta-button-convo {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/*FOOTER*/

       
      /*FOOTER STYLES*/
.ve-anchor-footer {
    background-color: #ffffff;
    padding: 100px 0 60px;
    color: #1a1a1a;
    border-top: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 100px;
}

/* The Vertical Brand Anchor */
.brand-anchor-footer {
    border-right: 1px solid #d14a8d; /* Pink accent line */
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1;
    margin: 0;
    letter-spacing: -1px;
}

.footer-logo span {
    color: #d14a8d;
    font-style: italic;
}

.solutions-tag-footer {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 12px; /* Super-wide spacing for luxury feel */
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-motto {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-top: 40px;
    letter-spacing: 1px;
}

/* The Content Wrap */
.footer-content-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.label-footer {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d14a8d;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-links a, .contact-link-footer {
    text-decoration: none;
    color: #1a1a1ab9;
    font-size: 1.2rem !important;
    font-family: 'Playfair Display', serif;
    transition: 0.3s ease;
    font-weight: 900 !important;
}

.footer-links a:hover, .contact-link-footer:hover {
    color: #d14a8d;
    transform: translateX(5px);
}

.address-footer {
    margin-top: 20px;
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
    font-size: 0.8rem;
    color: #999;
}

.credit a {
    color: #999;
    font-weight: 700;
    text-decoration: none;
}

.legal-right a {
    color: #999;
    text-decoration: none;
    margin-left: 20px;
}

.legal-right a:hover {
    color: #d14a8d;
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-container { flex-direction: column; gap: 60px; padding: 0 30px; }
    .brand-anchor-footer { border-right: none; border-bottom: 1px solid #d14a8d; padding: 0 0 40px 0; }
    .footer-grid { grid-template-columns: 1fr; }
}