html,
body {
    font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}



@font-face {
    font-family: "Satoshi";
    src: url("fonts/Satoshi-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("fonts/Satoshi-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("fonts/Satoshi-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("fonts/Satoshi-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}





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

body {
    background: #0c0c0c;
}

.navbar {
  
  top: 0;
  left: 0;
  width: 100%;

  height: 72px;
  padding: 0 56px;

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

  background: linear-gradient(to right, #000000, #0d0d0d);
  z-index: 1000;
}









.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 370px;      /* 🔥 PERFECT size for your logo */
  width: auto;
  display: block;
  margin-left: -155px;
}


.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo .beyond {
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.logo .model {
  font-size: 16px;
  font-style: italic;
  opacity: 0.7;
  line-height: 1;
  transform: translateY(-6px); /* subtle lift like your logo image */
}





/* Smooth scrolling ALL EFFECT DOWN SCROLL*/
html {
    scroll-behavior: smooth;
}

#process,
#testimonials,
#work,
#FAQ {
    scroll-margin-top: 90px;
    /* adjust to navbar height */
}


.nav-links a.active {
    color: #fd5504;
}





/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fd5504;
}



.nav-cta {
    position: fixed;
    top: 16px;
    right: 24px;

    background: #ff6a00;
    color: #000;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);

    transition: all 0.35s ease;
    z-index: 2000;
}

/* when visible */
.nav-cta.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}





/* --- Hero Section --- */
.hero-section-container{
    display: flex ;
    justify-content: center;
    align-items:center;
    height: fit-content;
}
.hero-section {
    display: flex;
        /* border: 1px solid green; */

    justify-content: space-between;
    /* align-items: center; */
    /* max-width: 100vw; */
    /* margin: 40px 40px; */
    padding: 0 50px;
    height: calc(100vh - 100px);

    /* Fill remaining screen */
    /* GRID BACKGROUND */
    .bg-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        z-index: 0;
    }

    /* SOFT GLOW */
    .bg-glow {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.09), transparent 60%);
        z-index: 0;
    }
}

main.hero-section {
    max-width: 95vw;
    margin-top: 15px;
}

/* Left Column */

/* HERO */
.hero {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
        /* border: 1px solid green; */

}

.hero-container {
    max-width: 1200px;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
}

/* LEFT */
.hero-title {
    /* font-size: 56.30px; */
    font-size:56.54px;
    line-height: 1.0;
    font-weight: 500;
    color: #ffffff;
    margin-top: -40px;
    margin-top: 30px;
    /* margin-left: -37px; */

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.hero-title {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.hero-sub {
    max-width: 675px;
    /* controls line length (VERY IMPORTANT) */
    margin-top: 54px;

    font-size: 18px;
    line-height: 1.7;
    /* margin-left: -37px; */
    /* airy premium spacing */
    font-weight: 400;

    color: rgba(255, 255, 255, 0.72);
    /* soft gray, not pure white */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);

    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}


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

.highlight {
    color: #fd5504;
    /* warm amber like reference */
    font-weight: 900;
    position: relative;


}

.spark-icon {
    position: absolute;
    top: 50px;
    right: 700px;
    animation: pulse 2s infinite;
}



.hero-section {
    min-height: 100vh;
    width: 100vw;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    overflow-x: hidden;
    padding: 0 20px;

    /* GRID + GRADIENT */
    background-image:
        linear-gradient(360deg,
            rgba(5, 5, 5, 0.4) 10%,
            rgba(5, 5, 5, 0.4) 17%,
            rgba(5, 5, 5, 1) 100%),
        linear-gradient(rgba(255, 255, 255, 0.09) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px);

    /* IMPORTANT PART */
    background-size:
        100% 100%,
        /* gradient */
        60px 60px,
        /* horizontal grid */
        60px 60px;
    /* vertical grid */

    background-position:
        center,
        top left,
        top left;
}






/* CTA BUTTON */
/* CTA BUTTON */
.cta-btn {
    background: #fd5504;
    /* warm amber like reference */
    color: #000;
    padding: 20px 35px;
    margin-top: 76px;
    /* margin-left: -37px; */
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;

    border: none;
    border-radius: 17px;
    /* softer pill shape */
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(255, 114, 71, 0.35);
}

.free-note {

    margin-left: 160px;
    margin-top: -120px;
}

.free-note text {
    font-size: 17px;
    font-style: italic;
}


/* Right Column (Moving Visuals) */
.hero-visuals {
    height: 650px;
    position: relative;
    overflow: hidden;
}


.reels-track-container {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.reels-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    gap: 0;
    animation: none
}

.reels-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* padding: 10px; */

    animation: scrollUp 18s linear infinite;
    will-change: transform;
}

#col2 .reels-inner {
    animation-delay: -9s;
}



#col2 {
    animation-delay: -7.5s;
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.reels-track-container {

    margin-right: 20px;

}



.reel-card {
    position: relative;
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

}

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.card-info span {
    font-weight: 400;
    opacity: 0.8;
    font-size: 12px;
}


:root {
    --bg-color: #030303;
    --grid-line: #1a1a1a;
    --text-color: #ffffff;
    --blob-green: #dcfce7;
    --blob-purple: #c4b5fd;
    --blob-yellow: #fef08a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}

/* The Main Container with Grid Background */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: -59px;
    gap: 300px;
    /* Adjust spacing between items */
    position: relative;
    overflow: hidden;
    padding: 100px 10px;
    background-color: var(--bg-color);

    /* GRID + GRADIENT */
    background-image:
        linear-gradient(360deg,
            rgba(5, 5, 5, 0.4) 10%,
            rgba(5, 5, 5, 0.4) 10%,
            rgba(5, 5, 5, 1) 100%),
        linear-gradient(rgba(255, 255, 255, 0.09) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px);

    background-size:
        150% 150%,
        60px 60px,
        60px 60px;
}

.stats-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;

    /* THIS IS THE FADE */
    background: linear-gradient(to bottom,
            rgba(3, 3, 3, 0) 0%,
            rgba(3, 3, 3, 0.6) 20%,
            #030303 100%);

    pointer-events: none;
    z-index: 5;
}




/* Individual Card Styling */
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
}



/* SVG Styling */
.icon-wrapper {
    position: relative;
    width: 94px;
    height: 94px;
    margin-bottom: 16px;
}

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

/* icon in center */
.icon-svg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 42px;
    height: 42px;
    fill: #050505;
}


/* Typography */
.stat-card {
    align-items: flex-start;

}

h3 {
    margin: 0;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
}


.stat-card h3 {
    letter-spacing: 0.1px;
}







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

body {
    background: #050505;
    color: #eaeaea;
}



/* SECTION */
.testimonials {
    position: relative;
    min-height: 100vh;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
    margin: top -4px;
}

/* GRID BACKGROUND */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* SOFT GLOW */
.bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.09), transparent 60%);
    z-index: 1;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.testimonial-grid {

    justify-content: center;
}

/* CARD */
.test-card {
    width: 350px;
    height: 400px;
    padding: 32px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.02));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

/* TEXT */
.quote {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* HIGHLIGHTS */
.txt-yellow {
    color: #3fef10;
    font-weight: 600;
}

.txt-purple {
    color: #b9b7ff;
    font-weight: 600;
}

/* AUTHOR */
.author {
    margin-top: 20px;
}

.author strong {
    display: block;
    font-size: 14px;
}

.author span {
    font-size: 12px;
    opacity: 0.6;
}

/* CARD POSITIONS */
.center {
    transform: scale(1.05);
}

.tilt-left {
    transform: rotate(-8deg);
}

.tilt-right {
    transform: rotate(8deg);
}

/* HOVER */
.test-card:hover {
    transform: translateY(-10px) scale(1.06);
}

/* FRAMER BLUR EDGES */
.fade-top,
.fade-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 3;
    pointer-events: none;
}

.fade-top {
    top: 0;
    background: linear-gradient(to bottom, #050505 20%, transparent);
}

.fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, #050505 20%, transparent);
}



/* Video Showcase Styling */
.video-showcase {
    background-color: #000;
    padding: 80px 0;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.showcase-title .highlight {
    color: #7AF5B4;
    /*highlight*/
}

.showcase-subtitle {
    color: #a1a1a1;
    margin-bottom: 50px;
    font-size: 1.1rem;
}




.video-overlay-text.middle {
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 1.5rem;
}

.video-overlay-text.center {
    top: 55%;
    text-align: center;
    font-size: 1.2rem;
}

.styled-text {
    display: block;
    font-style: italic;
    font-size: 2rem;
    color: #F8D57E;
}

.text-video {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
    color: #000;
}

.text-video .small {
    font-size: 1rem;
}

.text-video .large {
    font-size: 3rem;
    font-weight: 900;
    line-height: 0.8;
}






/* End of work Showcase Styling */

:root {
    --bg: #000;
    --card-border: #262626;
    --highlight: #F8D57E;
    --purple: #A29BFE;
}

body {
    background-color: var(--bg);
    color: white;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Testimonials Section svg */
.testimonials svg {
    position: absolute;
    left: 30px;
}

/* Testimonials with Grid Background */
.testimonials {
    margin-top: -40px;
    position: relative;
    background-image:
        linear-gradient(to right, #111 1px, transparent 1px),
        linear-gradient(to bottom, #111 1px, transparent 1px);
    background-size: 40px 40px;
    /* Grid Size */
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.test-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.tilt-left {
    transform: rotate(-5deg) translateY(20px);
}

.tilt-right {
    transform: rotate(5deg) translateY(20px);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.txt-yellow {
    color: var(--highlight);
    font-weight: bold;
}

.txt-purple {
    color: var(--purple);
    font-weight: bold;
}

.author strong {
    display: block;
    font-size: 1rem;
}

.author span {
    color: #666;
    font-size: 0.8rem;
}



/* SECTION */
.shorts {
    position: relative;
    /* min-height: 100vh; */
    padding: 100px 10px;
    overflow: hidden;
    text-align: center;
}




/* BACKGROUND FADE */
.shorts::before,
.shorts::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 3;
}

.shorts::before {
    top: 0;
    background: linear-gradient(to bottom,
            #050505 0%,
            rgba(5, 5, 5, 0.85) 40%,
            rgba(5, 5, 5, 0) 100%);
}

.shorts::after {
    bottom: 0;
    background: linear-gradient(to top,
            #050505 0%,
            rgba(5, 5, 5, 0.85) 40%,
            rgba(5, 5, 5, 0) 100%);
}


/* GRID */
.bg-grid {
    z-index: 0;
}

.bg-glow {
    z-index: 1;
}

.title,
.subtitle,
.video-row {
    position: relative;
    z-index: 2;
}

/* GLOW */
.bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 60%);
    z-index: 0;
}

/* TEXT */
.title {
    position: relative;
    margin-top: -30px;
    z-index: 2;
    font-size: 72px;
    font-weight: 900;
}

.title span {
    color: #fd5504;
}

.subtitle {
    margin-top: 12px;
    opacity: 0.7;
    font-size: 15px;
    z-index: 2;
    position: relative;
}

/* VIDEO ROW */
.video-row {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 24px;
    z-index: 2;
    position: relative;
}

/* VIDEO CARD */
.video-card {
    position: relative;
    width: 350px;
    height: 570px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.04);
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* for shorts / reels */
  border-radius: 16px;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* VIDEO */
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SOUND BUTTON */
.sound-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(8px);
}






/* trial come now video */

/* SECTION */
.launch-section {
    margin-top: -40px;
    position: relative;
    min-height: 100vh;
    padding: 120px 80px;
    overflow: hidden;
}

/* BACKGROUND EFFECT IMAGE */


/* BACKGROUND GLOW */
.wrapper {
    position: relative;
    width: 100%;
    height: 10vh;
    /* Full height */
}

.bubble {
    position: absolute;
    bottom: -100px;
    /* Start below the viewport */
    background: rgba(255, 255, 255, 0.6);
    /* Bubble color */
    border-radius: 50%;
    /* Make it round */
    animation: rise 10s infinite;
    /* Animation properties */
}

/* Varying sizes for bubbles */
.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 70%;
    animation-delay: 3s;
}

.bubble:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 20%;
    animation-delay: 4s;
}

.bubble:nth-child(6) {
    width: 80px;
    height: 80px;
    left: 40%;
    animation-delay: 5s;
}

.bubble:nth-child(7) {
    width: 20px;
    height: 20px;
    left: 60%;
    animation-delay: 6s;
}

.bubble:nth-child(8) {
    width: 90px;
    height: 90px;
    left: 80%;
    animation-delay: 7s;
}

.bubble:nth-child(9) {
    width: 50px;
    height: 50px;
    left: 15%;
    animation-delay: 8s;
}

.bubble:nth-child(10) {
    width: 60px;
    height: 60px;
    left: 85%;
    animation-delay: 9s;
}

@keyframes rise {
    to {
        transform: translateY(-100vh);
        /* Move up out of view */
        opacity: 0;
        /* Fade out */
    }
}


/* WRAPPER */
.launch-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 100px;
}


/* TEXT */
.launch-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 840px;
}

.launch-highlight {
    color: #fd5504;
    display: inline-block;
}

.launch-spark {
    font-size: 20px;
    margin-left: 6px;
    opacity: 0.9;
}


.launch-description {
    margin-top: 28px;
    max-width: 860px;
    font-size: 18px;
    line-height: 1.75;
    opacity: 0.75;
}



/* CTA */
.gta-btn {
    margin-top: 36px;
    padding: 16px 34px;
    font-size: 15px;
    margin-left: 3px;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
     background: #fd5504;
    /* warm amber like reference */
    color: #000;
    border: none;
    border-radius: 15px;
    /* softer pill shape */
    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(255, 114, 71, 0.35);
}


.gta-btn:hover {
    transform: translateY(-2px);
}
.holo-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

/* Light lift (NO SCALE JITTER) */
.holo-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* HOLOGRAPHIC SWEEP */
.holo-btn::before {
    content: "";
    position: absolute;
    inset: -150%;

    background: linear-gradient(120deg,
            transparent 40%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.35),
            transparent 60%);

    transform: translateX(-60%) rotate(25deg);
    opacity: 0;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    pointer-events: none;
    z-index: 0;
}

/* Animate sweep on hover */
.holo-btn:hover::before {
    opacity: 1;
    transform: translateX(60%) rotate(25deg);
}

/* Keep text above effect */
.holo-btn>* {
    position: relative;
    z-index: 1;
}


/* VIDEO CARD */
.launch-video-box {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.95),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}


.launch-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SOUND BUTTON */
.launch-sound-toggle {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(6px);
    visibility: hidden;
}


/*  Process TIME */

.header {
    text-align: center;
    padding: 50px 20px 60px;
}

.header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.header p {
    color: #888;
    font-size: 1rem;
}

.header .highlight {
    color: #fd5504;
}

/* --- 3. TIMELINE CONTAINER --- */
.timeline-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* The vertical connecting line */
.timeline-line {
    position: absolute;
    left: 58px;
    /* Centers line with the circles */
    top: 30px;
    bottom: 50px;
    /* Stops before the very bottom */
    width: 2px;
    background-color: #ff4d4d;
    z-index: 0;
}

/* --- 4. INDIVIDUAL STEPS --- */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    /* Above the line */

    /* Animation Setup */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth ease-out */
}

/* The Red Number Circle */
.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #fd5504;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    /* Glow effect */
    margin-right: 30px;
}

/* The Content Card */
.step-content {
    flex-grow: 1;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.step-content:hover {
    border-color: #555;
    transform: translateX(5px);
    /* Subtle hover effect */
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- 5. ANIMATION CLASS (Triggered by JS) --- */
.step.visible {
    opacity: 1;
    transform: translateY(0);
}


/* process section header */
.process-section header h1{
    font-size: 72px;
}

.process-section {
  position: relative;
  min-height: 100vh;
  background-color: #050505;
  overflow: hidden;
  padding-bottom: 120px;
  /* GRID + FADE */
  background-image:
    linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.85) 55%,
      #050505 100%
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    );

  background-size:
    100% 100%,
    60px 60px,
    60px 60px;

  background-position:
    top,
    center,
    center;
}
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 0;
}

@media screen and (max-width: 480px) {
    .process-section .header h1{
       font-size: 36px;

    }
}

/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 100px 20px 120px;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* ================= LEFT TITLE ================= */

.faq-title {
    font-size: 42px;
    font-weight: 700;
    position: relative;
}

.faq-title span {
    display: inline-block;
    position: relative;
}

.faq-title span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #9affb3;
    border-left: none;
    border-bottom: none;
    right: -20px;
    top: -8px;
    transform: rotate(15deg);
}

/* ================= FAQ ITEMS ================= */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 22px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: #202020;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.6;
    margin-top: 12px;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-nav a {
    color: inherit;
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 14px;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    color: #ffb347;
}


.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9a9a9a;
}

.footer-social a {
    color: #9a9a9a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.25s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Dot separator */
.footer-social span {
    opacity: 0.4;
    user-select: none;
}

/* Optional brand hover accent */
.footer-social a:hover i.fa-instagram {
    color: #E1306C;
}

.footer-social a:hover i.fa-x {
    color: #ffffff;
}

.footer-social a:hover i.fa-linkedin {
    color: #0A66C2;
}

.footer-social a:hover i.fa-youtube {
    color: #FF0000;
}










/* ================= HOLOGRAPHIC BUTTON ================= */

.holo-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

/* Light lift (NO SCALE JITTER) */
.holo-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* HOLOGRAPHIC SWEEP */
.holo-btn::before {
    content: "";
    position: absolute;
    inset: -150%;

    background: linear-gradient(120deg,
            transparent 40%,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.35),
            transparent 60%);

    transform: translateX(-60%) rotate(25deg);
    opacity: 0;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    pointer-events: none;
    z-index: 0;
}

/* Animate sweep on hover */
.holo-btn:hover::before {
    opacity: 1;
    transform: translateX(60%) rotate(25deg);
}

/* Keep text above effect */
.holo-btn>* {
    position: relative;
    z-index: 1;
}








/* company logo section */

.flywheel-wrap {
  width: 100%;
  overflow: hidden;
  background: #050505;
  padding: 90px 0;
  position: relative;
}

.flywheel-track {
  display: flex;
  align-items: center;
  gap: 0px;
  width: max-content;
  animation: flywheelMove 75s linear infinite;
}

.fly-item {
  flex-shrink: 0;
}

.fly-item img {
  width: 290px;          /* 🔽 better size */
  height: auto;
  margin-right: -1px;   /* 🔥 THIS controls spacing */
  margin-top: -40px;
}


/* Smooth infinite motion */
@keyframes flywheelMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Top fade */
.flywheel-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(
    to top,
    rgba(3, 3, 3, 0) 0%,
    #030303 100%
  );
  z-index: 3;
  pointer-events: none;
}









/* responsiveness media query */

/* navbar */

 

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 2001;
}

.menu-toggle .bar {
    width: 26px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

/* 2. Mobile Responsive Logic */
@media screen and (max-width: 768px) {
    
    .menu-toggle {
        display: flex; 
    }



.logo img {
  height: 300px;      
  width: auto;
  display: block;
}

    .nav-links {
        display: flex;
        position: fixed;
        top: 0px;
        right: -100%; 
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s ease;
        z-index: 2000;
    }

    .nav-links.active {
        right: 0; 
    }

    .nav-links a {
        font-size: 18px;
        font-weight: 500;
        padding: 15px 0;
    }

    .mobile-cta {
        background: #ffb84d !important;
        color: #000 !important;
        padding: 15px 30px !important;
        border-radius: 8px;
        margin-top: 20px;
        text-align: center;
        width: fit-content;
    }

    /* Hamburger Animation to*/
    #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }





    /* --- Hero Section --- */


@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column; 
        height: auto;
        /* padding: 100px 20px 40px 20px;  */
        margin: 0;
        /* align-items: center;
        text-align: center; */
        overflow-x: hidden;

 
    max-width: 100vw;
    margin: 20px 10px;
    padding: 0 10px;

        
    }

    .cta-btn {
        padding: 10px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        z-index: 2;
        
    }

    


    /* Adjust Title for Mobile */
    .hero-title {

        font-size: 8vw; 
        margin-left: 0;
        margin-top: 0;
        
        line-height: 1.2;
        /* text-align: justify; */
    }

    @media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

    /* Adjust Subtext */
    .hero-sub {
        font-size: 16px;
        margin-left: 0;
        margin-top: 20px;
                

    }

    .cta-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        margin-left: 0;
        margin-top: 40px;
        width: 100%;
        max-width: 300px; 
        padding: 18px 0;
    }

    .free-note {
        margin-right: -320px;
        margin-top: -120px;
        transform: scale(0.8); 

    }

    

    .spark-icon {
        display: none;
        
    }

    .reels-section {
        margin-top: 30px;
          width: 100%;
    height: 100%;
    

    }

    .hero-visuals {
        height: 450px; 
        
    }

    .reel-card {
        width:auto; 
        height: 240px;

    
    }

    .reels-track-container {
        gap: 7px;
        margin-right: 0;
    }

    .reels-inner {
        animation-duration: 25s;
        padding: 2px;
    }

    /* Adjust Card Info text size */
    .card-info {
        font-size: 11px;
        padding: 8px;
    }
}



}


/* iPhone 14 / 15 / 16 */
@media (max-width: 430px) {

  .reels-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .reel-card {
    width: 100%;
    height: 260px;   /* sab same height */
    border-radius: 16px;
    overflow: hidden;
  }

  /* IMPORTANT: first reel ka special size hatao */
  .reel-card:first-child {
    grid-column: auto;
    height: 260px;
  }

  .reel-card img,
  .reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}




@media screen and (max-width: 450px){
    .free-note {
        margin-right: -570px;
        margin-top: -120px;
        transform: scale(0.8); 

    }
}


/*  TABLET RESPONSIVE (iPads) */
@media screen and (max-width: 1024px) {
    .stats-section {
        gap: 80px; 
        padding: 80px 40px;
        justify-content: space-around;
    }
    
    .stat-card h3 {
        font-size: 22px; /* smaller for tablets */
    }
}

/*  mobile responsive for small screens */
@media screen and (max-width: 768px) {
    .stats-section {
        flex-direction: column; 
        align-items: center;    
        gap: 60px;              
        margin-top: 0;          
        padding: 60px 20px;
        text-align: center;     
    }

    .stat-card {
        align-items: center;    
        max-width: 100%;
    }

    .icon-wrapper {
        width: 80px;           
        height: 80px;

    }

    .stat-card h3 {
        font-size: 24px;       
        line-height: 1.3;
        margin-top: 10px;
    }
    
    .stats-section {
        background-size: 100% 100%, 40px 40px, 40px 40px; 
    }
}





@media screen and (max-width: 1024px) {
    .flywheel-wrap {
        padding: 5px 0; 
    }

    .fly-item img {
        width: 200px; 
        margin-top: -20px;
    }

    .flywheel-track {
        animation-duration: 50s; 
    }
}

/* MOBILE responsive */
@media screen and (max-width: 768px) {
    .flywheel-wrap {
        padding: 5px 0;
    }

    .flywheel-wrap::before {
        height: 80px; 
    }

    .fly-item img {
        width:140px; 
        margin-top: -10px;
        margin-right :-20px; 
    }

    .flywheel-track {
        animation-duration: 35s; 
    }
}



/* testomonial responsive */

@media screen and (max-width: 1100px) and (min-width: 769px) {
    .testimonial-grid {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        gap: 40px;
        padding: 40px 10px;
    }

    .test-card {
        width: 45%; 
        height: auto;
        min-height: 350px;
        
    }

    .test-card.tilt-left {
        transform: rotate(-3deg) translateY(10px);
    }

    .test-card.center {
        transform: rotate(2deg) translateY(-10px);
        z-index: 5; 
    }

    .test-card.tilt-right {
        transform: rotate(-2deg) translateX(10px);
    }

    .test-card:hover {
        transform: rotate(0deg) scale(1.05) translateY(-10px);
        z-index: 10;
    }
}

/* MOBILE LAYOUT (768px and below)  */
@media screen and (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;

    }

    .test-card {
        width: 90%;
        font-size: 16px;
        max-width: 380px;
        height: auto;
        transform: rotate(-1deg);
       padding: 20px;
    }
   .center .author{
        margin-top: -40px;

    }

     .tilt-left .author{
        margin-top: -20px;

    }
    
     .tilt-right .author{
        margin-top: -40px;

    }
    .test-card.tilt-right {
        transform: rotate(1deg);
    }
}




/* TABLET LAYOUT  */
@media screen and (max-width: 1200px) {
    .launch-section {
        padding: 80px 40px;
    }

    .launch-wrapper {
        gap: 50px; 
    }

    .launch-heading {
        font-size: 36px; 
        text-align: center;
    }

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

/* MOBILE & SMALL TABLET*/
@media screen and (max-width: 1024px) {
    .launch-wrapper {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .launch-text {
        order: 1; 
        display: flex;
        flex-direction: column;
        align-items: cente;
        
    }

    .launch-heading {
        max-width: 100%;
        font-size: 32px;
        text-align: justify;
    }

    .launch-description {
        max-width: 100%;
        font-size: 16px;
        text-align: left; 
        margin: 28px auto;
    }

    .launch-video-box {
        order: 2; 
        width: 100%;
        max-width: 500px; 
        margin: 40px auto 0;
    }

    .launch-video {
        border-radius: 12px; 
    }
}

/* SMARTPHONE (Below 480px) */
@media screen and (max-width: 480px) {
    .launch-section {
        padding: 60px 20px;

    }

    .launch-heading {
        font-size: 28px; 
        text-align:start ;
    }

    .launch-highlight {
        display: inline; 
    }

    .launch-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .gta-btn {
        width: 100%; /* Full width button is easier to tap */
        padding: 16px;
    }

    .bubble:nth-child(even) {
        display: none; 
    }
}

.launch-highlight {
    position: relative;
    text-shadow: 0 0 15px rgba(253, 85, 4, 0.3);
}

@media (hover: hover) {
    .launch-video-box:hover {
        transform: scale(1.02);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
}



/* --- RESPONSIVE SHORTS  */

@media screen and (max-width: 1024px) {
    .shorts {
        padding: 65px 0;
        /* margin-top: 70px ; */
    }

    .title {
        font-size: clamp(32px, 8vw, 48px); 
        padding: 0 20px;
        margin-top: 33px;
    }

    .subtitle {
        font-size: clamp(14px, 4vw, 16px);
        padding: 0 40px;
        margin-top: 15px;
        line-height: 1.5;
    }

    .video-row {
        margin-top: 40px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        
        /* padding-left: 10px;  */
        margin-left: 10px;
        
        
        gap: 15px;
        
        /*  smooth mobile feel */
        scroll-snap-type: x mandatory;
        scroll-padding-left: 30px; 
        -webkit-overflow-scrolling: touch;
    }

    .video-row::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        flex: 0 0 78%; 
        width: 68%;
        height: auto;
        aspect-ratio: 10 / 14;
        
        scroll-snap-align: start; 
        
        transform: none !important; 
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

/*  for small devices */
@media screen and (max-width: 480px) {
    .video-row {
        padding-left: 20px; 
        scroll-padding-left: 20px;
        gap: 12px;
    }

    .video-card {
        flex: 0 0 82%; 
    }
}  




/* faq media query */


@media screen and (max-width: 1024px) {
    .faq-section {
        padding: 80px 40px;
    }

    .faq-container {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    .faq-title {
        text-align: center;
        font-size: 36px;
    }

    .faq-title span::after {
        right: -15px; 
        top: -5px;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
}                

/* SMARTPHONE (Below 768px) */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-title {
        font-size: 28px; 
    }

    .faq-item {
        padding: 16px 18px;
    }

    .faq-question {
        font-size: 14px; 
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.5;
    }

    .faq-item.active .faq-answer {
        max-height: 400px; 
    }
}



/* VERY SMALL PHONES (Below 400px) */
@media screen and (max-width: 400px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-item {
        border-radius: 8px; 
    }
}

.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}





/* footer media query */

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px 60px; 
        text-align: center;
    }

    .footer-container {
        flex-direction: column; 
        justify-content: center;
        gap: 25px;
    }

    .footer-left {
        justify-content: center;
        font-size: 22px; 
        letter-spacing: 0.5px;
    }

    .footer-social {
        justify-content: center;
        gap: 15px;
        font-size: 30px;
        
    }

    .footer-bottom {
        margin-top: 40px;
        justify-content: center; 
        flex-direction: column;
        gap: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.05); 
        padding-top: 20px;
    }

    .footer-bottom div {
        font-size: 14px;
        opacity: 0.6;
    }
}

/* small screens */
@media screen and (max-width: 480px) {
    .footer-social span {
        display: none; 
    }
    
    .footer-social {
        gap: 20px;
    }
}


/* Swiper specific adjustment */
.myReelsSwiper {
    width: 100%;
    padding: 60px 15px !important; /* Spacing for cards and shadows */
    overflow: visible; /* To see the next slide peeking */
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Video Card adjustments for Desktop & Mobile */
.video-card {
    width: 100%; 
    max-width: 350px; /* Desktop width limit */
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Remove hover scale on mobile for better UX */
@media (min-width: 1024px) {
    .video-card:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

@media (max-width: 768px) {

    .myReelsSwiper {
        padding: 40px 10px !important;
    }

}






/* Swiper prev next btn  */
.myReelsSwiper {
    border-radius: 2rem;
    overflow: hidden;
}

/* Controls Wrapper: Dots ek taraf, Arrows dusri taraf */
.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-top: 30px;
    padding: 0 10px;
}

/* Dots Styling */
.custom-pagination-dots {
    display: flex;
    gap: 8px;
}

.custom-pagination-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.custom-pagination-dots .swiper-pagination-bullet-active {
    background: #fd5504;
    width: 25px; 
    border-radius: 5px;
}

/* Navigation Buttons Group */
.custom-nav-group {
    display: flex;
    gap: 15px;
}

/* Individual Button Styling */
.swiper-button-prev-custom, 
.swiper-button-next-custom {
    width: 48px;
    height: 48px;
    font-size: 24px;
    font: bold;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.swiper-button-prev-custom:hover {
    background: #fd5504;
    color: white;
}

.swiper-button-next-custom:hover {
    background: #fd5504;
    color: white;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none !important;
}


/* --- Media Queries for Swiper Controls --- */

/* 1. Tablet aur Desktop (768px se upar) */
@media (min-width: 769px) {
    .swiper-controls {
        padding: 0 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .swiper-controls {
        flex-direction: column; 
        gap: 20px; 
        margin-top: 25px;
        justify-content: center; 
    }

    .swiper-button-prev-custom, 
    .swiper-button-next-custom {
        width: 42px;
        height: 42px;
    }

    .swiper-button-prev-custom i, 
    .swiper-button-next-custom i {
        font-size: 16px;
    }

    .custom-pagination-dots {
        justify-content: center;
        width: 100%;
    }

    .custom-nav-group {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .myReelsSwiper {
        border-radius: 1.5rem;
    }
}

@media (max-width: 480px) {
    .swiper-controls {
        margin-top: 20px;
        gap: 15px;
    }
    
    .myReelsSwiper {
        padding-bottom: 0px;
    }
}













/* Container adjustments */
.swiper-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth;
  gap: 15px; 
  -webkit-overflow-scrolling: touch; 
}

.swiper-container::-webkit-scrollbar {
  display: none;
}

.swiper-slide {
  flex: 0 0 80%; 
  scroll-snap-align: center; 
  max-width: 350px; 
}

.video-card {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16; 
}

.launch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .swiper-slide {
    flex: 0 0 300px;
  }
}






/* Container styling */
.cohort-main-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    font-family: 'Inter', sans-serif;
    color: white;
    overflow: hidden;

    padding: 40px 0;
  /* background-color: #0a0a0a !important; */
  background-color: rgba(15, 15, 15, 0) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M 0 0 L 10 0 M 0 0 L 0 10' fill='none' stroke='%23222222' stroke-width='0.5' /%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 10px !important;
}

/* Background Large Heading */
.bg-large-text {
   margin-bottom: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.109);
    pointer-events: none;
    z-index: 0;

}


/* Flow Layout */
.visual-flow-container {
   width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.svg-wrapper {
    display: flex;
    align-items: center;


}

.svg-box {
    width: 250px;
    height: 300px;

}

.svg-box svg {
    width: 100%;
    height: 100%;

}

/* Path Styles */
.path-static {
    fill: none;
    stroke: #1e2021;
    stroke-width: 2.5;
}

.path-animated {
    fill: none;
    stroke: #0080ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 20 80; 
    animation: flowLeftToRight 3s linear infinite;
}

/* Animation: Start from Left and end at Right */
@keyframes flowLeftToRight {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

/* Middle Text Content */
.middle-options {
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    text-align: center;
     Color:rgba(255, 255, 255, 0.584);

    
    height: 360px;
    width: 250px;
}

.option-item {
    font-size: 28px;
    line-height: 1.3;
}

/* Side Text Styles */
.text-block { width: 150px; text-align: center; }
.title-top { font-size: 24px; font-weight: 600; margin: 0; }
.title-italic-gray { font-family: 'Playfair Display', serif; font-style: italic; font-size: 27px; color: #a8a8a8; margin: 0; }
.yellow-text { color: #fd5504; }
.title-italic-yellow { font-family: 'Playfair Display', serif; font-style: italic; font-size: 27px; color: #fd5504; margin: 0; }








#cohort-sm{
    display: none;
}

/* --- MOBILE RESPONSIVE --- */
#cohort-sm {
    display: none;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    #cohort-bg { display: none; }
    #cohort-sm { display: block; }

    .visual-flow-container-sm { 
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 0px; 
    }


    .svg-wrapper-sm { 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0px;
        width: 100%;
        
                /* border: 1px solid red; */

    }

    .sm-large-text {
        font-size: 2rem;
    color: rgba(255, 255, 255, 0.188);
        text-align: center;
        font:bold;
        margin-bottom: 10px;
    }    

    .desktop-svg-sm { display: none; }
    
    .svg-box-sm {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 130px; 
        overflow: hidden; 
    }

    .mobile-svg-sm { 
        display: block;
        width: 120px; 
        height: auto;
        margin: 0 auto;
        transform: rotate(90deg) scaleY(-1); 
        transform-origin: center;
    }

    .path-static-sm {
        fill: transparent;
        stroke: #1e2021;
        stroke-width: 3;
    }

    .path-animated-v-sm {
        fill: transparent; 
        stroke: #0080ff; 
        stroke-width: 3;
        stroke-linecap: round; 
        stroke-dasharray: 30 70;
        animation: flowVertical-sm 3s linear infinite;
    }

    @keyframes flowVertical-sm {
        0% { stroke-dashoffset: 100; }
        100% { stroke-dashoffset: -100; }
    }

    .middle-options-sm {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        margin: 10px 0;
        z-index: 10;
        color: rgba(255, 255, 255, 0.584);
    }

    .option-item-sm { 
        font-size: 14px; 
        line-height: 1.2; 
        color: rgba(255,255,255,0.7); 
        text-align: center;
      
        width: 100px;
    }

    .text-block-sm { width: 100%; text-align: center; margin: 10px 0; }
    .title-top-sm { font-size: 18px; margin: 0; }
    .yellow-text-sm { color: #fd5504; }
    .title-italic-gray-sm, .title-italic-yellow-sm { font-size: 30px; font-style: italic; }
    .title-italic-yellow-sm { color: #fd5504; }




    .first-box-sm .path-animated-v-sm {
        stroke-dasharray: 100;
        stroke-dashoffset: 100; 
        animation: flowFirstDown 3s linear infinite;
    }

    .second-box-sm .path-animated-v-sm {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        animation: flowSecondDown 3s linear infinite;
    }

    @keyframes flowFirstDown {
        0% { stroke-dashoffset: 100; }   
        45%, 50% { stroke-dashoffset: 0; }  
        100% { stroke-dashoffset: 0; }     
    }

   
    @keyframes flowSecondDown {
        0%, 50% { stroke-dashoffset: 100; } 
        95%, 100% { stroke-dashoffset: 0; }  

    }


#cohort-sm {
    padding: 30px 0;
  /* background-color: #0a0a0a !important; */
  background-color: rgba(15, 15, 15, 0) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M 0 0 L 10 0 M 0 0 L 0 10' fill='none' stroke='%23222222' stroke-width='0.5' /%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 10px !important;
}
  


}












/* Swiper prev next btn  */
.myReelsSwiper {
    border-radius: 2rem;
    overflow: hidden;
}

/* Controls Wrapper: Dots ek taraf, Arrows dusri taraf */
.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin-top: 30px;
    padding: 0 10px;
}

/* Dots Styling */
.custom-pagination-dots {
    display: flex;
    gap: 8px;
}

.custom-pagination-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.custom-pagination-dots .swiper-pagination-bullet-active {
    background: #fd5504;
    width: 25px; 
    border-radius: 5px;
}

/* Navigation Buttons Group */
.custom-nav-group {
    display: flex;
    gap: 15px;
}

/* Individual Button Styling */
.swiper-button-prev-custom, 
.swiper-button-next-custom {
    width: 48px;
    height: 48px;
    font-size: 24px;
    font: bold;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.swiper-button-prev-custom:hover {
    background: #fd5504;
    color: white;
}

.swiper-button-next-custom:hover {
    background: #fd5504;
    color: white;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none !important;
}


/* --- Media Queries for Swiper Controls --- */

/* 1. Tablet aur Desktop (768px se upar) */
@media (min-width: 769px) {
    .swiper-controls {
        padding: 0 20px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .swiper-controls {
        flex-direction: column; 
        gap: 20px; 
        margin-top: 25px;
        justify-content: center; 
    }

    .swiper-button-prev-custom, 
    .swiper-button-next-custom {
        width: 42px;
        height: 42px;
    }

    .swiper-button-prev-custom i, 
    .swiper-button-next-custom i {
        font-size: 16px;
    }

    .custom-pagination-dots {
        justify-content: center;
        width: 100%;
    }

    .custom-nav-group {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .myReelsSwiper {
        border-radius: 1.5rem;
    }
}

@media (max-width: 480px) {
    .swiper-controls {
        margin-top: 20px;
        gap: 15px;
    }
    
    .myReelsSwiper {
        padding-bottom: 0px;
    }
}











/* .video-card video{
width:100%;
height:100%;
object-fit:cover;
border-radius:20px;
} */







/* Navigation Buttons Position (Right Bottom) */
.video-navigation {
    position: absolute;
    bottom: 70px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 100;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #fff;
    color: #000;
}


@media (max-width: 768px) {
    .video-navigation {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 100;
}
}



.stats-section{
padding:140px 120px;
}

.stats-container{
display:flex;
justify-content:space-between;
gap:200px;
}

.stat-box{
flex:1;
}

.stat-box h2{
font-size:70px;
font-weight:600;
color:#fd5504;
}

.stat-box hr{
border:none;
height:1px;
background:#d0d0d0;
margin:20px 0;
}

.stat-box h3{
font-size:24px;
margin-bottom:8px;
}

/* .stat-box p{
color:#666;
font-size:16px;
line-height:1.5;
} */

/* ========================= */
/* Tablet */
/* ========================= */

@media (max-width:1024px){

.stats-container{
gap:30px;
}

.stat-box h2{
font-size:70px;
}

.stat-box h3{
font-size:22px;
}

}





/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width:768px){

.stats-container{
flex-direction:column;
gap:50px;
}

.stat-box h2{
font-size:60px;
}

.stat-box p{
max-width:100%;
}

}




/* ========================= */
/* Small Mobile */
/* ========================= */

@media (max-width:480px){

.stats-section{
padding:75px 40px;
}

.stat-box h2{
font-size:48px;
}

.stat-box h3{
font-size:20px;
}

.stat-box p{
font-size:15px;
}

}