/* ========== Story Section ========== */
.story-section {
    padding: 80px 0;
    background: #000;
    background-image: url("../../../assets/images/metaverse/service-1/bg2.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    color: #fff;
    animation: fadeIn 1s ease-out;
}

.story-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


html, body {
    overflow-x: hidden;
}


.animate-on-scroll{
    opacity: 0;
    transform: translateY(18px) scale(0.995);
    transition: opacity 0.7s cubic-bezier(.2,.9,.2,1), transform 0.7s cubic-bezier(.2,.9,.2,1);
    will-change: transform, opacity;
}
.animate-on-scroll.in-view{
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes floatY {
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
    100%{ transform: translateY(0); }
}

.parallax-layer{ transition: transform 0.22s linear, opacity 0.25s linear; will-change: transform, opacity; }
.hero-img.in-view{ animation: floatY 6s ease-in-out infinite; }
.hero-visual img{ max-width: 100%; display:block; border-radius:8px; box-shadow: 0 30px 70px rgba(0,0,0,0.6); }


.hero-title{ position: relative; overflow: hidden; }
.hero-title:after{
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    transform: skewX(-20deg);
    transition: left 0.9s cubic-bezier(.2,.9,.2,1);
}
.hero-title.in-view:after{ left: 120%; }



.story-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text {
    padding-right: 30px;
}

.hero-title {
    font-size: 88px;
    line-height: 0.95;
    margin: 0 0 20px 0;
    color: #00AEEF;
    font-weight: 700;
    letter-spacing: -1px;
    max-width: 800px;
    animation: fadeIn 0.8s ease-out 0.1s backwards;
}

.hero-paragraph {
    font-size: 18px;
    color: #dcdcdc;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 700px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    width: 100%;
    max-width: 820px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    transform: translateX(10px);
    animation: fadeIn 0.9s ease-out 0.2s backwards;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #5671FD, #22B0A1);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.question {
    font-size: 28px;
    color: #22B0A1;
    margin-bottom: 20px;
    font-weight: 600;
}

.tagline {
    font-size: 32px;
    color: #5671FD;
    margin: 30px 0;
    font-weight: 700;
    transform: scale(0);
    animation: scaleIn 0.6s ease-out 0.8s forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.story-body {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.story-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e6e6e6;
    font-size: 16px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.mission, .vision {
    background: rgba(25, 25, 25, 0.8);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    border-color: #5671FD;
    box-shadow: 0 10px 30px rgba(86,113,253,0.15);
}

.mission h3, .vision h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #5671FD;
}

.global-presence {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out 0.8s backwards;
    margin-top: 56px; 
}

.global-presence h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00AEEF;
    
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: rgba(25, 25, 25, 0.8);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: #22B0A1;
    box-shadow: 0 10px 30px rgba(34,176,161,0.15);
    
}

.location-card h4 {
    font-size: 18px;
    color: #22B0A1;
    margin-bottom: 15px;
}

.location-card p {
    color: #e6e6e6;
    line-height: 1.6;
}

.global-footer {
    text-align: center;
    color: #e6e6e6;
    margin-top: 40px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    .question {
        font-size: 24px;
    }
    .tagline {
        font-size: 28px;
    }
    .hero-title {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }
    .mission-vision {
        grid-template-columns: 1fr;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 32px;
    }
    .question {
        font-size: 22px;
    }
    .tagline {
        font-size: 26px;
    }
    .story-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-visual img {
        max-width: 100%;
        transform: none;
    }
    .hero-title {
        font-size: 38px;
    }
}



      

        /* ===== Feature / About section */
        .feature-section {
            padding: 80px 0 120px;
            background: linear-gradient(180deg,#0b0b0b 0%, #111111 100%);
            color: #f5f6f7;
            
        }
        .feature-container{ max-width:1200px; margin:0 auto; padding:0 20px; display:grid; grid-template-columns: 1fr 460px; gap:40px; align-items:start; }
        .feature-left { padding-right:20px; }
        .feature-right { padding-left:20px; }

        
        .slide-left{ transform: translateX(-60px); opacity: 0; transition: transform 0.9s cubic-bezier(.2,.9,.2,1), opacity 0.9s cubic-bezier(.2,.9,.2,1); }
        .slide-right{ transform: translateX(60px); opacity: 0; transition: transform 0.9s cubic-bezier(.2,.9,.2,1), opacity 0.9s cubic-bezier(.2,.9,.2,1); }
        .slide-up{ transform: translateY(40px); opacity: 0; transition: transform 0.9s cubic-bezier(.2,.9,.2,1), opacity 0.9s cubic-bezier(.2,.9,.2,1); }

        .slide-left.in-view, .slide-right.in-view, .slide-up.in-view{ transform: translateX(0) translateY(0); opacity: 1; }

        .feature-headline { font-size: 42px; line-height:1.05; margin:0 0 18px; font-weight:800; color:#00AEEF; }
        .feature-lead { font-size: 22px; color:#ffffff; font-weight:700; margin-bottom:22px; max-width:750px; }
        .feature-paragraph{ color:#d6d8da; font-size:16px; line-height:1.8; margin-top:16px; }

       
        .feature-heading-row{ display:flex; align-items:center; gap:18px; }
        .feature-heading-row .bar{ width:4px; height:38px; background: linear-gradient(180deg,#00AEEF,#0066FF); border-radius:2px;  }
        .feature-heading-row h4{ margin:0; font-size:20px; color:#fff; font-weight:700;}

        @media (max-width:991px){ .feature-container{ grid-template-columns: 1fr; } .feature-right{ order:-1; } .feature-headline{ font-size:32px; } }

       

.team-section {
  margin: 0;
  background-image:url("assets/images/metaverse/service-1/bg2.png");;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.orbit-section {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  
}

h2 {
  font-size: 2rem;
  margin-bottom: 80px;
  color: #00AEEF;
  
}

.orbit-container {
  position: relative;
  width: 1000px;
  height: 420px;
  margin: 0 auto ;
  perspective: 1000px;
}

.card {
  position: absolute;
  top: 0;
    left: 50%;
  width: 250px;
  height: 350px;
  background: #fff;
  border-width: 0cap;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  
  
  cursor: pointer;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateX(-50%) scale(0.9);
}

.card img {
  width: 100%;
  object-fit: cover;
  height: 230px;
  
  border-radius: 20px 20px 0 0;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.1rem;
  margin-top:10px;
  color:#111;
  text-align:center;
}

.card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  text-align:center;
  
}

/* Tablet: ≤768px */
@media (max-width: 768px) {
  .team-section {
    padding: 50px 20px;
  }

  .orbit-container {
    width: 100%;
    max-width: 600px;
    height: 380px;
    margin: 0 auto;
  }
  
  .card {
    width: 220px;
    height: 320px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  .card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    margin: 0;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
  }
  
  .card h3 {
    font-size: 1rem;
    margin: 0;
    padding: 8px 12px 4px;
  }
  
  .card p {
    font-size: 0.85rem;
    margin: 0;
    padding: 0 12px 12px;
    flex: 1;
  }
  
  h2 {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

/* Mobile: ≤480–600px */
@media (max-width: 600px) {
  .team-section {
    padding: 40px 15px;
    min-height: 80vh;
  }

  .orbit-container {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
  }
  
  .card {
    width: 200px;
    height: 280px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  .card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    margin: 0;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
  }
  
  .card h3 {
    font-size: 0.95rem;
    margin-top: 10px;
    padding: 8px 12px 4px;
  }
  
  .card p {
    font-size: 0.8rem;
    margin: 0;
    padding: 0 12px 12px;
    flex: 1;
  }
  
  h2 {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}

/* Mobile Small: ≤480px */
@media (max-width: 480px) {
  .team-section {
    padding: 30px 10px;
    min-height: 70vh;
  }

  .orbit-container {
    width: 100%;
    max-width: 350px;
    height: 260px;
    margin: 0 auto;
  }
  
  .card {
    width: 160px;
    height: 240px;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  
  .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin: 0;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
  }
  
  .card h3 {
    font-size: 0.85rem;
    margin: 0;
    padding: 6px 10px 3px;
  }
  
  .card p {
    font-size: 0.75rem;
    margin: 0;
    padding: 0 10px 10px;
    flex: 1;
  }
  
  h2 {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* Navigation arrows styling */
.orbit-nav {
  display: none;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

/* Wrapper for carousel and navigation */
.orbit-carousel-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1200px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color:transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #f0ebeb;
  font-weight: 100;
  transition: all 150ms ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-arrow:hover {
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.08);
}

.nav-arrow.prev {
  left: 10px;
}

.nav-arrow.next {
  right: 10px;
}

/* Show arrows on small screens */
@media (max-width: 768px) {
  .orbit-nav {
    display: flex;
  }
}


   