/* ==========================
   FONTS
========================== */
@font-face {
    font-family: 'Chillax';
    src: url('/assets/fonts/chillax/chillax-300.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Chillax';
    src: url('/assets/fonts/chillax/chillax-400.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Chillax';
    src: url('/assets/fonts/chillax/chillax-500.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Chillax';
    src: url('/assets/fonts/chillax/chillax-600.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Chillax';
    src: url('/assets/fonts/chillax/chillax-700.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* ==========================
   RESET
========================== */

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

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

body {
    font-family: 'Chillax', sans-serif;
}

/* ==========================
   LOADER
========================== */

#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow: hidden;
}

#loader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#website {
    display: none;
}

/* ==========================
   HERO
========================== */

.hero-banner::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 300px;

    z-index: 4;
    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.6) 70%,
            rgba(255, 255, 255, 1) 100%);
}

/* Background Video */

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.25) 40%,
            rgba(255, 255, 255, 0.55) 70%,
            rgba(255, 255, 255, 1) 100%);

    z-index: 1;
}

/* Container */

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 0 100px;
}

/* ==========================
   HEADER
========================== */

.hero-banner {
    position: relative;
}

.sticky-header-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    /* border-bottom: 1px solid rgba(255, 121, 0, 0.8); */
    border-bottom: 1px solid #dddddd;

}

.hero-header {
    width: 100%;
    height: 92px;
    padding: 0 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 20;
}

.service-strip {
    width: 100%;
    height: 44px;

    background: #232323;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    position: relative;
    z-index: 10;
    overflow-x: auto;
    white-space: nowrap;
}

.service-strip::-webkit-scrollbar {
    display: none;
}

.service-strip.is-dragging {
    user-select: none;
}

@media (max-width: 1024px) {
    .service-strip {
        justify-content: flex-start;
        padding: 0 40px;
        gap: 40px;
    }
}

.service-strip span {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 240px;
    text-align: center;

    color: #fff;
    font-size: 10px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes starGlisten {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
        filter: drop-shadow(0 0 0px rgba(255, 215, 0, 0)) brightness(1);
    }

    50% {
        transform: scale(1.25) rotate(45deg);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9)) brightness(1.2);
    }
}

.service-strip img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    animation: starGlisten 2.5s infinite ease-in-out;
}

.service-strip img:nth-of-type(1) {
    animation-delay: 0s;
}

.service-strip img:nth-of-type(2) {
    animation-delay: 0.3s;
}

.service-strip img:nth-of-type(3) {
    animation-delay: 0.6s;
}

/* Text Shimmer Effect */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.service-strip span {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 215, 0, 1) 50%,
            rgba(255, 255, 255, 0.8) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.hero-container {
    position: relative;
    z-index: 10;

    min-height: calc(100vh - 96px);

    padding-left: 100px;
    padding-right: 100px;
}

/* Left */

.nav-left {
    display: none;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    /* background: #ff7900; */
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.menu-text {
    font-size: 18px;
    color: #222;
}

/* Center */

.nav-center {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 38px;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-nav a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.hero-nav a:hover,
.hero-nav a.active {
    color: #ff7900;
}

/* Right */

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.search-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
}

.hero-btn {
    height: 50px;
    padding: 0px 8px 0 32px;
    border: 1px solid #d8d8d8;
    border-radius: 40px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff7900;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-strip {
    height: 44px;
    background: #406077;
    /*#ff7900; */
    /*#232323; #406077*/
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ==========================
   CONTENT
========================== */

.hero-content {
    position: absolute;
    left: 100px;
    bottom: 80px;
    z-index: 5;
    max-width: auto;
}

.hero-subtitle {
    display: block;
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: "Chillax", sans-serif;
}

.hero-title {
    font-size: 100px;
    font-weight: 700;
    line-height: 0.95;
}


/* ==========================
   RIGHT IMAGE
========================== */

.hero-right-image {
    position: absolute;
    right: -120px;
    bottom: -100px;
    z-index: 3;
}

@keyframes floatRightImage {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

.hero-right-image img {
    width: 520px;
    display: block;
    animation: floatRightImage 5s ease-in-out infinite;
}

.hero-partnership {
    position: relative;
    /* or simply remove the position property */

    /* background: #fff; */
    /* padding: 12px 16px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-partnership-text {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    font-family: 'poppins', sans-serif;
}

.hero-partnership-logos {
    display: flex;
    gap: 12px;
}

.hero-partner-box {
    width: 170px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 8px;

    transition: .35s ease;

    box-shadow:
        0 0 30px rgba(255, 121, 0, .10),
        0 12px 35px rgba(255, 121, 0, .08),
        0 2px 8px rgba(0, 0, 0, .03);
}

.hero-partner-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 55px rgba(255, 121, 0, 0.20),
        0 10px 20px rgba(0, 0, 0, 0.06);
}


.hero-partner-box img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain;
}

.logo-border-line {
    position: absolute;
    top: 480px;
    right: 140px;
    height: calc(100% - 120px);
    z-index: 4;
    pointer-events: none;
}

.logo-border-line img {
    height: 70%;
    width: auto;
    display: block;
}

/* ==========================
   FLOATING ACTIONS
========================== */

.floating-trigger {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
}

.floating-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    position: fixed;
    right: 8%;
    bottom: 8%;
}

.floating-side-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: transparent;
}

.floating-actions.is-floating {
    position: fixed;
    bottom: 8%;
    right: 8%;
    z-index: 1000;
}



/* ==========================
   GLASS BUTTON
========================== */

.glass-connect-btn {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;
    height: 56px;

    padding: 12px 58px 12px 28px;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    border-radius: 999px;

    text-decoration: none;
    color: #1f1f1f;
    font-family: 'chillax', sans-serif;
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;

    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.80),
            rgba(255, 255, 255, 0.45));

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.6);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    overflow: hidden;
}

/* Refraction Highlight */

.glass-connect-btn::before {
    content: "";

    position: absolute;

    top: -100%;
    left: -60%;

    width: 60%;
    height: 300%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);

    transform: rotate(-45deg);
}

/* Orange Circle */

.connect-arrow {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #ff7900;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    flex-shrink: 0;

    position: absolute;
    left: calc(100% - 42px);
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.connect-arrow img {
    width: 20px;
    height: 20px;
    display: block;
}

.glass-connect-btn:hover {
    padding: 8px 28px 8px 58px;
}

.glass-connect-btn:hover .connect-arrow {
    left: 8px;
    animation: fishSwim 0.5s ease-in-out infinite;
}

/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12);

    transition: .3s ease;
}

.whatsapp-btn img {
    display: block;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

/* ==========================
   FLOATING SCROLL TO TOP
========================== */

.floating-scroll-top {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ff7900;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 121, 0, 0.3);
}

.floating-scroll-top:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

/* Ensure shadow pops against any backgrounds when floating */
/* .floating-actions.is-floating .floating-actions-inner>* {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
} */
.floating-actions.is-floating .glass-connect-btn,
.floating-actions.is-floating .whatsapp-btn,
.floating-actions.is-floating .floating-scroll-top {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.hero-bottom-bar {
    position: absolute;
    left: 100px;
    right: 100px;
    bottom: 50px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    z-index: 30;
}

@media (max-width: 768px) {
    .hero-bottom-bar {
        left: 16px;
        right: 16px;
        bottom: 140px;
    }

    .glass-connect-btn {
        display: none;
    }

    .floating-actions {
        gap: 24px;
    }

    .hero-partnership-text {
        font-size: 11px;
    }

    .floating-actions-inner {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .floating-side-icons {
        gap: 10px;
    }

    .whatsapp-btn,
    .floating-scroll-top {
        width: 40px;
        height: 40px;
        margin-top: 8px;
        ;
    }

    .hero-partner-box {
        width: 70px;
        height: 46px;
    }
}

/* ==========================
   MOBILE HEADER
========================== */

@media (max-width: 992px) {
    .hero-header {
        position: relative;
        justify-content: space-between;
        padding: 0 20px !important;
    }

    /* Logo to left */
    .logo {
        position: static !important;
        transform: none !important;
        margin-right: auto;
    }

    .logo img {
        height: 32px;
    }

    /* Remove desktop centering */
    .nav-center {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: auto !important;
        margin-left: 0;
    }

    /* Hide nav links */
    .hero-nav {
        display: none !important;
    }

    /* Hamburger to right */
    .nav-left {
        order: 3;
        margin-left: auto;
    }

    .menu-btn {
        width: 48px;
        height: 48px;
    }

    /* Hide desktop CTA */
    .nav-right {
        display: none !important;
    }
}

.floating-scroll-top {
    display: none;
}

/* Visible only after the floating bar sticks */
.floating-actions.is-floating .floating-scroll-top {
    display: flex;
}

/* ============================================================
   ABOUT SECTION — COMPLETE FIXED CSS
   Replace the entire about section block in your style.css
   ============================================================ */

/* ── Sticky wrapper ── */
.about-sticky {
    position: relative;
    height: 300vh;
    background: #ffffff;
}

/* ── Pinned viewport ── */
.about-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

/* ── Faint background trail image ── */
.trail-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.trail-path {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .10;
}

/* ── Animated SVG trail ── */
.trail-draw {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

#trailLine {
    fill: none;
    stroke: #f48b52;
    stroke-width: 18;
    stroke-linecap: round;
    opacity: 0.55;
    /* dasharray/dashoffset set by JS after path length is measured */
}

/* ── Slides — ALL hidden by default ── */
.about-slide {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 120px;
    padding: 0 120px;

    z-index: 5;

    opacity: 0;
    visibility: hidden;
}

/* ── Slide 1 visible on load (before scroll) ── */
.about-slide#slide-1 {
    opacity: 1;
    visibility: visible;
}

/* ── Layout ── */
.about-left,
.about-right {
    flex: 0 0 460px;
}

.about-left img,
.about-right img {
    mix-blend-mode: darken;
    width: 460px;
    height: auto;
    display: block;
}

.about-logo-images {
    mix-blend-mode: darken;
}

.about-content {
    /* max-width: 680px; */
}

/* ── Typography ── */
.about-tagline {
    display: block;
    font-size: 40px;
    font-weight: 200;
    line-height: 1.1;
    color: #2D2D2D;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-title {
    font-size: 80px;
    font-weight: 700;
    line-height: .92;
    color: #111;
    margin-bottom: 28px;
}

.about-content p {
    font-family: 'poppins', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.85;
    color: #777;
    max-width: 580px;
    margin-bottom: 36px;
}

/* ── Slide 2: Mission — content left, image right ── */
#slide-2 {
    justify-content: center;
}

/* ── Slide 3: Vision — image left, content right ── */
#slide-3 {
    justify-content: center;
    gap: 100px;
}

/* ── Scroll-down indicator ── */
.scroll-down-indicator {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 10;
    pointer-events: none;
    width: 90px;
    height: 90px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scroll-down-indicator.visible {
    opacity: 1;
}

.scroll-down-indicator svg {
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

.scroll-down-indicator .center-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down-indicator .center-arrow::after {
    content: "▾";
    font-size: 18px;
    color: #ff7900;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .about-slide {
        gap: 60px;
        padding: 0 60px;
    }

    .about-left,
    .about-right {
        flex-basis: 360px;
    }

    .about-left img,
    .about-right img {
        width: 360px;
    }

    .about-title {
        font-size: 60px;
    }

    .about-tagline {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .about-slide {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px !important;
    }

    #slide-2 {
        flex-direction: column-reverse;
    }

    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-left img,
    .about-right img {
        width: 260px;
    }

    .about-title {
        font-size: 48px;
    }

    .about-tagline {
        font-size: 24px;
    }
}

/* ============================================================
   SERVICES SECTION
============================================================ */

#services {
    position: relative;
    background: transparent;
    height: 500vh;
    margin-top: -100vh;
}

/* ============================================================
   PIN AREA
============================================================ */

.services-pin {
    position: sticky;
    top: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;
    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ============================================================
   CIRCLE REVEAL
============================================================ */

.circle-reveal {
    position: absolute;

    left: 50%;
    top: 50vh;

    width: 3000px;
    height: 3000px;

    border-radius: 50%;
    background: #050505;

    transform: translate(-50%, -50%) scale(0.0267);

    z-index: 5;
    will-change: transform;
}

/* ============================================================
   CONTENT
============================================================ */

.services-content {
    position: absolute;
    inset: 0;

    /* display: flex;
    align-items: center;
    justify-content: center;
    gap: 180px;

    padding: 0 120px; */
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(40px, 6vw, 180px);
    padding-inline: clamp(20px, 4.5vw, 120px);

    box-sizing: border-box;
    background: #050505;

    opacity: 0;
    z-index: 10;
}

/* ============================================================
   LEFT SIDE
=========================================================== */

.services-left {
    flex: 0 0 auto;
    width: auto;
    display: flex;
    align-items: center;
    overflow: visible;
}

.cards-stack {
    position: relative;

    width: 540px;
    height: 640px;
}

/* ============================================================
   CARDS
============================================================ */

.service-card {
    position: absolute;

    top: 0;
    left: 0;

    width: 460px;

    transform-origin: center center;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card img {
    width: 100%;
    display: block;
}

/* Random stack */

.card-1 {
    z-index: 6;
    transform: rotate(0deg);
}

.card-2 {
    z-index: 5;
    transform: rotate(-8deg) translateX(18px);
}

.card-3 {
    z-index: 4;
    transform: rotate(7deg) translateX(-12px);
}

.card-4 {
    z-index: 3;
    transform: rotate(-12deg) translateX(22px);
}

.card-5 {
    z-index: 2;
    transform: rotate(9deg) translateX(-18px);
}

.card-6 {
    z-index: 1;
    transform: rotate(-6deg) translateX(12px);
}

/* ============================================================
   RIGHT SIDE
============================================================ */

.services-right {
    /* flex: 0 0 600px;
    width: auto; */
    flex: 1;
    max-width: 600px;
    min-width: 0;
    color: #fff;
}

.service-subtitle {
    display: block;

    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;

    color: rgba(255, 255, 255, .75);

    margin-bottom: 10px;
}

.service-title {
    font-size: 80px;
    font-weight: 700;
    line-height: .95;

    margin-bottom: 60px;
    white-space: nowrap;
}

/* ============================================================
   NAVIGATION
============================================================ */

.service-navigation {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.service-line {
    width: 24px;
    height: 300px;

    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='50'%3E%3Cline x1='0' y1='0' x2='24' y2='0' stroke='rgba(255,255,255,0.8)' stroke-width='2'/%3E%3Cline x1='0' y1='10' x2='12' y2='10' stroke='rgba(255,255,255,0.8)' stroke-width='2'/%3E%3Cline x1='0' y1='20' x2='12' y2='20' stroke='rgba(255,255,255,0.8)' stroke-width='2'/%3E%3Cline x1='0' y1='30' x2='12' y2='30' stroke='rgba(255,255,255,0.8)' stroke-width='2'/%3E%3Cline x1='0' y1='40' x2='12' y2='40' stroke='rgba(255,255,255,0.8)' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-y;
    flex-shrink: 0;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 20px;
    color: rgba(255, 255, 255, .45);

    margin-bottom: 26px;

    transition: all .3s ease;
}

.service-list li.active {
    font-size: 42px;
    color: #ffffff;
}

/* ============================================================
   DECORATION
============================================================ */

.service-blob-top {
    position: absolute;

    top: 0;
    right: 0;

    width: 220px;

    pointer-events: none;
}

.service-blob-bottom {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 220px;

    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1400px) {
    .services-left {
        flex-basis: 420px;
    }

    .cards-stack {
        width: 420px;
        height: 560px;
    }

    .service-card {
        width: 360px;
    }

    .service-title {
        font-size: 64px;
    }

    .service-subtitle {
        font-size: 34px;
    }

    .service-list li.active {
        font-size: 34px;
    }
}

@media (max-width: 1100px) {
    .services-content {
        gap: 50px;
        padding-inline: 30px;
    }

    .services-left {
        flex-basis: 340px;
    }

    .cards-stack {
        width: 340px;
        height: 500px;
    }

    .service-card {
        width: 300px;
    }

    .service-title {
        font-size: 52px;
    }

    .service-subtitle {
        font-size: 28px;
    }

    .service-list li {
        font-size: 18px;
    }

    .service-list li.active {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-content {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .services-left,
    .services-right {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .cards-stack {
        width: 300px;
        height: 420px;
        margin: auto;
    }

    .service-card {
        width: 280px;
    }

    .service-title {
        font-size: 42px;
        white-space: normal;
    }

    .service-subtitle {
        font-size: 22px;
    }

    .service-navigation {
        justify-content: center;
    }

    .service-line {
        display: none;
    }

    .service-list li {
        font-size: 18px;
    }

    .service-list li.active {
        font-size: 24px;
    }
}

/* ==================================================
   PORTFOLIO
================================================== */

#portfolio {
    position: relative;
    height: 220vh;
    background: #f7f7f7;
}

.portfolio-pin {
    position: sticky;
    top: 0;

    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center */

.portfolio-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.portfolio-subtitle {
    display: block;

    font-size: 44px;
    font-weight: 300;

    margin-bottom: 12px;

    color: #444;
}

.portfolio-title {
    font-size: 82px;
    line-height: .95;
    font-weight: 700;

    margin-bottom: 30px;
}

/* Projects */

.portfolio-project {
    position: absolute;
    width: 290px;

    opacity: 0;
}

.portfolio-project img {
    width: 100%;
    display: block;
    border-radius: 28px;
}

/* Final Positions */

.p1 {
    top: 14%;
    left: 6%;
}

.p2 {
    top: 10%;
    left: 40%;
}

.p3 {
    top: 12%;
    right: 8%;
}

.p4 {
    bottom: 14%;
    left: 8%;
}

.p5 {
    bottom: 8%;
    left: 42%;
}

.p6 {
    bottom: 16%;
    right: 8%;
}

/* Decorations */

.portfolio-blob-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
}

.portfolio-blob-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: -300px;
}

.section-reveal {
    position: relative;

    width: 100%;
    height: 350px;

    margin-top: -350px;

    z-index: 99;
    /* Must be extremely high to beat GSAP's automatic inline z-index on pinned elements */
    overflow: hidden;
    pointer-events: none;
    transform: translateZ(0);
    margin-bottom: -2px;
    /* Hardware acceleration to prevent iOS Safari repaint flickering */
}

.section-reveal svg {
    width: 100%;
    height: 100%;
    display: block;
}

.section-reveal path {
    fill: #050505;
}

/* ==================================================
   industry
================================================== */

#industries {
    transform: translateY(200px);
    opacity: 0;
}

.industries-section {
    min-height: 100vh;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 120px;
    padding-top: 220px;

    position: relative;
}

.industries-left {
    width: 48%;
}

.industries-right {
    width: 40%;

    display: flex;
    justify-content: center;
}

.industries-tag {
    display: block;

    color: rgba(255, 255, 255, .55);

    font-size: 22px;
    margin-bottom: 10px;
}

.industries-title {
    color: #fff;

    font-size: 72px;
    font-weight: 700;

    margin-bottom: 60px;
}

.industries-list {
    list-style: none;
}

.industry-item {
    display: flex;
    align-items: center;

    gap: 24px;

    height: 80px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    color: rgba(255, 255, 255, .55);

    font-size: 28px;

    cursor: pointer;

    transition: all .35s ease;
}

.industry-item span {
    font-size: 18px;
    color: rgba(255, 255, 255, .35);
}

.industry-item.active {
    color: #fff;
    padding-left: 18px;
}

.industry-image-wrap {
    width: 520px;
    height: 620px;

    overflow: hidden;
    border-radius: 12px;

    position: relative;
}

.industry-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;
}

.industries-content {
    opacity: 0;
    transform: translateY(120px);
}

.industries-preview {
    opacity: 0;
    transform: translateX(120px);
}

/*==================================================
APPS SECTION
==================================================*/

#apps {
    position: relative;
    height: auto;
    background: #ffffff;
    overflow: hidden;
}

.apps-pin {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.apps-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 10%;

    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 80px;

    align-items: center;

    position: relative;
    z-index: 5;
    box-sizing: border-box;
}

/*==================================================
LEFT CONTENT
==================================================*/

.apps-content {
    position: relative;
    z-index: 5;
}

.apps-subtitle {
    display: block;
    font-size: 22px;
    color: #767676;
    margin-bottom: 16px;
}

.apps-title {
    font-size: 78px;
    line-height: .92;
    color: #111;
    margin-bottom: 30px;
}

.apps-description {

    max-width: 400px;

    font-size: 17px;
    line-height: 1.9;

    color: #666;

    margin-bottom: 45px;
}

.apps-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.apps-dots {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #35556a;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.app-dot:hover {
    transform: scale(1.15);
}

.app-dot.active {
    background: #ff7900;
    transform: scale(1.15);
}

/*==================================================
RIGHT
==================================================*/

.apps-showcase {

    position: relative;

    overflow: hidden;

    width: 100%;
    padding: 60px 0;
    margin: -60px 0;
}

.apps-track {

    display: flex;
    align-items: center;

    gap: 60px;

    width: max-content;

    will-change: transform;

    padding-right: 45vw;
}

.app-card {

    width: 580px;

    flex-shrink: 0;

    transition: .5s ease;

    opacity: .55;
}

.app-card.active {

    opacity: 1;

    transform: scale(1.04);
}

.app-image {

    border-radius: 26px;

    overflow: hidden;

    box-shadow: none;
}

.app-image img {

    width: 100%;

    display: block;
}

/*==================================================
DECORATIONS
==================================================*/

.apps-decoration {

    position: absolute;

    pointer-events: none;

    z-index: 1;
}

.apps-decoration-left {

    left: -130px;
    bottom: 80px;

    width: 240px;
}

.apps-decoration-right {

    right: -120px;
    top: 60px;

    width: 260px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .apps-container {

        grid-template-columns: 1fr;
        gap: 70px;

        text-align: center;
        padding-left: 0;
        width: 92%;
        margin: auto;
    }

    .apps-description {

        margin-inline: auto;
    }

    .apps-actions {

        justify-content: center;
    }

    .apps-showcase {

        width: 100%;
    }

    .app-card {

        width: 470px;
    }

    .apps-decoration {

        display: none;
    }

}

@media(max-width:768px) {

    .apps-container {

        width: 92%;
    }

    .apps-title {

        font-size: 54px;
    }

    .apps-subtitle {

        font-size: 18px;
    }

    .apps-description {

        font-size: 16px;
    }

    .app-card {

        width: 340px;
    }

    .apps-track {

        gap: 30px;

        padding-right: 120px;
    }

}

@media(max-width:576px) {

    .apps-title {

        font-size: 42px;
    }

    .app-card {

        width: 280px;
    }

}

/*==================================================
CONTACT SECTION
==================================================*/

#contact {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Left Column */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.globe-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-globe {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
}

.contact-cards-contact {
    display: flex;
    gap: 24px;
}

.contact-card-contact {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

.card-icon-contact {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
}

.card-text-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
    font-family: 'Chillax', sans-serif;
}

.card-text-contact p {
    font-size: 13px;
    line-height: 1.6;
    color: #777777;
    margin: 0;
    font-family: 'Chillax', sans-serif;
}

/* Right Column*/
/*
.contact-right-contact {
    position: relative;
    align-items: center;
} */
.contact-right-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical center */
    height: 100%;
}

.contact-subtitle {
    display: block;
    font-size: 22px;
    color: #767676;
    margin-bottom: 16px;
    font-family: 'Chillax', sans-serif;
    font-weight: 300;
}

.contact-title {
    font-size: 78px;
    line-height: 0.92;
    color: #111111;
    margin-bottom: 50px;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    width: 100%;
}

.contact-form input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #eaeaea;
    font-size: 16px;
    color: #111111;
    font-family: 'Chillax', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form input::placeholder {
    color: #888888;
}

.contact-form input:focus {
    border-color: #ff7900;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 8px 8px 32px;
    height: 56px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    color: #111111;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    font-family: 'Chillax', sans-serif;
    width: fit-content;
    margin-top: 20px;
}

.contact-btn:hover {
    border-color: #ff7900;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-btn .btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff7900;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.contact-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 6%;
    }

    .contact-title {
        font-size: 54px;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1200px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 6%;
    }

    .contact-right-contact {
        align-self: stretch;
        justify-content: flex-start;
    }

    .contact-title {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        gap: 16px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
    #contact {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 24px;
        gap: 50px;
    }

    .contact-left {
        gap: 30px;
    }

    .contact-globe {
        max-width: 320px;
    }

    .contact-cards-contact {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .contact-card-contact {
        width: 100%;
    }

    .contact-right-contact {
        justify-content: flex-start;
        align-self: stretch;
    }

    .contact-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-title {
        font-size: 42px;
        margin-bottom: 36px;
        line-height: 1;
    }

    .contact-form {
        gap: 22px;
    }
}

/*==================================================
FOOTER SECTION
==================================================*/

#footer {
    background: #020202;
    color: #ffffff;
    padding-top: 100px;
    position: relative;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 0 10% 80px 10%;
    box-sizing: border-box;
}

.footer-col h3 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px 0;
    font-family: 'Chillax', sans-serif;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 30px 0;
    font-family: 'Chillax', sans-serif;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #C4C4C4;
    margin: 0;
    font-family: 'poppins', sans-serif;
}

.partnership-section {
    margin-top: 30px;
}

.partnership-section h5 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: 'poppins', sans-serif;
}

.partnership-logos {
    display: flex;
    gap: 12px;
}

.partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    height: 45px;
}

.partner-logo-box img {
    max-height: 20px;
    width: auto;
    object-fit: contain;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'poppins', sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    color: #DDDDDD;
}


.footer-col ul li a {
    color: #DDDDDD;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 16px);
    font-family: 'poppins', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ff7900;
    transform: translateX(4px);
}

/* Contact Info Boxes */
.contact-col {
    display: flex;
    flex-direction: column;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1.5px solid #EEEEEE;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #050505;
    box-sizing: border-box;
}

.contact-box-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    flex-shrink: 0;
}

.contact-box-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-box-text .label {
    font-size: 16px;
    color: #DDDDDD;
    text-transform: uppercase;
    font-family: 'poppins', sans-serif;
}

.contact-box-text .value {
    font-size: 16px;
    background: linear-gradient(to right, #F26822, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 500;
    font-family: 'poppins', sans-serif;
}

/* Footer Middle Bar (Border Cells) */
.footer-middle-bar {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto auto auto auto;
    border-top: 1.5px solid #707070;
    border-bottom: 1.5px solid #707070;
    align-items: center;
    padding: 0 8%;
}

.footer-cell,
.footer-social-cell {
    padding: 24px 32px;
    border-right: 1.5px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 16px);
    font-family: 'Chillax', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
    height: 100%;
}

.footer-social-cell {
    padding: 24px;
}

.footer-cell:hover,
.footer-social-cell:hover {
    color: #ff7900;
    background: #050505;
}

.footer-middle-bar .spacer {
    border-right: 1.5px solid #121212;
    pointer-events: none;
    background-image: radial-gradient(circle, #2a2a2a 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-position: center;
}

.footer-middle-bar>*:last-child {
    border-right: none;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 60px;
}

.footer-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 10% 40px 10%;
    box-sizing: border-box;
}

.footer-logo-wrap img {
    max-width: 580px;
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.footer-floating-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-bottom: 40px;
}

.footer-copyright {
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    color: #555555;
    border-top: 1.5px solid #121212;
    font-family: 'Chillax', sans-serif;
}

.scroll-to-top {
    position: absolute;
    right: 10%;
    bottom: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    background: transparent;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-to-top:hover {
    border-color: #ff7900;
    color: #ff7900;
    background: #050505;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-middle-bar {
        grid-template-columns: 1fr;
    }

    .footer-cell,
    .footer-social-cell {
        border-right: none;
        border-bottom: 1.5px solid #121212;
        padding: 16px;
    }

    .footer-middle-bar .spacer {
        display: none;
    }

    .scroll-to-top {
        right: 6%;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-col h3 {
        font-size: 32px;
    }
}

/*==================================================
LAPTOP RESPONSIVE OVERRIDES (MAX-WIDTH: 1450PX)
==================================================*/
@media (max-width: 992px) {

    .nav-left {
        display: flex !important;
    }

    .hero-nav,
    .search-btn,
    .hero-btn {
        display: none !important;
    }

    .menu-text {
        display: none !important;
    }

    .nav-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto !important;
        justify-content: center;
    }
}

/*==================================================
MOBILE RESPONSIVE OVERRIDES (MAX-WIDTH: 768PX)
==================================================*/
@media (max-width: 768px) {
    .hero-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 60px;
    }

    .hero-content {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        padding: 60px 0 20px 0;
        text-align: center;
        max-width: 100% !important;
    }

    .hero-subtitle {
        font-size: 32px !important;
    }

    .hero-title {
        font-size: 48px !important;
    }

    .hero-right-image {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin: 30px -20px 0 auto !important;
        display: flex;
        justify-content: flex-end;
        align-self: flex-end;
        width: auto !important;
    }

    .hero-right-image img {
        width: 280px !important;
        display: block;
    }

    .logo-border-line {
        display: none !important;
    }

    .hero-partnership {
        position: relative;

        /* background: #fff; */
        /* padding: 12px 16px;
        border-radius: 12px;

        box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */

        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .floating-trigger {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 40px;
        width: 100%;
    }

    /* .floating-actions {
        justify-content: center;
        width: 100%;
        gap: 16px;
    } */

    /* .floating-actions.is-floating {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        margin-top: 0 !important;
        width: auto !important;
        z-index: 1000 !important;
    } */

    .service-strip {
        overflow-x: scroll;
        overflow-y: hidden;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .service-strip::-webkit-scrollbar {
        display: none;
    }

    .service-strip span {
        min-width: auto;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .service-strip img {
        flex-shrink: 0;
    }

    /* 2. About Us Section */
    .scroll-down-indicator {
        top: 20px !important;
        left: 20px !important;
        bottom: auto !important;
        right: auto !important;
    }

    .about-slide {
        display: flex;
        flex-direction: column !important;
        gap: 30px !important;
        padding: 40px 20px !important;
        text-align: center;
    }

    .about-left,
    .about-right {
        flex: 0 0 auto !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-left img,
    .about-right img {
        width: 240px !important;
    }

    .about-content {
        max-width: 100% !important;
    }

    .about-title {
        font-size: 36px !important;
    }

    .about-tagline {
        font-size: 18px !important;
    }

    .about-description {
        font-size: 14px !important;
    }

    #about-indicator-wrap {
        display: none !important;
    }

    /* 3. Services Section */
    #services {
        height: auto !important;
        margin-top: 0 !important;
    }

    .circle-reveal {
        position: fixed !important;
        top: 50% !important;
        border-radius: 50% !important;
    }

    .services-content {
        flex-direction: column;
        gap: 24px;
        padding: 0 6% !important;
    }

    .services-left {
        width: 100% !important;
        justify-content: center;
    }

    .cards-stack {
        width: 300px !important;
        height: 380px !important;
        margin: 0 auto;
    }

    .service-card {
        width: 280px !important;
        left: 10px !important;
    }

    .services-right {
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .service-title {
        font-size: 38px !important;
        margin-bottom: 30px;
        white-space: normal !important;
        text-align: center;
    }

    .service-subtitle {
        font-size: 18px !important;
        text-align: center;
    }

    .service-navigation {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-line {
        display: none !important;
    }

    .service-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0;
        width: 100%;
    }

    .service-list li {
        font-size: 14px !important;
        padding: 8px 16px;
        border: 1px solid #333;
        border-radius: 20px;
        margin-bottom: 0 !important;
        background: #111;
        cursor: pointer;
        color: #888;
    }

    .service-list li.active {
        font-size: 14px !important;
        border-color: #ff7900;
        color: #ff7900;
        background: #1a1a1a;
    }

    .service-blob-top,
    .service-blob-bottom {
        display: none !important;
    }

    /* 4. Portfolio Section */
    #portfolio {
        background: #f7f7f7 !important;
    }

    .portfolio-project {
        width: 45% !important;
    }

    .p1 {
        top: 20% !important;
        left: 5% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .p2 {
        top: 12% !important;
        left: 30% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .p3 {
        top: 25% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .p4 {
        top: 65% !important;
        left: 5% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .p5 {
        top: 75% !important;
        left: 25% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .p6 {
        top: 68% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
    }

    .portfolio-content {
        text-align: center;
        margin-bottom: 10px;
        padding: 0 6%;
        position: relative !important;
    }

    .portfolio-title {
        font-size: 38px !important;
    }

    .portfolio-subtitle {
        font-size: 18px !important;
    }

    .portfolio-blob-top,
    .portfolio-blob-bottom {
        display: none !important;
    }

    /* 5. Industries Section */
    .industries-section {
        flex-direction: column;
        padding: 60px 6% !important;
        gap: 40px;
    }

    .industries-left {
        width: 100% !important;
        text-align: center;
    }

    .industries-right {
        width: 100% !important;
    }

    .industries-title {
        font-size: 38px !important;
        margin-bottom: 30px;
    }

    .industries-tag {
        font-size: 18px !important;
    }

    .industry-item {
        font-size: 18px !important;
        padding: 16px 0 !important;
    }

    .industry-image-wrap {
        width: 100% !important;
        max-width: 340px !important;
        height: 240px !important;
        margin: 0 auto;
    }

    /* Contact Order Flip */
    .contact-container {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    /* Footer Overrides */
    .footer-middle-bar {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .footer-cell {
        flex: 1 1 100%;
        border-bottom: none !important;
        padding: 10px !important;
        text-align: center;
    }

    .footer-social-cell {
        flex: 0 0 auto;
        border-bottom: none !important;
        padding: 12px !important;
    }

    /* 6. Curve Section Reveal */
    .section-reveal {
        height: 150px !important;
        margin-top: -150px !important;
        /* margin-bottom: -2px; */
    }

    /* 7. Apps Horizontal Scroll (Carousel on mobile) */
    .apps-track {
        display: flex !important;
        flex-direction: row !important;
        padding: 20px 6% !important;
        gap: 20px !important;
    }

    .apps-showcase {
        width: 100% !important;
        padding: 20px 0 !important;
        margin: 0 !important;
    }

    .app-card {
        margin: 0 !important;
    }

    .apps-dots {
        display: none !important;
    }

    /* Footer Accordion styling removed so items are always listed */
    .accordion-icon {
        display: none;
    }

    .accordion-header {
        padding-bottom: 10px;
    }
}

/* Mobile Drawer (Desktop defaults hidden) */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #050505;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    padding: 30px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.drawer-header img {
    height: 32px;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Chillax', sans-serif;
    transition: color 0.3s;
}

.drawer-nav a:hover {
    color: #ff7900;
}

.drawer-cta-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 25px;
    background: #ff7900;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Accordion default icons hidden on desktop */
.accordion-icon {
    display: none;
}

/* ==================================================
   PRODUCTS PAGE STYLES
   ================================================== */

.products-hero {
    position: relative;
    padding-top: 0;
    padding-bottom: 80px;
    background: #fffdfa;
    /* Warm off-white */
    text-align: center;
}

.products-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 3rem;
}

.products-hero-tag {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #d1d1d1;
    border-radius: 30px;
    font-size: clamp(14px, 1vw + 10px, 16px);
    color: #444444;
    margin-bottom: 24px;
    font-family: 'Chillax', sans-serif;
    background: transparent;
}

.products-hero-title {
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Chillax', sans-serif;
}

.highlight-text {
    background: linear-gradient(180deg, #ffc145, #ff7900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff7900;
}

.products-hero-desc {
    font-size: clamp(14px, 1vw + 10px, 26px);
    color: #444444;
    margin: 0 auto 40px;
    max-width: 750px;
    line-height: 1.6;
    font-family: 'Chillax', sans-serif;
}

.products-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes flow-border {
    to {
        --border-angle: 360deg;
    }
}

.products-tab {
    position: relative;
    padding: 12px 28px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    background: #D9D9D933;
    color: #444444;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Chillax', sans-serif;
    z-index: 1;
}

.products-tab::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    padding: 1.5px;
    background: conic-gradient(from var(--border-angle), transparent 60%, #ff7900 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    pointer-events: none;
    animation: flow-border 2s linear infinite;
}

.products-tab:hover {
    transform: scale(1.05);
}

.products-tab .tab-icon {
    flex-shrink: 0;
}

.products-video-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.products-video-thumb {
    width: 100%;
    display: block;
}

.products-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #ff7900;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.products-bg-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-bracket {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.bg-bracket.left-bracket {
    left: 0;
}

.bg-bracket.right-bracket {
    right: 0;
}

@keyframes float-corner {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) scale(1.05) rotate(3deg);
    }
}

.products-corner-img {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 280px;
    animation: float-corner 8s ease-in-out infinite;
}

.products-corner-img.top-right {
    top: 0;
    right: 0;
}

.products-corner-img.bottom-left {
    bottom: -178px;
    left: -44px;
    animation-delay: -4s;
}

/* Major Projects */
.major-projects {
    padding: 100px 10%;
    background: #ffffff;
}

.section-title {
    font-size: clamp(42px, 5vw, 70px);
    font-family: 'Chillax', sans-serif;
    font-weight: 400;
    color: #111111;
}

.project-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
}

.project-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-image-col {
    position: relative;
}

.project-image {
    width: 100%;
    border-radius: 12px;
}

.project-content-col {
    padding: 40px;
}

.project-title {
    font-size: clamp(24px, 3vw, 50px);
    font-weight: 500;
    margin-bottom: 8px;
    font-family: 'Chillax', sans-serif;
    color: #111111;
}

.project-subtitle {
    font-size: clamp(14px, 3vw, 30px);
    color: #666666;
    margin-bottom: 24px;
    font-family: 'Chillax', sans-serif;
}

.project-desc {
    font-size: clamp(14px, 2vw, 16px);
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Chillax', sans-serif;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.project-features li {
    font-size: clamp(16px, 2vw, 20px);
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Chillax', sans-serif;
}

.project-features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/assets/images/svg/list-pointer.svg') no-repeat center center;
    background-size: contain;
}

.btn-know-more {
    position: relative;
    padding: 12px 72px 12px 32px;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    background: #ffffff;
    color: #111111;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
    font-family: 'Chillax', sans-serif;
    min-height: 48px;
    min-width: 220px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-know-more:hover {
    border-color: #ff7900;
    padding: 12px 32px 12px 72px;
}

.btn-know-more .btn-arrow {
    position: absolute;
    left: calc(100% - 40px);
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7900;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px;
}

@keyframes fishSwim {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    25% {
        transform: translateY(-50%) translateX(4px);
    }

    50% {
        transform: translateY(-50%) translateX(0);
    }

    75% {
        transform: translateY(-50%) translateX(-2px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

.btn-know-more:hover .btn-arrow {
    left: 8px;
    animation: fishSwim 0.5s ease-in-out infinite;
}

/* Websites Developed */
.websites-developed {
    background: #1a1a1a;
    padding: 100px 0;
    overflow: hidden;
}

.websites-container {
    padding-left: 10%;
}

.text-white {
    color: #ffffff !important;
}

.text-center {
    text-align: center;
}

.websites-slider {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.websites-slider::-webkit-scrollbar {
    display: none;
}

.website-card {
    background: #ffffff;
    display: flex;
    width: 75vw;
    max-width: 1100px;
    flex-shrink: 0;
    scroll-snap-align: start;
}



.card-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    width: 60%;
    padding: 60px;
}

.website-title {
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 8px;
    font-family: 'Chillax', sans-serif;
}

.website-subtitle {
    font-size: clamp(14px, 3vw, 30px);
    color: #666666;
    margin-bottom: 20px;
    font-family: 'Chillax', sans-serif;
}

.website-desc {
    font-size: clamp(14px, 2vw, 16px);
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Chillax', sans-serif;
}

.btn-know-more.shadow-btn {
    border: none;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    /* padding: 12px 12px 12px 24px; */
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: #111111;
    cursor: pointer;
}

.slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding-right: 10%;
    margin-top: 40px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff7900;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Web Applications */
.web-applications {
    padding: 100px 0;
    background: #ffffff;
}

.web-apps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 5%;
    margin-top: 60px;
}

.web-apps-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.web-apps-slider::-webkit-scrollbar {
    display: none;
}

.web-app-card {
    background: #ffffff;
    flex: 0 0 40vw;
    /* Increased width */
    max-width: 500px;
    min-width: 380px;
    overflow: hidden;
    scroll-snap-align: start;
}

.app-image-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.app-content {
    padding: 30px;
    position: relative;
}

.app-title {
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 400;
    color: #111111;
    margin-bottom: 4px;
    font-family: 'Chillax', sans-serif;
}

.app-subtitle {
    font-size: clamp(13px, 3vw, 22px);
    color: #666666;
    margin-bottom: 16px;
    font-family: 'Chillax', sans-serif;
}

.app-desc {
    font-size: clamp(14px, 2vw, 16px);
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.6;
    font-family: 'Chillax', sans-serif;
    min-height: 40px;
}

.app-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-features li {
    font-size: clamp(16px, 2vw, 20px);
    color: #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Chillax', sans-serif;
}

.app-features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/assets/images/svg/list-pointer.svg') no-repeat center center;
    background-size: contain;
}

.app-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 35%;
    background: #ffffff;
    border: 1px solid #c2c2c2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    transform: rotate(45deg);
}

.app-circle-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.app-circle-btn:hover {
    border-color: #ff7900;
    background: #fff4ea;
    transform: rotate(45deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(255, 121, 0, 0.15);
}

.app-circle-btn:hover img {
    transform: rotate(-45deg) translate(3px, -3px);
}


.slider-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7900;
    color: #ffffff;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .products-hero-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        padding-top: 5em;
    }

    .major-projects {
        padding: 60px 5%;
    }

    .project-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .project-row.reverse {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
    }

    .project-content-col {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .products-hero-title {
        font-size: 42px;
    }

    .bg-bracket {
        display: none;
    }

    .web-app-card {
        flex: 0 0 calc(100% - 20px);
    }

    .web-apps-container {
        padding: 0 20px;
        position: relative;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .slider-arrow.prev {
        left: 0;
    }

    .slider-arrow.next {
        right: 0;
    }

    .websites-container {
        padding: 0;
    }

    .websites-container .section-title {
        padding: 0 5%;
    }

    .websites-slider {
        padding: 0 5%;
    }

    .website-card {
        width: auto;
        flex: 0 0 calc(100vw - 40px);
        flex-direction: column;
    }

    .websites-slider.is-dragging,
    .web-apps-slider.is-dragging {
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
    }

    .websites-slider.is-dragging .website-card,
    .web-apps-slider.is-dragging .web-app-card {
        user-select: none;
    }

    .card-image,
    .card-content {
        width: 100%;
    }

    .card-image img {
        width: 100%;
        margin-left: 0;
    }
}

.websites-slider.is-dragging,
.web-apps-slider.is-dragging {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.websites-slider.is-dragging .website-card,
.web-apps-slider.is-dragging .web-app-card {
    user-select: none;
}

/* ==========================
   JOIN OUR TEAM
========================== */

.team-section {
    background: #050505;
    padding: 80px 80px;
    overflow: hidden;
    color: #ffffff;
    margin-top: -2px;
}

.team-star-icon {
    position: absolute;
    right: 0px;
    top: -3rem;
    /* Aligned with title level */
    width: 250px;
    height: auto;
    z-index: 1;
    /* Sit behind the header text */
    opacity: 0.9;
    pointer-events: none;
}

.team-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(120px);
}

.team-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-subtitle {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #a0a0a0;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.team-carousel-wrap {
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateX(120px);
}

.team-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 60px 40px;
    /* Increased to allow top scaling */
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: center;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 calc(33.333% - 16px);
    /* 3 items per row */
    aspect-ratio: 3 / 4;
    background: #f4f4f4;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.team-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #f4f4f4;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

@media (max-width: 1024px) {
    .team-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 85%;
    }
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px;
    z-index: 5;
    opacity: 0;
    /* Hidden by default, GSAP will animate */
    pointer-events: none;
}

/* .team-info {
    text-align: center;
    width: 100%;
} */
.team-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    /* Adjust as needed */
    z-index: 6;
    text-align: left;
        text-align: center;

}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
    margin-top: -4px;
    font-family: 'Chillax', sans-serif;
    text-transform: uppercase;
}

.team-designation {
    font-size: 11px;
    color: #fff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* .team-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 121, 0, 0.8) 0%, rgba(255, 121, 0, 0) 100%);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
} */
.team-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top,
            rgba(255, 121, 0, 0.85) 0%,
            rgba(255, 121, 0, 0) 100%);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {

    .team-section {
        padding: 60px 0;
    }

    .team-header-content {
        padding: 0 20px;
    }

    .team-carousel-wrap {
        padding: 0;
    }

    .team-carousel {
        gap: 16px;
        padding: 40px 20px;
        scroll-padding-left: 20px;
        scroll-padding-right: 20px;
    }

    .team-card {
        flex: 0 0 calc(90% - 16px);
        aspect-ratio: 3 / 4;
    }

    .team-card-overlay {
        padding: 10px 20px;
    }

    .team-name {
        font-size: 16px;
    }

    .team-designation {
        font-size: 10px;
    }
}

/* ==========================
   SERVICE BANNER
========================== */

.service-banner-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-image: url('/assets/images/service-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 20px;
    z-index: 1;
    background-position: bottom;
}

.service-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.service-pill {
    padding: 8px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #333;
    margin-bottom: 30px;
    background: transparent;
}

.service-heading {
    font-size: clamp(32px, 5vw, 80px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 24px;
}

.service-gradient-text {
    background: linear-gradient(90deg, #ff9b44 0%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 10px 20px rgba(255, 121, 0, 0.3));
}

.service-subtext {
    font-size: clamp(16px, 1.5vw, 20px);
    color: #444;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.service-connect-btn {
    background: #ffffff;
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.scroll-down-wrapper {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.scroll-arrow-center {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-watermark {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(150px, 20vw, 300px);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 1024px) {
    .service-banner-section {
        min-height: 600px;
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .service-banner-section {
        min-height: 500px;
        padding-top: 80px;
    }

    .scroll-down-wrapper {
        bottom: 20px;
        right: 20px;
        width: 80px;
        height: 80px;
    }
}

/* ==========================
   SERVICE CARDS SECTION
========================== */
.service-cards-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: visible;
}

.sc-watermark-container {
    position: sticky;
    top: 15vh;
    /* Pushed down to prevent top of text getting cut off */
    height: 30vh;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sc-watermark {
    font-size: clamp(100px, 15vw, 250px);
    font-weight: 800;
    color: #1717171A;
    /* #171717 at 10% opacity */
    line-height: 1;
    font-family: 'Chillax', sans-serif;
    /* Removed translateY so it sits in the middle of the 35vh container */
}

.sc-cards-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

.sc-card {
    width: 100%;
    position: sticky;
    /* top is set inline dynamically */
    border-radius: 40px;
    margin-bottom: 0;
    transform-origin: top center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    z-index: 5;
    overflow: hidden;
    /* Ensure inner content does not bleed through the 40px border-radius */
}

.sc-card::-webkit-scrollbar {
    display: none;
}

.sc-theme-dark {
    background: #111111;
    color: #ffffff;
}

.sc-theme-light {
    background: #EEEEEE;
    color: #111111;
}

.sc-card-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.sc-card-image-col {
    flex: 1;
    min-width: 300px;
}

.sc-card-image-col img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.sc-card-content-col {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.sc-card-title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    margin: 0;
}

.sc-title-light {
    font-weight: 300;
}

.sc-card-number {
    font-size: clamp(80px, 10vw, 150px);
    font-weight: 200;
    line-height: 0.8;
    color: #474747;
    font-family: 'Chillax', sans-serif;
}

.sc-theme-light .sc-card-number {
    color: rgba(0, 0, 0, 0.1);
}

.sc-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-card-features li {
    font-size: clamp(16px, 1.5vw, 24px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Chillax', sans-serif;
}

.sc-card-features li::before {
    content: '+';
    color: #ff7900;
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
}

.sc-theme-dark .sc-card-features li {
    color: #cccccc;
}

.sc-theme-light .sc-card-features li {
    color: #444444;
}

.sc-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}


@media (max-width: 1024px) {
    .sc-card-inner {
        padding: 24px 20px;
        gap: 20px;
        flex-direction: column;
    }

    .sc-card-image-col {
        width: 100%;
        order: -1;
    }

    .sc-card-image-col img {
        width: 100%;
        max-height: 220px;
        height: auto;
        margin: 0;
        object-fit: cover;
        border-radius: 16px;
    }

    .sc-card-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 15px;
        gap: 15px;
        margin-top: 0;
    }

    .sc-card-number {
        font-size: 48px;
        line-height: 0.9;
    }

    .sc-card-title {
        font-size: 28px;
    }

    .sc-card-features {
        margin: 15px 0 30px 0;
        gap: 10px;
    }

    .sc-card-features li {
        font-size: 16px;
        margin-bottom: 0;
    }

    .sc-card-features li::before {
        font-size: 20px;
    }

    .sc-card:not(:last-child) {
        margin-bottom: 60vh;
    }

    /* Make the section background black so the padding runway matches Card 5 seamlessly */
    .service-cards-section {
        margin-bottom: -60vh;
    }

    .sc-cards-wrapper {
        padding-bottom: 60vh !important;
        /* Provide natural scroll runway for Card 5 to stick */
    }

    .sc-watermark-container {
        top: 5vh;
        height: 20vh;
    }

    .sc-watermark {
        font-size: clamp(40px, 15vw, 120px);
    }

    .sc-card {
        --sc-top-base: 25vh;
    }
}

/* ==========================
   OTHER SERVICES
========================== */

.other-services-section {
    background: #ffffff;
    position: relative;
    padding-bottom: 100px;
    z-index: 9998;
    /* Must be extremely high to beat GSAP's automatic inline z-index on pinned elements */
    transform: translateZ(0);
    /* Hardware acceleration to prevent iOS Safari repaint flickering */
    overflow-x: hidden;
    /* Prevent horizontal scroll from GSAP offscreen entrance animations */
}



.os-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 0;
    gap: 60px;
    align-items: center;
}

.os-header-content {
    flex: 0 0 35%;
    opacity: 0;
    transform: translateY(60px);
}

.os-subtitle {
    font-size: clamp(24px, 2vw, 42px);
    font-weight: 300;
    color: #474747;
    margin-bottom: 10px;
    font-family: 'Chillax', sans-serif;
}

.os-title {
    font-size: clamp(40px, 4vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 24px;
    font-family: 'Chillax', sans-serif;
}

.os-text {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.os-nav-buttons {
    display: flex;
    gap: 15px;
}

.os-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #466779;
    /* From design */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.os-nav-btn:hover {
    background: #2c424f;
}

.os-nav-btn svg {
    width: 20px;
    height: 20px;
}

.os-carousel-wrap {
    flex: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px);
}

.os-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 0 20px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.os-carousel::-webkit-scrollbar {
    display: none;
}

.os-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.os-card-inner {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.os-icon-wrapper {
    margin-bottom: 30px;
}

.os-card-title {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.2;
    color: #111111;
    margin-bottom: 20px;
    font-family: 'Chillax', sans-serif;
}

.os-title-light {
    font-weight: 300;
}

.os-card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
    .os-container {
        flex-direction: column;
        padding-top: 60px;
        gap: 40px;
    }

    .os-header-content {
        flex: 1;
        text-align: center;
        align-items: center;
    }

    .os-carousel-wrap {
        width: 100%;
    }

    .os-nav-buttons {
        justify-content: center;
    }

    .os-carousel {
        padding-left: 0;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .os-card {
        flex: 0 0 85%;
        min-width: 280px;
    }
}