/* ==========================================================================
   ENVI STUDIOS - CSS DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Colors */
    --primary-dark: #202333;
    --accent-orange: #FA8B26;
    --accent-green: #34C9A0;
    --accent-purple: #B098F2;
    --accent-blue: #3A89F8;
    --white: #FFFFFF;
    --bg-peach: #FFF5EC;
    --bg-light: #F6F6F6;
    --border-light: rgba(32, 35, 51, 0.1);

    /* Typography */
    --font-main: 'Manrope', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-ui: 'Manrope', sans-serif;
    --font-button: 'Satoshi', sans-serif;

    /* Spacing */
    --header-height: 73px;
    --section-padding: 0 10%;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--primary-dark);
    font-family: var(--font-body);
    overflow: hidden;
    /* Scroll handled by .snap-container */
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Scroll Snap Container */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background: var(--white);
}

/* On the index page, we disable native snapping to let 
   the JS Scroll Manager handle section-by-section movement smoothly. */
.index-page .snap-container {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.section {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Vertical stacking for centered layouts */
    justify-content: center;
    /* Center content vertically in available space */
    align-items: center;
    /* Center content horizontally */
    scroll-snap-align: start;
    position: relative;
    padding: var(--header-height) 24px 0;
    /* Clear header space */
    box-sizing: border-box;
    text-align: center;
    scroll-margin-top: 0;
}

.index-page .section {
    scroll-snap-align: none;
}

/* ===== Fixed Scene Background ===== */
#scene-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.scene-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.scene-layer.active {
    opacity: 1;
}

/* Background Gradients */
.scene-gradient-hero {
    position: absolute;
    top: 0;
    left: calc(50% - 720px);
    width: 1440px;
    height: 900px;
    background: linear-gradient(108.44deg, #FEDFC3 18.86%, rgba(255, 244, 235, 0) 93.35%);
    filter: blur(150px);
    animation: gradientDrift 12s ease-in-out infinite alternate;
}

.scene-gradient-services {
    position: absolute;
    width: 1439px;
    height: 750px;
    left: 1px;
    top: 0;
    background: linear-gradient(108.44deg, #E5FCF6 18.86%, rgba(255, 244, 235, 0) 93.35%, rgba(209, 249, 238, 0) 93.35%);
    filter: blur(150px);
}

.scene-blob-services {
    position: absolute;
    width: 266px;
    height: 248px;
    left: 1px;
    bottom: 0;
    background: rgba(52, 201, 160, 0.4);
    filter: blur(150px);
    border-radius: 124px;
}

.scene-gradient-clients {
    position: absolute;
    width: 1439px;
    height: 750px;
    left: 1px;
    top: 0;
    background: linear-gradient(108.44deg, #EDE7FF 18.86%, rgba(255, 244, 235, 0) 93.35%, rgba(237, 231, 255, 0) 93.35%);
    filter: blur(115px);
}

.scene-gradient-why {
    position: absolute;
    width: 1439px;
    height: 750px;
    left: 1px;
    top: 0;
    background: linear-gradient(108.44deg, #CCE1FF 18.86%, rgba(255, 244, 235, 0) 93.35%, rgba(204, 225, 255, 0) 93.35%);
    filter: blur(200px);
}

.scene-blob-why {
    position: absolute;
    width: 242px;
    height: 248px;
    right: 0;
    bottom: 0;
    background: rgba(58, 137, 248, 0.5);
    filter: blur(150px);
    border-radius: 124px;
}

.scene-gradient-cases {
    position: absolute;
    width: 1439px;
    height: 750px;
    left: 1px;
    top: 0;
    background: linear-gradient(108.44deg, #FEDFC3 18.86%, rgba(255, 244, 235, 0) 93.35%);
    filter: blur(200px);
}

.scene-blob-cases {
    position: absolute;
    width: 260px;
    height: 248px;
    right: 0;
    bottom: 0;
    background: rgba(250, 139, 38, 0.6);
    filter: blur(150px);
    border-radius: 124px;
}

.scene-gradient-cta {
    position: absolute;
    inset: 0;
    background: linear-gradient(108.44deg, #EDE7FF 18.86%, rgba(255, 244, 235, 0) 93.35%, rgba(237, 231, 255, 0) 93.35%);
    filter: blur(200px);
}

.scene-blob-cta-left,
.scene-blob-cta-right {
    position: absolute;
    width: 232px;
    height: 248px;
    background: rgba(176, 152, 242, 0.6);
    border-radius: 124px;
    filter: blur(150px);
}

.scene-blob-cta-left {
    top: 51px;
    left: 0;
}

.scene-blob-cta-right {
    bottom: 0;
    right: 0;
}

@keyframes gradientDrift {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -20px);
    }

    100% {
        transform: translate(-30px, 15px);
    }
}

/* ==========================================================================
   NAVIGATION COMPONENTS
   ========================================================================== */

/* ===== Site Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - var(--scrollbar-width, 0px));
    height: var(--header-height);
    background: var(--white);
    z-index: 200;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-container {
    height: 100%;
    margin: 0 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 35px;
    width: auto;
}

.header-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.header-nav-link {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    padding: 6px 5px;
    margin-right: 45px;
    transition: color 0.2s ease;
    display: inline-block;
}

.header-nav-link:hover {
    color: var(--accent-orange);
}

/* Services Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0px 10px 30px rgba(32, 35, 51, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

/* Bridge to keep dropdown open when moving mouse to it */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-nav-link.active,
.dropdown-item.active,
.mobile-nav-link.active,
.mobile-dropdown-toggle.active,
.mobile-dropdown-item.active {
    color: var(--accent-orange) !important;
    opacity: 1 !important;
}

.dropdown-item.active {
    background-color: #F8F9FF;
}

.dropdown-item:hover {
    background-color: #F8F9FF;
    color: var(--accent-orange);
    padding-left: 28px;
}

.header-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 12px;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-family: var(--font-button);
}

.header-nav-cta:hover {
    background: #2d304a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 35, 51, 0.2);
}

/* ===== Side Navigation ===== */
.side-nav {
    position: fixed;
    left: 30px;
    top: var(--header-height);
    bottom: 0;
    display: flex;
    align-items: center;
    width: 202px;
    z-index: 100;
}

.side-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Increased gap to match design spacing */
}

.side-nav li {
    width: 202px;
    height: auto;
    position: relative;
}

.side-nav li a {
    text-decoration: none;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    justify-content: flex-start;
}

.nav-divider {
    display: block;
    width: 40px;
    position: relative;
    height: 10px;
    /* Stable height container to prevent flickering */
    margin-bottom: 8px;
    transition: width 0.3s ease;
}

.nav-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    /* The actual line */
    background: var(--primary-dark);
    transition: height 0.3s ease;
}

.nav-label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    /* Start slightly lower for slide-up effect */
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s;
    line-height: 1.2;
    display: block;
}

/* Show label only for the hovered item or if it's active */
.side-nav li:hover .nav-label,
.side-nav li.active .nav-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    font-weight: 700;
    /* Slide up to original position */
}

/* Active and Hover indicator styles: Longer and thicker line */
.side-nav li.active .nav-divider,
.side-nav li:hover .nav-divider {
    width: 65px;
}

.side-nav li.active .nav-divider::after,
.side-nav li:hover .nav-divider::after {
    height: 3px;
    background: var(--primary-dark);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-logo {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    z-index: 201;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.line-1 {
    width: 20px;
}

.line-2 {
    width: 12px;
    align-self: flex-end;
}

.mobile-menu-btn.active .line-1 {
    transform: translateY(3px) rotate(45deg);
    width: 20px;
}

.mobile-menu-btn.active .line-2 {
    transform: translateY(-3px) rotate(-45deg);
    width: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.close-menu-btn {
    background: var(--bg-light);
    border: none;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-link,
.mobile-menu-overlay.active .mobile-dropdown-toggle {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-item.dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 10px;
    margin-top: -5px;
    transition: transform 0.3s ease;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 5px;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 15px;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.mobile-dropdown-item {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-item {
    opacity: 0.7;
    transform: translateY(0);
}

.mobile-nav-item.dropdown.active .mobile-dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-item.dropdown.active .mobile-dropdown-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-dropdown-item:hover {
    opacity: 1 !important;
    color: var(--accent-orange);
}

/* Staggered link animation */
.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) .mobile-nav-link,
.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) .mobile-dropdown-toggle {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) .mobile-nav-link,
.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) .mobile-dropdown-toggle {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) .mobile-nav-link,
.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) .mobile-dropdown-toggle {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) .mobile-nav-link,
.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) .mobile-dropdown-toggle {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) .mobile-nav-link,
.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) .mobile-dropdown-toggle {
    transition-delay: 0.5s;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
    margin-top: 1.5rem;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px;
    text-decoration: none;
}

.mobile-email {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-dark);
    text-decoration: none;
    text-align: center;
}

/* ==========================================================================
   SHARED UI COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: capitalize;
    text-decoration: none;
    font-family: var(--font-button);
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 35, 51, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--primary-dark);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-outline:hover {
    background-color: rgba(32, 35, 51, 0.05);
}

/* Typography Fragments */
.heading-gradient {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-bottom: 0.15em;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* ===== Hero Section ===== */
.hero {
    background: transparent;
    z-index: 1;
}

.hero .content {
    padding: 120px 0;
    /* Uniform vertical breathing room */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 854px;
    z-index: 2;
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== Services Section ===== */
.services-section {
    background: transparent;
    overflow: hidden;
    /* padding: 0 !important; Inherit from .section */
    text-align: left;
}

.services-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 570px;
}

.services-heading-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.services-subheading {
    font-weight: 600;
    font-size: 25px;
    line-height: 28px;
    color: var(--primary-dark);
}

.services-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    padding-bottom: 0.1em;
    background: linear-gradient(90deg, #202333 0%, var(--accent-green) 90.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px 25px;
    width: 100%;
    align-items: start;
    /* Ensures all cards in a row start at the same top position */
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
}

.service-card-desc {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-transform: capitalize;
}

.services-right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.services-image {
    width: 100%;
    max-width: 626px;
    object-fit: contain;
}

/* ===== Clients Section ===== */
.clients-section {
    background: transparent;
    /* padding: 0; Inherit from .section */
    z-index: 1;
    text-align: left;
}

.clients-container {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 1265px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.clients-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.clients-image {
    max-width: 603px;
    width: 100%;
    object-fit: contain;
}

.clients-right {
    flex: 1;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clients-heading-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clients-subheading {
    font-weight: 600;
    font-size: 25px;
    color: var(--primary-dark);
}

.clients-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    background: linear-gradient(90deg, #202333 0%, var(--accent-purple) 90.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: .23rem;
}

.clients-desc {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    max-width: 533px;
}

.clients-scenarios {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.clients-scenarios-title {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
}

.clients-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.clients-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
}

.clients-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--primary-dark);
    border-radius: 50%;
}

/* ===== Why Us Section ===== */
.why-section {
    background: transparent;
    /* padding: 0; Inherit from .section */
    z-index: 1;
    text-align: left;
}

.why-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1131px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.why-left {
    flex: 1;
    max-width: 570px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-heading-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-subheading {
    font-weight: 600;
    font-size: 25px;
    color: var(--primary-dark);
}

.why-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 45px;
    background: linear-gradient(90deg, #202333 0%, var(--accent-blue) 90.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 6px;
}

.why-desc {
    display: flex;
    flex-direction: column;
    max-width: 533px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-dark);
}

.why-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: #202333;
    border-radius: 50%;
}

.why-values {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-values-title {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
}

.why-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.why-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--primary-dark);
    height: 34px;
}

.why-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-image {
    max-width: 503px;
    width: 100%;
    object-fit: contain;
}

/* ===== Case Studies Section ===== */
.cases-section {
    background: transparent;
    /* padding: 0; Inherit from .section */
    z-index: 1;
    text-align: left;
}

.cases-section.slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-color: transparent;
    scroll-snap-align: start;
}

.team-hero-bg {
    position: absolute;
    width: 1800px;
    height: 1000px;
    left: calc(50% - 1800px/2);
    top: -100px;
    background: linear-gradient(108.44deg, rgba(237, 231, 255, 1) 18.86%, rgba(255, 244, 235, 0) 93.35%);
    filter: blur(300px);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.cases-section.slider-section .cases-dots .cases-dot {
    background: rgba(176, 152, 242, 0.3);
}

.cases-section.slider-section .cases-dots .cases-dot.active {
    background: #B098F2;
}


.cases-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.case-card {
    width: 100%;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 14px 30px rgba(37, 61, 73, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.case-card-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.cases-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cases-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.case-card-inner {
    display: flex;
    min-height: 452px;
    width: 100%;
    flex: 0 0 100%;
}

.case-text {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px 60px 65px;
    z-index: 1;
}

.case-company {
    font-weight: 600;
    font-size: 14px;
    color: #282C3A;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.case-title {
    font-weight: 800;
    font-size: 22px;
    line-height: 130%;
    color: #221C1C;
    margin-bottom: 20px;
}

.case-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #221C1C;
    margin-bottom: 30px;
    max-width: 437px;
}


.case-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px 0 0;
    overflow: hidden;
}

.case-image {
    max-width: 553px;
    width: 100%;
    object-fit: contain;
}

.cases-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.cases-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(250, 139, 38, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.cases-dot.active {
    background: var(--accent-orange);
}

/* ===== CTA Section ===== */
.cta-section {
    background: transparent;
    /* padding: 0 70px; Inherit from .section */
    z-index: 1;
    text-align: left;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    padding: 120px 0;
}

.cta-illustration {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.cta-image {
    width: 426px;
    transform: scaleX(-1);
    filter: drop-shadow(0 10px 30px rgba(176, 152, 242, 0.25));
}

.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 570px;
}

.cta-heading {
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient-purple {
    background: linear-gradient(90deg, #202333 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(32, 35, 51, 0.7);
    max-width: 520px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.cta-buttons .btn {
    padding: 12px 24px;
    min-height: 45px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.cta-buttons .btn-primary {
    box-shadow: 0 4px 16px rgba(32, 35, 51, 0.2);
    text-decoration: none;
}

.cta-buttons .btn-primary:hover {
    background: #2d3048;
    box-shadow: 0 6px 24px rgba(32, 35, 51, 0.35);
}

.cta-buttons .btn-outline {
    min-width: 179px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    position: relative;
    background: var(--white);
    min-height: 468px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin-top: 0;
    scroll-snap-align: end;
}

.footer-bg-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: url(../assets/images/map.svg) no-repeat center;
    background-size: contain;
    opacity: 1;
    background-color: white;
    z-index: 1;
    pointer-events: none;
}

.footer-main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 16px;
    z-index: 1;
}

.footer-logo {
    height: 52px;
    width: auto;
}

.footer-email {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    color: #202333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.footer-email:hover {
    color: #FA8B26;
}

.footer-bottom {
    position: relative;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #F6F6F6;
    z-index: 1;
}

.footer-bottom p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #202333;
    margin: 0;
}

/* ===== Opportunity Section ===== */
.opportunity-section {
    background: transparent;
    text-align: left;
    /* padding: 0 !important; Inherit from .section */
    /* height: auto !important; Use 100vh from .section */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.opportunity-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.opportunity-left {
    flex: 1;
    max-width: 570px;
}

.opportunity-heading-group {
    margin-bottom: 40px;
}

.opportunity-subheading {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.opportunity-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.text-gradient-teal {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.required-star {
    color: #FF4D4D;
    font-weight: bold;
    margin-right: 4px;
}

.opportunity-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: 0.9;
}

.opportunity-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(32, 35, 51, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    font-family: inherit;
    color: var(--primary-dark);
    transition: border-color 0.3s ease;
}

.form-group input,
.form-group select {
    height: 48px;
    font-size: 16px;
}

.form-group textarea {
    font-size: 16px;
    height: 100px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.opportunity-section .form-group input:focus,
.opportunity-section .form-group input:active,
.opportunity-section .form-group textarea:focus,
.opportunity-section .form-group textarea:active,
.opportunity-section .form-group select:focus,
.opportunity-section .form-group select:active {
    outline: none;
    border: 2px solid #000;
    font-weight: bold;
    color: #000;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
    cursor: pointer;
}

.dropdown-selected {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(32, 35, 51, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-dropdown:hover .dropdown-selected {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--accent-green);
}

.custom-dropdown.active .dropdown-selected {
    border-color: var(--accent-green);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #252839;
    /* Slightly lighter than the button primary color */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--white);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-option:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
}

.dropdown-option.selected {
    background: rgba(52, 201, 160, 0.2);
    color: var(--accent-green);
}

.dropdown-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23202333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.file-upload {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    border: 1px dashed var(--accent-green);
    border-radius: 10px;
    background: rgba(52, 201, 160, 0.08);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
    transition: background 0.3s ease;
}

.file-label:hover {
    background: rgba(52, 201, 160, 0.15);
}

.file-label.drag-over {
    background: rgba(52, 201, 160, 0.2);
    border-color: var(--accent-green);
    border-style: solid;
    transform: scale(1.01);
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border: 1px solid rgba(52, 201, 160, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.file-icon {
    color: var(--accent-green);
    flex-shrink: 0;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.file-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.action-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}

.edit-btn {
    color: var(--primary-dark);
    background: rgba(32, 35, 51, 0.05);
}

.edit-btn:hover {
    background: rgba(32, 35, 51, 0.1);
    color: var(--accent-purple);
}

.delete-btn {
    color: #FF4D4D;
    background: rgba(255, 77, 77, 0.05);
}

.delete-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    transform: scale(1.05);
}

.form-opt-in {
    margin-top: 10px;
}

.toggle-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.opt-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 22px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #DADADA;
    transition: .4s;
    border-radius: 22px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background-color: var(--accent-green);
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(22px);
}

.submit-btn {
    width: 180px;
    height: 50px;
    justify-content: center;
    border-radius: 12px;
    margin-top: 20px;
}

.opportunity-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.opportunity-image {
    max-width: 100%;
    height: auto;
}

/* Background scene layers */
.scene-gradient-opportunity {
    position: absolute;
    width: 1439px;
    height: 750px;
    left: 1px;
    top: 0;
    background: linear-gradient(108.44deg, #E5FCF6 18.86%, rgba(255, 244, 235, 0) 93.35%, rgba(209, 249, 238, 0) 93.35%);
    filter: blur(150px);
}

.scene-blob-opportunity {
    position: absolute;
    width: 266px;
    height: 248px;
    left: 1px;
    bottom: 0;
    background: rgba(52, 201, 160, 0.4);
    filter: blur(150px);
    border-radius: 124px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet & Smaller Desktops (Up to 1200px) */
@media (max-width: 1200px) {
    .header-container {
        margin: 0 60px;
    }

    .side-nav {
        left: 20px;
        width: 180px;
    }

    .heading-gradient {
        font-size: 3rem;
    }
}

/* iPad / Tablet (Large & Small) */
@media (max-width: 1024px) {
    .site-header {
        height: 70px;
    }

    .header-container {
        margin: 0 40px;
    }

    .header-nav-link {
        margin-right: 25px;
        font-size: 16px;
    }

    .side-nav {
        display: none;
    }

    .section {
        padding: var(--header-height) 0 0 0;
        height: auto;
        min-height: 100vh;
        scroll-snap-align: none;
    }

    .snap-container {
        scroll-snap-type: none;
        height: auto;
        overflow-y: visible;
    }

    body {
        overflow: auto;
    }




    .hero .content {
        max-width: 100%;
        text-align: center;
    }

    .heading-gradient {
        font-size: 2.8rem;
    }

    .services-container,
    .clients-container,
    .why-container,
    .cta-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
        gap: 60px;
    }

    .services-left,
    .clients-right,
    .why-left,
    .cta-content {
        flex: 1 1 500px;
        max-width: 100%;
    }

    .services-right,
    .clients-left,
    .why-right,
    .cta-illustration {
        flex: 1 1 400px;
        display: flex;
        justify-content: center;
    }

    .case-card-inner {
        flex-direction: row;
    }

    .case-text {
        padding: 60px 40px;
    }

    .opportunity-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: left;
        gap: 60px;
    }

    .opportunity-left {
        flex: 1 1 500px;
        max-width: 100%;
    }

    .opportunity-right {
        flex: 1 1 400px;
        display: flex;
        justify-content: center;
    }

    .opportunity-image {
        width: 70%;
    }
}

/* Smaller Tablets & Large Phones (Up to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .services-container,
    .clients-container,
    .why-container,
    .cases-container,
    .cta-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .services-right,
    .why-right,
    .cta-illustration {
        order: -1;
        width: 100%;
    }
}

/* Mobile Devices (Portrait & Landscape) */
@media (max-width: 767px) {
    .site-header {
        height: 70px;
    }

    .footer {
        min-height: 350px;
        margin-top: 60px;
    }

    .footer-logo {
        height: 38px;
    }

    .footer-email {
        font-size: 16px;
    }

    .footer-bg-map {
        background-size: cover;
        opacity: 0.1;
    }

    .header-container {
        margin: 0 15px;
        height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .section {
        padding: var(--header-height) 15px 0 15px;
    }

    .why-list li {
        text-align: left;
    }



    .heading-gradient {
        font-size: 2rem;
        line-height: normal;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .cta-group,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services-container,
    .clients-container,
    .why-container,
    .cases-container,
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 0;
    }

    .services-section {
        padding: 20px 15px !important;
    }

    .services-image {
        width: 80%;
        max-width: 100%;
    }

    .services-left,
    .clients-right,
    .why-left,
    .cta-content {
        align-items: center;
        flex: 1 1 auto;
    }

    .services-heading-group,
    .clients-heading-group,
    .why-heading-group {
        align-items: center;
    }

    .services-title,
    .clients-title,
    .why-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: normal;
    }

    .section h3 {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        text-align: center;
        align-items: center;
    }

    .services-right,
    .clients-left,
    .why-right,
    .case-visual,
    .cta-illustration {
        order: -1;
        display: flex;
        justify-content: center;
        width: 100%;
        flex: none;
    }

    .clients-right {
        order: 0;
    }

    .clients-list {
        display: inline-flex;
        text-align: left;
        flex-direction: column;
    }

    .why-desc p {
        font-size: 16px;
    }

    .why-tags,
    .why-tags-row {
        justify-content: center;
    }

    .case-card-inner {
        flex-direction: column;
    }

    .case-visual {
        padding: 20px 15px 0 15px;
    }

    .case-text {
        padding: 16px 15px 40px;
        text-align: center;
        align-items: center;
    }

    .cta-image {
        max-width: 100%;
        margin: 0 auto;
        width: 70%;
    }

    .cta-heading {
        font-size: 2rem;
        line-height: normal;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .footer {
        padding: 60px 0 0 0;
        margin-top: 0px;
        min-height: auto;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        font-size: 0.75rem;
        padding: 12px 18px;

    }

    .footer-bg-map {
        background-size: 200% auto;
    }

    .footer-main {
        flex-grow: inherit;
        gap: 10px
    }

    .why-image {
        max-width: 100%;
        width: 70%;
    }

    .opportunity-section {
        padding: 60px 15px !important;
    }

    .opportunity-container {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0 100px;
    }

    .opportunity-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: normal;
    }

    .opportunity-subheading {
        font-size: 18px;
        text-align: center;
    }

    .opportunity-desc {
        font-size: 1rem;
        text-align: center;
    }

    .opportunity-heading-group {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .submit-btn {
        width: 100%;
    }

    .opportunity-right {
        order: -1;
        flex: inherit;
    }

    .opportunity-image {
        width: 100%;
    }
}

/* Very Small Devices */
@media screen and (max-width: 575px) {
    .why-tag {
        font-size: 12px;
    }
}

/* Global Hero Vector Background Patterns (Themed) */
.hero-vector {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: auto;
    height: auto;
    opacity: 1;
    /* Full strength */
    mix-blend-mode: multiply;
    /* Rich color integration */
}

/* Green Theme: Staff & Digital Marketing */
.staff-page .hero-vector,
.digital-marketing-page .hero-vector {
    filter: invert(48%) sepia(79%) saturate(541%) hue-rotate(114deg) brightness(95%) contrast(92%);
}

/* Orange Theme: AI & ML */
.ai-ml-page .hero-vector {
    filter: invert(65%) sepia(85%) saturate(1500%) hue-rotate(345deg) brightness(101%) contrast(97%);
}

/* Blue Theme: Cloud & DevOps */
.cloud-dev-page .hero-vector {
    filter: invert(45%) sepia(95%) saturate(2500%) hue-rotate(198deg) brightness(101%) contrast(96%);
}

/* Purple Theme: Web & Mobile */
.web-mobile-page .hero-vector {
    filter: invert(60%) sepia(40%) saturate(2000%) hue-rotate(240deg) brightness(100%) contrast(95%);
}

.left-vector {
    left: 0;
    top: 0;
}

.right-vector {
    right: 0;
    top: 0;
}