/* ============================================================
   MACCANSOFT WEBSITE - COMPLETE STYLE SHEET
   Based on Gencyo Agency Template
   ============================================================ */

/* ----------------------------------------------------------
   0. RESET & BASE
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #4388a7; /* New Theme Blue/Teal */
    --orange-dark: #4388a7; /* Darker version */
    --white: #fff;
    --text-soft: rgba(255,255,255,0.7); /* The nice soft color from nav links */
    --dark: #000;
    --dark2: #000;
    --dark3: #000;
    --gray: #999;
    --border: rgba(67, 136, 167, 0.15); /* Updated border to match theme */
    --font: 'Urbanist', sans-serif;
    --font-heading: 'Funnel Display', sans-serif;
    --max-w: 1340px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

html { 
    /* Lenis handles smooth scrolling, so we disable native behavior for consistency */
    scroll-behavior: auto !important; 
    scroll-padding-top: 80px; 
}

#cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #4388a7;
    box-shadow: 0 0 10px rgba(67, 136, 167, 0.4);
    top: 0; left: 0;
    pointer-events: none;
}

body {
    font-family: var(--font);
    background-color: var(--dark);
    color: var(--text-soft);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ----------------------------------------------------------
   1. CUSTOM CURSOR
---------------------------------------------------------- */


/* ----------------------------------------------------------
   2. SCROLL PROGRESS
---------------------------------------------------------- */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: var(--orange);
    z-index: 9999;
    transition: width .1s linear;
}

/* ----------------------------------------------------------
   3. UTILITY
---------------------------------------------------------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
/* ============================================================
   2. GLOBAL SECTION SPACING SYSTEM
   (Control individual gaps between sections here)
   ============================================================ */

/* Hero Section Spacing */
.spacing-hero { 
    padding-top: 150px; 
    padding-bottom: 60px; 
}

/* Features Strip Spacing */
.spacing-features { 
    padding-top: 120px; 
    padding-bottom: 80px; 
}

/* About Section Spacing */
.spacing-about { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Services Section Spacing */
.spacing-services { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Journey / Stats Spacing */
.spacing-journey { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Projects / Featured Work Spacing */
.spacing-projects { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Marquee / Animations Spacing */
.spacing-marquees { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Working Process Spacing */
.spacing-working { 
    padding-top: 50px; 
    padding-bottom: 100px;  
}

/* Parallax Image Spacing */
.spacing-parallax {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* Team Section Spacing */
.spacing-team { 
    padding-top: 100px; 
    padding-bottom: 100px; 
}

/* Clients / Logos Spacing */
.spacing-clients { 
    padding-top: 50px; 
    padding-bottom: 100px; 
}

/* FAQ Section Spacing */
.spacing-faq { 
    padding-top: 50px; 
    padding-bottom: 100px; 
}

/* Contact Spacing */
.spacing-contact { 
    padding-top: 50px; 
    padding-bottom: 100px; 
}

/* Contact Section Spacing */
.spacing-contact { 
    padding-top: 50px; 
    padding-bottom: 100px; 
}

/* Footer Spacing */
.spacing-footer { 
    padding-top: 50px; 
    padding-bottom: 60px; 
}

/* Default section padding helper */
.section-padding { padding: 50px 0; }
.text-orange { color: var(--orange); }
.center { text-align: center; }

/* Logo */
.logo-img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}
.sidebar-logo .logo-img { height: 50px; }
.footer-logo-text .logo-img { height: 50px; }
.contact-logo .logo-img { height: 50px; margin-bottom: 20px; }

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 136, 167,0.12);
    border: 1px solid rgba(67, 136, 167,0.3);
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.badge-star { 
    width: 14px; 
    height: 14px; 
    /* Teal transform #4388a7 */
    filter: brightness(0) saturate(100%) invert(51%) sepia(13%) saturate(1831%) hue-rotate(159deg) brightness(91%) contrast(85%);
}

/* Section Title */
.section-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-soft);
    margin-bottom: 24px;
}

/* Gencyo Cinematic Motion */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
}

.parallax-bg > .container {
    position: relative;
    z-index: 2;
}

/* Image Hover Zoom Utility */
.img-zoom-wrap {
    overflow: hidden;
    border-radius: 20px;
}
.img-zoom-wrap img {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.img-zoom-wrap:hover img {
    transform: scale(1.1);
}

/* Base Hover Effects */
.btn-premium, .btn-hero-discover, .btn-discover {
    transition: all 0.3s ease;
}
.btn-premium:hover, .btn-hero-discover:hover, .btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 136, 167, 0.3);
}
.divert-left img {
    transform: translateX(30%) scale(1.2);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.divert-left.active img {
    transform: translateX(0) scale(1);
}

/* Text Reveal Slide-Down */
.text-reveal {
    opacity: 0;
    transform: translateY(-50px) skewY(2deg);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: blur(5px);
}

.text-reveal.active {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
}

/* New Premium Mask Reveal for Text */
.reveal-mask {
    overflow: hidden;
    display: block;
    position: relative;
}
.reveal-mask-inner {
    display: block;
    transform: translateY(110%);
    /* Removed transition from here, will use GSAP or .active class toggle */
}
.reveal-mask.active .reveal-mask-inner {
    transform: translateY(0);
    transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}
/* Disable CSS transition for hero title so GSAP has full control */
.hero-main-title .reveal-mask-inner {
    transition: none !important;
}

.working-image-wrap.full-bleed {
    width: 100%;
    height: 100%;
    margin-top: 30px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-process-img-full {
    width: 100%;
    height: 100%;
    min-height: 600px; /* Ensure it spans the full vertical space of the steps */
    object-fit: cover; 
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s ease;
}

.main-process-img-full:hover {
    transform: scale(1.02);
}

/* Section Header Centered */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ----------------------------------------------------------
   4. BUTTONS
---------------------------------------------------------- */
.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-discover:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--text-soft);
}
.btn-discover .icon-circle {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}
.btn-discover:hover .icon-circle { transform: rotate(45deg); }
.btn-arrow { width: 16px; }

.btn-outline-discover {
    border-color: var(--orange);
    color: var(--orange);
}
.btn-outline-discover:hover { background: var(--orange); color: var(--text-soft); }

.btn-letstalk {
    display: inline-block;
    padding: 11px 28px;
    background: var(--orange);
    color: var(--text-soft);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}
.btn-letstalk:hover { background: var(--orange-dark); }

/* Sidebar styles removed as per user request */


/* ----------------------------------------------------------
   6. HEADER (Ultra Modern Pill Style)
---------------------------------------------------------- */
.header {
    position: fixed;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 98%;
    max-width: 1920px;
    z-index: 7000;
    padding: 0 10px;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
    border: 1px solid transparent;
}
.header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    padding: 0 40px;
    transition: height 0.4s ease;
}
.header.scrolled .header-inner { height: 75px; }

/* Header Nav */
.header-nav {
    margin-right: auto;
    margin-left: 4vw; /* Increased spacing from logo */
}
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-nav ul li a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: all 0.4s ease;
}
.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: var(--text-soft);
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* Nav Link Hover Dot */
.header-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px var(--orange);
}
.header-nav ul li a:hover::before,
.header-nav ul li a.active::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Header Right Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

/* Glowing Search Icon */
.search-icon-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    color: var(--text-soft);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.search-icon-circle:hover { 
    background: var(--white); 
    color: var(--dark);
    transform: rotate(90deg) scale(1.1); 
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Premium Let's Talk Button */
.btn-premium {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(67, 136, 167, 0.15); /* Glass Background with Blue tint */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-soft);
    padding: 10px 10px 10px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(67, 136, 167, 0.25);
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-premium:hover::before { left: 100%; }
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 136, 167, 0.4);
    background: var(--orange); /* Solid Blue on Hover */
    border-color: var(--orange);
    color: #fff;
}
.btn-premium .btn-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.4s ease;
}
.btn-premium:hover .btn-icon { 
    background: #fff;
    color: var(--orange);
}

/* Hamburger styles removed as per user request */

/* Floating Socials (Middle Right) */
.floating-socials {
    position: fixed;
    right: 25px;
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}
.floating-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.floating-socials a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(67, 136, 167, 0.4);
}


/* ----------------------------------------------------------
/* ----------------------------------------------------------
   7. HERO PREMIUM (Matched Target Design)
---------------------------------------------------------- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000; /* Pure black as requested */
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: hue-rotate(185deg) brightness(0.5); /* Matching our new Teal theme */
}
.hero-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,11,11,0.6) 0%, transparent 100%);
    z-index: 2;
}
#binary-particles-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.binary-code {
    position: absolute;
    color: #ced4da; /* Premium Ash Grey */
    font-family: monospace;
    font-size: clamp(12px, 1vw, 22px); /* Restored original smaller size */
    opacity: 0.1;
    animation: binaryFall 12s linear forwards;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 1; /* Keep it behind text but on the background */
}
@keyframes binaryFall {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    15% {
        opacity: 0.35; /* Increased opacity for better visibility */
    }
    85% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(105vh);
        opacity: 0;
    }
}
.hero-float-left {
    position: absolute;
    left: -5%;
    top: 15%;
    width: 40vw;
    max-width: 550px;
    z-index: 3;
    opacity: 0.95;
    /* #4388a7 Teal Theme matching User Screenshot */
    filter: brightness(0.8) sepia(1) hue-rotate(185deg) saturate(3) contrast(1.1);
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform;
}

.hero-glow-blur {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.25;
    z-index: 2;
    transform: translate(-30%, -20%);
}
.hero-float-right {
    position: absolute;
    right: 2%;
    bottom: 100px;
    width: 25vw;
    max-width: 320px;
    z-index: 3;
    opacity: 0.4;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.hero-spiral-right {
    position: absolute;
    right: -1%;
    bottom: 1%;
    width: 20vw;
    max-width: 680px;
    z-index: 4;
    /* #4388a7 Teal Theme matching User Screenshot */
    filter: brightness(0.9) sepia(1) hue-rotate(185deg) saturate(3) contrast(1.2);
    /* animation: spin 70s linear infinite; 
    mix-blend-mode: screen; 
    clip-path: circle(48%); 
    pointer-events: none; */
}
.subtle-float { animation: float-subtle 8s ease-in-out infinite; }
@keyframes float-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Container */
.hero-premium-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-left: 18vw; /* Shifted text more to the right */
}

/* Typography */
.hero-main-title {
    font-size: clamp(48px, 6.8vw, 104px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-soft);
    max-width: 900px;
    margin-bottom: 60px;
    min-height: 2.1em; /* Prevent layout jump */
}
.type-container {
    display: inline-block;
    vertical-align: top;
}
.type-container::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--orange);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.7s step-end infinite;
}
.type-container.done::after {
    display: none;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.inline-relative {
    position: relative;
    display: inline-block;
    color: var(--text-soft);
}
.highlight-svg {
    position: absolute;
    bottom: -2px; /* Adjust according to SVG strokes */
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    animation: dash-draw 2s ease-out forwards;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
@keyframes dash-draw {
    to { stroke-dashoffset: 0; }
}

/* Bottom Grid Layout */
.hero-bottom-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 900px;
    margin-top: -30px; /* Moved up as requested */
}

/* Rotating SVG Circle */
.hero-rotating-badge {
    position: relative;
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}
.rotating-text {
    width: 100%;
    height: 100%;
    animation: spin 15s linear infinite;
}
.circle-text-path {
    font-size: 16px;
    font-family: inherit;
    font-weight: 700;
    fill: var(--text-soft);
    letter-spacing: 5px;
    text-transform: uppercase;
}
.center-arrow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(67, 136, 167, 0.2); /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-left: 5px; 
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(67, 136, 167, 0.2);
}
.center-arrow:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--orange); /* Solid Blue on Hover */
    box-shadow: 0 0 40px rgba(67, 136, 167, 0.6);
}

/* Describe Area */
.hero-desc-area p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 30px;
    max-width: 500px;
}

/* btn-hero-discover */
.btn-hero-discover {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(67, 136, 167, 0.15); /* Glass effect with Blue */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-soft);
    padding: 8px 8px 8px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(67, 136, 167, 0.15);
}
.btn-hero-discover:hover {
    background: var(--orange); /* Solid Blue on Hover */
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(67, 136, 167, 0.4);
    color: #fff;
}
.btn-hero-discover .btn-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.1); 
    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20%;
    font-size: 16px;
    transition: all 0.4s ease;
}

/* ----------------------------------------------------------
   8.5 SMALL MARQUEE (Aesthetics)
---------------------------------------------------------- */
.small-marquee {
    background: var(--dark); /* Matching site background as requested */
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.small-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.small-marquee-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}
.small-marquee-group span {
    color: #4388a7 !important; /* Theme Blue forced */
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-urbanist);
}
.marquee-star {
    color: var(--orange);
    font-size: 11px; /* Slightly refined size for better branding */
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.btn-hero-discover:hover .btn-icon {
    background: var(--dark);
    color: var(--text-soft);
}

/* ----------------------------------------------------------
   8. PREMIUM FEATURES STRIP (Target Match)
---------------------------------------------------------- */
.features-premium {
    background: #000;
    position: relative;
    padding: 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.features-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.feat-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: gap 0.3s;
}
.feat-read-more:hover {
    gap: 12px;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 5;
}

.feature-card-premium {
    padding: 85px 45px;
    background: #000 !important;
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 85%;
    width: 1px;
    background-image: 
        linear-gradient(to bottom, #4388a7 50%, transparent 50%),
        linear-gradient(#4388a7, #4388a7),
        linear-gradient(#4388a7, #4388a7);
    background-size: 1px 12px, 4px 2px, 4px 2px;
    background-repeat: repeat-y, no-repeat, no-repeat;
    background-position: center top, center top, center bottom;
    z-index: 10;
    opacity: 0.35;
}

.feature-card-premium:first-child::before {
    display: none;
}

.features-grid-premium::after {
    display: none;
}

/* Falling Lines for Hero Section */
.hero-falling-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    padding: 0 5%;
}

.hero-falling-lines .line {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-falling-lines .line::after {
    content: '';
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 18%;
    background: linear-gradient(to bottom, transparent, #4388a7, transparent);
    animation: drop 12s linear infinite;
}

.hero-falling-lines .line:nth-child(2)::after { animation-delay: 2s; animation-duration: 8s; }
.hero-falling-lines .line:nth-child(3)::after { animation-delay: 5s; animation-duration: 15s; }
.hero-falling-lines .line:nth-child(4)::after { animation-delay: 1.5s; animation-duration: 10s; }
.hero-falling-lines .line:nth-child(5)::after { animation-delay: 8s; animation-duration: 11s; }

@keyframes drop {
    0% { top: -20%; }
    100% { top: 120%; }
}

.feature-card-premium:last-child {
    border-right: none;
}

/* Glass Reveal Background */


.feature-card-premium:last-child {
    border-right: none;
}

.feature-card-premium:hover {
    border-color: #4388a7;
}

.feat-icon-svg {
    width: 85px;
    height: 85px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: iconBob 4s ease-in-out infinite;
}

.feature-card-premium:nth-child(2) .feat-icon-svg { animation-delay: 1s; }
.feature-card-premium:nth-child(3) .feat-icon-svg { animation-delay: 2s; }

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feat-icon-svg svg {
    width: 100%;
    height: 100%;
    stroke: var(--orange);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-card-premium:hover .feat-icon-svg svg {
    transform: scale(1.15) rotate(10deg);
}

.feature-card-premium h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-soft);
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
}

.feature-card-premium p {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    margin-bottom: 45px;
    position: relative;
    z-index: 3;
}

.feat-arrow {
    width: 42px;
    height: 42px;
    color: var(--orange);
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-card-premium:hover .feat-arrow {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.1) rotate(45deg);
}

.feat-arrow i {
    transition: transform 0.4s ease;
}

.feature-card-premium:hover .feat-arrow i {
    transform: rotate(-45deg) scale(1.1); /* Maintaining the upright point while scaling */
}

/* ----------------------------------------------------------
   9. ABOUT SECTION
---------------------------------------------------------- */
.about { background: var(--dark); padding: 0px; overflow: hidden; position: relative; }
.about-full-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: center;
    width: 92%;
    min-height: auto;
    height: auto;
}
.about-images { position: relative; height: 620px; overflow: hidden; }
.about-img-main {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: left center;
}
.about-headline-elite {
    font-family: 'Funnel Display', sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.headline-text-white { 
    color: #ffffff !important; 
    text-transform: none; 
}

.headline-text-muted { 
    color: rgba(255, 255, 255, 0.4) !important; 
    text-transform: none; 
}

.text-accent-blue { 
    color: #4388a7 !important; 
    -webkit-text-fill-color: #4388a7 !important; 
    background: none !important; 
}
.about-content { 
    padding: 60px 10% 60px 100px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-desc { color: var(--text-soft); font-size: 15px; text-align: justify; margin-bottom: 32px; }

.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-soft);

}
.check-item i { color: var(--orange); font-size: 18px; }

.about-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
}
.about-stat-img img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.about-stat-box { flex: 1; }
.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.stat-suffix {
    font-size: 32px;
    font-weight: 900;
    color: var(--orange);
}
.about-stat-box p { color: var(--text-soft); font-size: 14px; margin-top: 6px; }

/* ----------------------------------------------------------
   9.5 OUR JOURNEY SECTION
---------------------------------------------------------- */
.stats-container-large {
    padding: 70px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

/* Container for Our Journey Heading */
.services-header-elite {
    text-align: left;
    margin-bottom: 60px;
}

.stats-headline-elite {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(40px, 8vw, 85px);
    letter-spacing: 2px;
    line-height: 0.95;
    margin: 0 auto 30px;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 20px;
}

.journey-paragraph-elite {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.stats-grid-wrapper-elite {
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.stats-grid-elite {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card-premium {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-premium:hover {
    background: rgba(25, 25, 25, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-card-label {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}

.stat-card-info-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.stat-card-value {
    font-size: 85px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.stat-card-subtext {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    text-align: right;
    max-width: 140px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    padding-bottom: 5px;
}

/* Watermarks */
.stat-watermark {
    position: absolute;
    opacity: 0.15;
    filter: grayscale(1);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.6s ease;
}

.stat-card-premium:hover .stat-watermark {
    opacity: 0.22;
    transform: scale(1.08) rotate(-2deg);
}

.watermark-cover { left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; }
.watermark-side { right: -30px; bottom: 0; width: 430px; mix-blend-mode: plus-lighter; }

/* Global Ornament (Floating Cubes) */
.stat-global-ornament {
    position: absolute;
    top: 100px;
    right: -5%;
    z-index: 1;
    pointer-events: none;
}

.stat-global-ornament img {
    width: 400px;
    opacity: 0.85;
    animation: slowRotateStat 30s linear infinite;
}

@keyframes slowRotateStat {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Specific reveal for stats */
.stats-container-large .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.stats-container-large .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive stats */
@media (max-width: 1200px) {
    .stats-grid-elite { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stats-grid-elite { grid-template-columns: 1fr; }
    .stat-card-premium { min-height: auto; }
}
.services {
    position: relative;
    background-color: #080808;
    overflow: visible; /* Using clip-path instead of overflow:hidden */
    clip-path: inset(0); /* High-end fixed background trick */
    color: var(--text-soft); 
    z-index: 1;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Deep dark overlay */
    z-index: 2;
    pointer-events: none;
}
.services-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}
.services .container {
    position: relative;
    z-index: 10;
}
/* ----------------------------------------------------------
   9.9 SERVICES ACCORDION (NEW DESIGN)
---------------------------------------------------------- */
.services-accordion {
    width: 100%;
    margin-top: 20px;
}

.accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 35px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-header .item-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin-right: 40px;
    transition: all 0.3s ease;
}

.accordion-header .item-title {
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.accordion-header .item-arrow {
    margin-left: auto;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.accordion-header .item-arrow svg {
    width: 18px;
    height: 18px;
    transition: transform 0.5s ease;
}

/* Accordion Body */
.accordion-body {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 50px;
    padding-bottom: 0;
}

.accordion-item.active .accordion-body {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    padding-bottom: 60px;
}

.accordion-item.active .accordion-header .item-arrow {
    background: var(--orange);
    border-color: var(--orange);
}

.accordion-item.active .accordion-header .item-arrow svg {
    transform: rotate(45deg);
}

/* Left Image Column with Glassmorphism */
.body-left {
    flex: 0 0 50%;
    height: 400px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.body-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.55;
    transition: all 1.5s ease;
}

.accordion-item.active .body-left img {
    transform: scale(1.1);
}

/* Body Right Text Column */
.body-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
}

.body-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.body-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.body-bullets li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    transition: all 0.3s ease;
}

.body-bullets li i {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
}

.body-bullets li:hover {
    color: #fff;
    transform: translateX(10px);
}

/* View All Services Button */
.btn-all-services {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: #fff;
    padding: 10px 10px 10px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-all-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 136, 167, 0.4);
    background: #fff;
    color: #000;
}

.btn-all-services .arrow-circle {
    width: 38px;
    height: 38px;
    background: #fff;
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-all-services:hover .arrow-circle {
    background: var(--orange);
    color: #fff;
}

@media (max-width: 991px) {
    .accordion-body {
        flex-direction: column;
        gap: 30px;
    }
    .body-left {
        flex: 0 0 100%;
        height: 300px;
    }
}

/* ----------------------------------------------------------
   10. FEATURED WORK (NEW DESIGN)
---------------------------------------------------------- */
.projects-section {
    background: #000;
    padding: 100px 0;
}

.work-header-elite {
    display: block;
    text-align: center;
    margin-bottom: 80px;
}

.work-tag-elite {
    display: inline-block;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
}

.work-title-elite {
    font-size: clamp(40px, 8vw, 70px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
}

.btn-all-work {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.btn-all-work:hover {
    color: var(--orange);
}

/* Staggered Grid */
.work-grid-elite {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 40px;
}

/* Project Card with Glassmorphism */
.work-card-elite {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-small { grid-column: span 4; }
.card-large { grid-column: span 6; }

@media (max-width: 991px) {
    .card-small, .card-large { grid-column: span 10; height: 400px; }
    .work-grid-elite { gap: 25px; }
}

.work-card-elite .card-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.work-card-elite .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.work-card-elite:hover .card-image img {
    transform: scale(1.1);
}

/* Scrim Overlay */
.work-card-elite .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: all 0.5s ease;
}

.work-card-elite .card-cat {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.project-item .cat {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.project-item .cat span {
    transition: color 0.3s;
}

.project-item:hover .cat span {
    color: var(--text-soft);
}

/* ----------------------------------------------------------
   12. MARQUEE TICKER (Hero Small)
---------------------------------------------------------- */
.small-marquee {
    background: #111;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.small-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-slide 15s linear infinite;
}
.small-marquee-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    white-space: nowrap;
}
.small-marquee-group span {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.small-marquee-group .marquee-plane { color: var(--orange); font-size: 14px; transform: rotate(45deg); }

/* ----------------------------------------------------------
   12b. MARQUEE CROSSED (Tilted)
---------------------------------------------------------- */
.marquee-crossed-section { overflow: hidden; position: relative; padding: 0; min-height: 180px; display: flex; align-items: center; }
.marquee-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }

.marquee-bar {
    position: absolute;
    width: 120vw;
    left: -10vw;
    z-index: 1;
}
.marquee-bg-dark { background: #111; padding: 22px 0; z-index: 2; transform-origin: center; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.marquee-bg-orange { background: rgba(67, 136, 167,0.8); padding: 22px 0; z-index: 1; transform-origin: center; backdrop-filter: blur(8px); }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-slide 25s linear infinite;
}
.marquee-reverse { animation-direction: reverse; }
.marquee-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    white-space: nowrap;
}
.marquee-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee-divider {
    color: #fff;
    font-size: 24px;
    opacity: 0.8;
}
.marquee-orange .marquee-text { color: var(--text-soft); }
.marquee-orange .marquee-divider { color: #fff; }

/* Removed old team swiper styles */


/* Client Label */
.client-label-box {
    margin-top: 100px;
    margin-bottom: -24px; /* Move down to sit ON the blue line */
    position: relative;
    z-index: 10;
}
.client-small-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(67, 136, 167, 0.1);
    color: var(--orange);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------------------------------
   13. WORKING PROCESS
---------------------------------------------------------- */
.working-process { background-color: #000; padding-bottom: 60px; overflow: hidden; }
.working-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.working-block-style1 {
    position: relative;
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-left: 20px;
}

.step-count {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 2px;
}

.working-content {
    flex: 1;
}

.working-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-soft);
}

.working-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.working-line {
    position: absolute;
    left: 27px;
    top: 50px;
    bottom: -50px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ----------------------------------------------------------
   14. VIDEO SECTION (Gencyo style)
---------------------------------------------------------- */
.video-section-style1 {
    position: relative;
    padding: 220px 0;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.video-section-style1 .video-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.6;
}

.video-section-style1:hover .video-bg {
    transform: scale(1.1) rotate(1deg);
}

.video-section-style1 .video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.video-inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.video-play-btn {
    position: relative;
}

.video-custom-play {
    display: flex;
    width: 140px;
    height: 140px;
    background: var(--orange);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-custom-play i {
    margin-left: 5px; /* Offset for triangle balance */
}

.video-custom-play:hover {
    transform: scale(1.1);
    background: #fff;
    color: var(--orange);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.4);
}

.video-custom-play::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: video-pulse 2.5s infinite;
}

@keyframes video-pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.video-title {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ----------------------------------------------------------
   14. VIDEO SECTION
---------------------------------------------------------- */
.video-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.video-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.4));
}
.video-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}
.video-play-btn { flex-shrink: 0; }
.play-btn-link { display: block; }
.play-icon-wrap {
    width: 90px;
    height: 90px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 30px;
    box-shadow: 0 0 0 16px rgba(67, 136, 167,0.2);
    transition: transform .3s, box-shadow .3s;
}
.play-icon-wrap:hover { transform: scale(1.1); box-shadow: 0 0 0 24px rgba(67, 136, 167,0.15); }
.video-title {
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--text-soft);
    max-width: 700px;
    line-height: 1.25;
}

/* ----------------------------------------------------------
   15. WHY CHOOSE US
---------------------------------------------------------- */
.why-us { background: #000; }
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-us-desc { color: var(--text-soft); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.why-us-cards { display: flex; flex-direction: column; gap: 24px; }
.why-us-card {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 28px;
    transition: border-color .3s;
}
.why-us-card:hover { border-color: var(--orange); }
.why-us-icon {
    width: 52px;
    height: 52px;
    background: rgba(67, 136, 167,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
    flex-shrink: 0;
}
.why-us-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-us-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }

.why-us-image-wrap { position: relative; }
.why-us-main-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 16px;
}
.why-us-stat-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--orange);
    padding: 20px 28px;
    border-radius: 14px;
    color: var(--text-soft);
    text-align: center;
    box-shadow: 0 10px 30px rgba(67, 136, 167,0.4);
}
.why-us-stat-badge span { font-size: 36px; font-weight: 900; }
.why-us-stat-badge p { font-size: 12px; font-weight: 500; opacity: 0.9; margin-top: 4px; }

.client-logo-marquee {
    margin-top: 0;
    border-top: none;
    padding-top: 20px;
    background: #000;
    overflow: hidden;
    position: relative;
}
.client-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-slide 20s linear infinite;
}
.client-marquee-group {
    display: flex;
    align-items: center;
    gap: 100px;
    padding-right: 100px;
}
.client-marquee-group img {
    height: 35px;
    object-fit: contain;
    /* Teal Theme (#4388a7) */
    filter: invert(51%) sepia(13%) saturate(1831%) hue-rotate(159deg) opacity(0.5);
    transition: all .4s ease;
}
.client-marquee-group img:hover { 
    filter: invert(51%) sepia(13%) saturate(1831%) hue-rotate(159deg) opacity(1);
    transform: scale(1.15) rotate(2deg);
}

@keyframes marquee-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   16. TESTIMONIALS
---------------------------------------------------------- */
.testimonials { background: var(--dark2); overflow: hidden; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 120px;
    align-items: start;
}
.testi-stat { margin: 28px 0; }
.testi-rating { font-size: 56px; font-weight: 900; color: var(--orange); }
.testi-stat p { color: var(--text-soft); font-size: 14px; margin-top: 6px; }

.testi-circle-badge {
    position: relative;
    width: 180px;
    height: 180px;
    margin-top: 40px;
}
.testi-circle-badge .rotating-text { width: 180px; height: 180px; }
.testi-circle-badge .center-arrow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Swiper Testimonial */
.testi-swiper { 
    overflow: hidden; 
    max-width: 640px; 
    margin-right: auto;
}
.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
}

.testi-card:hover { border-color: var(--orange); }

.testi-stars { color: #FFB800; font-size: 16px; margin-bottom: 25px; display: flex; gap: 5px; }

.testi-text { 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 16px; 
    line-height: 1.8; 
    margin-bottom: 35px; 
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-author img { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
}

.testi-author h5 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: #fff; }

.testi-author span { color: rgba(255, 255, 255, 0.5); font-size: 14px; }

.testi-quote { margin-left: auto; font-size: 35px; color: var(--orange); opacity: 0.3; }
.testi-rating-block {
    margin-top: 50px;
}

.rating-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rating-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.rating-reviews {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    max-width: 100px;
}

.trusted-clients {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 320px;
}

.trusted-clients p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    margin-bottom: 20px;
}

.client-icons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.client-icons img {
    height: 25px;
    width: auto;
    filter: invert(1) opacity(0.3);
    transition: opacity 0.3s;
}

.client-icons img:hover {
    opacity: 0.8;
}

.testi-arrows {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}
.testi-arrow-prev, .testi-arrow-next {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}
.testi-arrow-prev:hover, .testi-arrow-next:hover { background: var(--orange); border-color: var(--orange); }

/* Review Badges */
.review-badges {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px 40px;
    align-items: center;
    max-width: 680px;
}

.review-badge-card { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    flex: 1; 
}

.review-badge-card:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.review-icon img { width: 45px; height: 45px; object-fit: contain; }

.review-badge-card h4 { font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.5); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }

.review-badge-card span { font-size: 18px; font-weight: 800; color: #fff; }

.review-badge-card p { font-size: 13px; color: var(--gray); margin-top: 4px; }

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.3) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active { background: var(--orange) !important; }

/* ----------------------------------------------------------
   17. CLIENTS
---------------------------------------------------------- */
.clients-section { padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.client-logo { opacity: 0.4; transition: opacity .3s; }
.client-logo:hover { opacity: 0.9; }
.client-logo img { 
    height: 32px; width: auto; 
    filter: invert(51%) sepia(13%) saturate(1831%) hue-rotate(159deg) opacity(0.5);
    transition: all .4s ease;
}
.client-logo:hover img {
    filter: invert(51%) sepia(13%) saturate(1831%) hue-rotate(159deg) opacity(1);
    transform: scale(1.08);
}

/* New Infinite Team Slider Styles */
.team {
    background-color: #000;
    padding: 60px 0;
    overflow: hidden;
}
.team-header {
    text-align: center;
    margin-bottom: 30px;
}
.team-header .title {
    font-size: clamp(40px, 8vw, 85px);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.team-header .para {
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Infinite Slider Logic */
.team-slider-wrapper {
    width: 100%;
    overflow: visible; /* Allow lifting without clipping */
    display: flex;
    padding: 20px 0 60px; 
    cursor: grab;
}

.team-slider-wrapper:active {
    cursor: grabbing;
}

.team-track-inner {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeTeam 40s linear infinite;
    will-change: transform;
}

@keyframes marqueeTeam {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

/* Instant Pause on Hover */
.team-slider-wrapper:hover .team-track-inner {
    animation-play-state: paused !important;
}

/* Focused Flow Transition */
.team-track-inner:hover .team-card {
    opacity: 0.4;
    filter: blur(2px) grayscale(80%);
    transform: scale(0.92);
}

/* Standard State: Black and White */
.team-card {
    flex: 0 0 350px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: grayscale(100%); /* Default to B&W */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s ease,
                border-color 0.4s ease;
    will-change: transform, opacity, filter;
    cursor: pointer;
}

/* Hover State: Full Color */
.team-card:hover {
    opacity: 1 !important;
    filter: grayscale(0%) !important; /* Switch to Color */
    transform: translateY(-40px) scale(1.1) skewY(-1deg);
    border-color: var(--orange);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 30px rgba(67, 136, 167, 0.3);
    z-index: 50;
}

/* Soul Shade Effect (Liquid Flow) */
.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s ease;
    filter: blur(20px) brightness(1.5) saturate(1.5);
    mix-blend-mode: screen;
}

.team-card:hover::before {
    opacity: 0.3;
    transform: scale(1.15) translateY(10px) skewX(2deg);
}

/* Stretchy Image Logic */
/* Gencyo Stretchy Wipe Effect Logic */
.team-image {
    width: 100%;
    height: 480px; /* Refined height */
    overflow: hidden;
    position: relative;
    background: #000;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1), 
                filter 0.8s ease, 
                opacity 0.8s ease;
}

.team-image .img-hover {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(60%) scaleX(2);
    z-index: 2;
}

.team-card:hover .team-image img:not(.img-hover) {
    transform: translateX(-60%) scaleX(2);
    filter: blur(15px);
    opacity: 0;
}

.team-card:hover .team-image .img-hover {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scaleX(1);
}


/* Ghosting Fade for others */
.team-track-inner:hover .team-card:not(:hover) {
    opacity: 0.3;
    filter: grayscale(100%) blur(4px) brightness(0.6) skewX(1deg);
    transform: scale(0.9) translateY(10px);
}

.team-info {
    position: absolute;
    bottom: 40px; /* Slightly higher base position */
    left: 20px;
    right: 20px;
    background: rgba(16, 16, 16, 0.4);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 20;
}

.team-card:hover .team-info {
    transform: translateY(0);
    opacity: 1;
    background: rgba(16, 16, 16, 0.85);
    border-color: var(--orange);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}


.team-info .name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.team-info .role {
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.9;
}


/* ----------------------------------------------------------
   19. FAQ
---------------------------------------------------------- */
.faq-section { background: var(--dark2); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-soft);
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    transition: color .3s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 18px; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer {
    display: none;
    padding: 0 28px 24px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ----------------------------------------------------------
   20. BLOG
---------------------------------------------------------- */
.blog { background: var(--dark); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-block-style1 {
    position: relative;
    margin-bottom: 30px;
}

.blog-block-style1 .inner-box {
    position: relative;
}

.blog-block-style1 .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 30px;
}

.blog-block-style1 .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-block-style1:hover .image-box img {
    transform: scale(1.1);
}

.blog-block-style1 .date-box {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    z-index: 2;
}

.blog-block-style1 .date-box span {
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.blog-block-style1 .blog-cat {
    display: inline-block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.blog-block-style1 h4 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.blog-block-style1 h4 a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-block-style1:hover h4 a {
    color: var(--orange);
}

.blog-block-style1 .read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.blog-block-style1 .read-more:hover {
    color: var(--orange);
    gap: 15px;
}

/* ----------------------------------------------------------
   21. CONTACT SECTION
---------------------------------------------------------- */
.contact-section { background: var(--dark); padding: 100px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    min-height: 600px;
    position: relative;
}
.contact-left {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 48px;
}
.contact-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}
.contact-left-content { position: relative; z-index: 2; }
.contact-logo { margin-bottom: 32px; }
.contact-logo img { height: 36px; }
.contact-left-content h2 { font-size: 42px; font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.contact-left-content p { color: var(--text-soft5); font-size: 15px; margin-bottom: 8px; }
.contact-info-bottom {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.contact-email, .contact-phone { margin-top: 8px; }

.contact-right {
    background: var(--dark3);
    padding: 60px 56px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text-soft);
    outline: none;
    transition: border-color .3s;
    resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }

.btn-submit {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 44px;
    background: var(--orange);
    color: var(--text-soft);
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: background .3s, transform .2s;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ----------------------------------------------------------
   22. FOOTER PREMIUM AREA
---------------------------------------------------------- */
.footer-premium-area {
    background: #000;
    padding: 100px 0 0;
    color: var(--text-soft);
    position: relative;
    overflow: hidden;
}

/* Footer Top Header (Logo & Socials) */
.footer-header-part {
    text-align: center;
    margin-bottom: 80px;
}

.footer-branding {
    margin-bottom: 45px;
}

.footer-branding .logo-img {
    height: 200px;
    margin: 0 auto;
}

.footer-social-line {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social-line a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social-line a:hover {
    background: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(67, 136, 167, 0.3);
}

/* Main Grid */
.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 80px;
}

.footer-small-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact & Newsletter Column */
.contact-info-links {
    list-style: none;
    margin-bottom: 40px;
}

.contact-info-links li {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-info-links li i {
    width: 35px;
    height: 35px;
    background: rgba(67, 136, 167, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 136, 167, 0.2);
}

.contact-info-links li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-info-links li:hover i {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-links li a {
    color: inherit;
    transition: color 0.3s;
}

.contact-info-links li a:hover {
    color: var(--orange);
}

.footer-update-form {
    position: relative;
    max-width: 250px;
    margin-top: 20px;
}

.footer-update-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 40px 10px 0;
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    transition: border-color 0.4s;
}

.footer-update-form input:focus {
    outline: none;
    border-bottom: 1px solid var(--orange);
}

.footer-update-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--orange);
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s;
}

.footer-update-form button:hover {
    transform: translateY(-50%) translateX(5px);
}

/* Link Columns */
.footer-link-item-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link-item-list li a {
    font-size: 16px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-link-item-list li a:hover {
    color: var(--orange);
    transform: translateX(8px);
}

/* Instagram Column */
.footer-insta-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-insta-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s, filter 0.4s;
    cursor: pointer;
}

.footer-insta-gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Footer Bottom Bar */
.footer-bottom-premium {
    background: #080808;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.6;
}

.footer-bottom-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-sep-line {
    opacity: 0.3;
}

.footer-bottom-legal a:hover {
    color: var(--orange);
}

@keyframes pulse-ring {
    0% { transform: scale(0.85); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ----------------------------------------------------------
   24. MORE MAZID ANIMATIONS & POLISH
---------------------------------------------------------- */
/* Soft floating for icons */
.hero-float-blur {
    filter: blur(80px);
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

/* Card hover lift */
.why-us-card, .service-block-style1, .project-item, .testi-card {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease, border-color 0.4s ease;
}
.why-us-card:hover, .service-block-style1:hover, .project-item:hover, .testi-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--orange);
}

/* Magnetic Button Utility Class */
.btn-premium, .btn-hero-discover, .play-btn-link {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Text Line Reveal Animation */
.text-reveal-line {
    overflow: hidden;
    display: inline-block;
}
.text-reveal-line span {
    display: inline-block;
    transform: translateY(110%);
}
.text-reveal-line.active span {
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ----------------------------------------------------------
   24. ANIMATIONS
---------------------------------------------------------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}
@keyframes slideH {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(18px); }
}
@keyframes marquee-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll - visible by default, JS adds animation class */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
                filter 1s ease;
}
.js-loaded .reveal.active { opacity: 1; transform: none; filter: blur(0); }
.js-loaded .reveal-left { transform: translateX(-60px) rotate(-2deg); }
.js-loaded .reveal-right { transform: translateX(60px) rotate(2deg); }
.js-loaded .reveal-up { transform: translateY(80px); }
.js-loaded .reveal-down { transform: translateY(-80px); }
.js-loaded .reveal-scale { transform: scale(0.9) translateY(40px); }
.js-loaded .reveal-left.active, .js-loaded .reveal-right.active { transform: none; }

.js-loaded .stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-loaded .stagger-children.active > * { opacity: 1; transform: none; }
.js-loaded .stagger-children.active > *:nth-child(1) { transition-delay: 0ms; }
.js-loaded .stagger-children.active > *:nth-child(2) { transition-delay: 150ms; }
.js-loaded .stagger-children.active > *:nth-child(3) { transition-delay: 300ms; }
.js-loaded .stagger-children.active > *:nth-child(4) { transition-delay: 450ms; }
.js-loaded .stagger-children.active > *:nth-child(5) { transition-delay: 600ms; }
.js-loaded .stagger-children.active > *:nth-child(6) { transition-delay: 750ms; }

/* Letter/Word Stagger Support */
.word-wrap {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}
.word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.active .word-inner { transform: translateY(0); }

/* Counter animation */
.counter { display: inline-block; }

/* ----------------------------------------------------------
   24. CLIENT MARQUEE
---------------------------------------------------------- */
.client-logo-marquee {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    overflow: hidden;
    background: #080808;
    position: relative;
    text-align: center;
}
.client-marquee-track {
    display: flex;
    width: max-content;
    animation: client-slide 30s linear infinite;
}
.client-marquee-group {
    display: flex;
    align-items: center;
    gap: 120px;
    padding-right: 120px;
}
.client-marquee-group img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 10px;
}
.client-marquee-group img:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

@keyframes client-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   25. RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-item-card:nth-child(2) { border-right: none; }
    .service-item-card:nth-child(3) { border-right: 1px solid var(--border); }
    .service-item-card:nth-child(4) { border-right: none; border-bottom: 1px solid var(--border); }
    .service-item-card:nth-child(5), .service-item-card:nth-child(6) { border-bottom: 1px solid var(--border); }
    
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-img-main { height: 400px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-stat-badge { left: 0; }
}

@media (max-width: 900px) {
    .header-nav { display: none; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .working-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: none; border-bottom: 1px dashed rgba(67, 136, 167,0.4); }
}

@media (max-width: 640px) {
    .section-padding { padding: 70px 0; }
    .container { padding: 0 20px; }
    .hero-title { font-size: 42px; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item-card { border-right: none; border-bottom: 1px solid var(--border); }
    .form-row { grid-template-columns: 1fr; }
    .review-badges { flex-direction: column; }
    .about-checklist { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner-part { flex-direction: column; gap: 15px; text-align: center; }
    .hero-bottom-content { flex-direction: column; gap: 30px; }
    .btn-letstalk { display: none; }
    .projects-header { flex-direction: column; align-items: flex-start; }
    .sidebar-drawer { width: 300px; }
}

/* ----------------------------------------------------------
   26. PRELOADER & NAVIGATION TOGGLE
---------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0B0B0B 0%, #000 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease;
}

.loader-bg-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(67, 136, 167, 0.1) 0%, transparent 70%);
    animation: loaderBGPulse 6s infinite ease-in-out;
    pointer-events: none;
}

.loader-noise {
    position: absolute;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    mix-blend-mode: overlay;
}

#preloader.loaded {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Horizontal split effect */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.loader-logo-wrap {
    position: relative;
    margin-bottom: 30px;
}

.loader-logo {
    height: 160px;
    position: relative;
    z-index: 2;
    animation: loaderLogoPulse 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 40px rgba(67, 136, 167, 0.4));
}

.logo-glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(67, 136, 167, 0.2) 0%, transparent 80%);
    filter: blur(40px);
    animation: glowAuraPulse 3s infinite alternate;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 2px solid rgba(67, 136, 167, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: loaderRingPulse 2.5s infinite ease-out;
}

.loader-progress-bar {
    width: 280px;
    height: 1.5px;
    background: rgba(255,255,255,0.03);
    margin: 50px auto 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.loader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, transparent, var(--orange), transparent);
    background-size: 200% 100%;
    animation: progressGradientMove 2s infinite linear;
    box-shadow: 0 0 15px var(--orange);
    transition: width 0.3s ease-out;
}

.loader-text-status {
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 25px;
    animation: loaderTextFade 2.5s infinite;
}

@keyframes loaderBGPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes glowAuraPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes progressGradientMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes loaderLogoPulse {
    0% { transform: scale(0.92); filter: brightness(0.7) drop-shadow(0 0 20px rgba(67, 136, 167, 0.2)); }
    100% { transform: scale(1.08); filter: brightness(1.3) drop-shadow(0 0 60px rgba(67, 136, 167, 0.6)); }
}

@keyframes loaderRingPulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

@keyframes loaderTextFade {
    0%, 100% { opacity: 0.2; letter-spacing: 5px; }
    50% { opacity: 1; letter-spacing: 7px; }
}

/* Master Toggle Button Update */
.back-to-top {
    width: 60px;
    height: 60px;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* State-specific colors for better feedback */
.back-to-top.to-bottom {
    background: var(--orange);
    color: #000;
    border-color: rgba(0,0,0,0.1);
}

.back-to-top.to-bottom:hover {
    background: #fff;
    color: var(--orange);
}

.back-to-top i {
    font-size: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

.back-to-top:hover {
    background: var(--orange);
    color: #000;
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 30px 60px rgba(67, 136, 167, 0.4);
}

.back-to-top.to-bottom i {
    transform: rotate(180deg);
}

/* Custom Scroll Logic for the Toggle Arrow */
.back-to-top::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(67, 136, 167, 0.3);
    animation: bounceRing 2s infinite;
}

@keyframes bounceRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}


/* ----------------------------------------------------------
   30. PARALLAX IMAGE SECTION (Custom Request)
   Large Image with GSAP Scroll Movement
---------------------------------------------------------- */
.parallax-section-wrapper {
    position: relative;
    width: 100%;
    height: 70vh; /* Reduced height to thori choti kro */
    overflow: hidden;
    background-color: var(--dark);
    /* margin-bottom added to separate from marquee */
    margin: 0;
    position: relative;
    z-index: 1;
}

.parallax-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* High-end dark cover */
    z-index: 2;
    pointer-events: none;
}

.parallax-image-container {
    position: absolute;
    width: 100%;
    left: 0;
    height: 150%; 
    top: -25%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: normal; /* High fidelity/Clean */
    filter: brightness(0.6) contrast(1.1); /* Darker for better text readability */
}

.parallax-text-overlay {
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.parallax-title {
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    line-height: 0.9;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Response for smaller screens */
@media (max-width: 991px) {
    .parallax-section-wrapper { height: 60vh; }
    .parallax-image-container { height: 130%; top: -15%; }
}

@media (max-width: 767px) {
    .parallax-section-wrapper { height: 45vh; margin: 20px 0; }
    .parallax-image-container { height: 120%; top: -10%; }
}

/* ===================== BIG TEXT MARQUEE SECTION ===================== */
.big-text-scroller {
    background: #000;
    overflow: hidden;
    padding: 100px 0;
    user-select: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.scroller-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 10px;
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: moveLeftRows 60s linear infinite;
    padding-left: 50px;
}

.marquee-content.reverse {
    animation: moveRightRows 60s linear infinite;
}

.scroller-text {
    font-size: clamp(80px, 18vw, 180px);
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: -4px;
    line-height: 1.1;
}

.text-solid {
    color: #fff;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
}

.scroller-sep {
    color: var(--accent-blue);
    margin: 0 20px;
}

@keyframes moveLeftRows {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes moveRightRows {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 768px) {
    .scroller-text {
        font-size: 80px;
        letter-spacing: -2px;
    }
    .big-text-scroller { padding: 60px 0; }
}
