/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #072840;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}


/* ✅ Custom scroll offset per section */
#people:target {
  scroll-margin-top: 80px;  /* People section may have bigger banner */
}

#carousel-section:target {
  scroll-margin-top: 140px;  /* Slightly smaller offset */
}

#carousel-container1:target {
  scroll-margin-top: 70px;  /* Slightly smaller offset */
}

#faq-section:target {
  scroll-margin-top: 80px;  /* Maybe has larger heading */
}

/* ✅ For mobile screens */
@media (max-width: 768px) {
  :target {
    scroll-margin-top: 150px; /* general mobile offset */
  }

  #people:target {
    scroll-margin-top: 180px;
  }

  #features:target {
    scroll-margin-top: 180px
  }

  #faq-section:target {
    scroll-margin-top: 190px;
  }
}



/* ====== HEADER STYLING ====== */
header {
  width: 100%;
  height: 80px;
  background-color: #072840; /* Always blue */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1.5px solid #00bfff;
}

.logo img {
  height: 65px;
  margin-left: 20px;
}

/* Desktop Menu */
.middle-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.middle-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  
}

.middle-nav ul li a:hover {
  color: #00bfff;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {
  .middle-nav {
    display: none; /* Hide desktop nav */
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
     background: #072840;
    position: absolute;
    top: 80px;
    max-height: 5vh; /* 🔹 reduce height (e.g., 60% of viewport) */
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    margin: 12px 0;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideIn 0.4s ease forwards;
  }

  .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { animation-delay: 0.5s; }

  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .nav-links li {
  margin: 2px 0; /* reduce spacing between items */
}
.nav-links a {
  padding: 5px 0; /* reduce vertical padding */
}


  .nav-links li a:hover {
    color: #00bfff;
  }

  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Hide mobile nav on desktop */
.nav-links {
  display: none;
}

/* .scan-text {
  animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; transform: translateY(-10px); }
  50% { opacity: 1; transform: translateY(0); }
} */


/* Main Container */
.container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  /* max-width: 1880px; */
  margin: 0 auto;
  padding-top: 80px; /* Offset for fixed header */
  min-height: 97vh;
  padding-right: 1990px; /* optional left margin from page edge */
  gap: 400px;

  /* ===== Outline / Border ===== */
   /* soft blue border */
  border-radius: 25px; /* rounded corners */
  padding: 50px ; /* inner spacing for content */
  position: relative;

  /* ===== Optional subtle glow effect ===== */
  /* box-shadow: 0 0 20px rgba(0, 191, 255, 0.2),
              0 0 40px rgba(0, 191, 255, 0.1),
              inset 0 0 10px rgba(0, 191, 255, 0.05); */
  
}
.right{
  margin-left:-276px;
  margin-top: -528px;
  width: 50px;   /* ↓ reduce this value to make image smaller */
  height: 50px;
}
.left{
  margin-bottom: 100px;
  margin-left:21px;
}

.image-wrapper{
   width: 10px;    /* adjust as needed */
  height: 10px;
}

.left h1 {
  font-size: 4rem; /* smaller for readability */
  color: #00bfff;
  margin-bottom: 20px;
}
.left .subheading {
  font-size: 1.8rem;          /* smaller than main heading */
  color: #ffffff;             /* bright blue */
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;  /* optional */
  text-shadow: 0 0 5px rgba(0,191,255,0.5); /* subtle glow */
}
.left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  color: #00bfff;
}


/* Responsive */
@media (max-width: 1000px) {
  .left .subheading {
    font-size: 1.5rem;
  }
}
.popular-person {
  position: relative;
  
  background-size: contain; /* or cover */
  background-color: #eceef0;
  padding: 10px 25px;
  overflow: visible;
  margin-top: -81px;
  height: 50vh;
  z-index: 1;
}

.popular-person::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background-size: contain; /* or cover */
  opacity: 0.1; /* adjust transparency: 0.1 = very light, 0.5 = medium */
  z-index: 0;
}

.popular-person * {
  position: relative;
  z-index: 1;
}







/* .popular-person {
  background-color: #eceef0;
  padding: 10px 25px;
  overflow: visible;
  margin-top:-100px;
  height: 40vh;
  
} */

.popular-person h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 17px;
  color: #00bfff;
  position: relative;
}

/* Underline */
.popular-person h2::after {
  content: "";
  display: block;
  width: 80px;           /* length of underline */
  height: 3px;           /* thickness */
  background-color: #00bfff;
  margin: 10px auto 0 auto; /* spacing below heading, centered */
  border-radius: 2px;     /* rounded edges of underline */
}

.person-slider {
  overflow: visible;
  position: relative;
}

.person-track {
  display: flex;
  gap: 60px;
  position: relative;
  left: 0;
}

.person-circle-card {
  flex: 0 0 auto;
  text-align: center;
  width: 150px;
}
.person-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px auto;
  border: 2px solid #00bfff; /*inner border*/
  outline: 2px solid #072840;/*outer border*/
  outline-offset: 1px; /* distance between inner and outer ring */
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 58px;
}


.person-circle:hover {
  transform: scale(1.1);
  /* box-shadow: 0 8px 20px rgba(0, 191, 255, 0.5); */
}

.person-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-circle-card h3 {
  margin-top: 10px;
  color: #00bfff;
  font-size: 1.1rem;
  margin: 18px 0 2px 0;
}

.person-circle-card p {
  color: #072840;
  font-size: 0.92rem;
  margin: 0;
}
.company-name {
  color: #00ffea;
  font-size: 1rem;
  margin: 2px 0 0 0;
  font-weight: 500;
}
.person-circle-card p.company-name {
  color: #00ffea;       /* neon style for company */
  font-size: 0.7rem;    /* slightly smaller */
  margin-top: 2px;      /* space from designation */
  font-weight: 500;
  text-align: center;   /* centered under the card */
}

/* ==== OUTER SECTION BEAUTIFICATION ==== */
.carousel-section {
  position: relative;
  background: linear-gradient(135deg, #072840, #072840 40%, #072840);
  padding: 80px 0;
  overflow: hidden;
  border-radius: 25px;
  /* box-shadow:
    0 0 60px rgba(0, 191, 255, 0.2),
    0 0 120px rgba(0, 191, 255, 0.15),
    inset 0 0 30px rgba(0, 127, 255, 0.2); */
}

/* Subtle glowing background orbs */
.carousel-section::before,
.carousel-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(0,191,255,0.15) 0%, transparent 70%); */
  filter: blur(60px);
  z-index: 0;
}
/* .carousel-section::before {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -150px;
}
.carousel-section::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
} */

/* ==== HEADING ==== */
.carousel-header {
  text-align: center;
  margin-bottom: -5px;
  position: relative;
  z-index: 2;
  
}
.carousel-header h2 {
  font-size: 2.5rem;
  color: #00bfff;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-top: 25px;
}
.carousel-header h2::after {
  content: "";
  position: absolute;
  margin-top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00bfff;
  border-radius: 2px;
}

/* ==== CONTAINER ==== */
.carousel-container {
  position: relative;
  width: calc((340px * 4) + 80px);
  overflow: hidden;
  margin: 0 auto;
  z-index: 2;
   gap: 18px;
min-height: 55vh;
  
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px; /* space between cards */
}
/* .carousel-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 0 0 300px; 
  transition: transform 0.3s ease;
} */

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1); /* ensure same starting scale */
  transition: transform 0.5s ease;
}

/* Hover zoom */
.carousel-card:hover img {
  transform: scale(1.1);
}

/* Keep active card same size as others */
.carousel-card.active {
  transform: none;
}
.carousel-card.active img {
  transform: scale(1);
}
.carousel-card.active:hover img {
  transform: scale(1.1);
}

/* ==== CARD DESIGN ==== */
.carousel-card {
  box-sizing: border-box;
  width: 300px;
  height: 450px;
  background-color: #f5f3f3;
  margin: 0 10px;
  border-radius: 15px;
  border: 4px solid #063d70;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px;
  color: #072840;
  box-shadow: 0 8px 15px rgba(10, 10, 10, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1310px; /* container fixed width */
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-card {
  flex: 0 0 auto;
  width: 280px; /* fixed card width */
  margin-right: 20px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

/* expand image on hover or active */
.carousel-card:hover img,
.carousel-card.active img {
  transform: scale(1.08);
}

/* navigation buttons */
.left-btn,
.right-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}


/* Hover effect */
.carousel-card:hover {
  transform: scale(1.0);
  border-color: #00bfff;
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
}

/* ==== IMAGE ==== */
.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ==== TEXT ==== */
.carousel-card h3 {
  font-size: 1.2rem;
  color: #00bfff;
  margin: 5px 0;
  text-align: center;
}
.carousel-card p {
  font-size: 0.95rem;
  color: #072840;
  text-align: center;
  margin-top: 25px;
}

/* ==== BUTTONS ==== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #00bfff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}
.carousel-btn:hover {
  background-color: rgba(255,255,255,0.3);
}
.left-btn {
  left: 100px;
}
.right-btn {
  right: 100px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1000px) {
  .carousel-container {
    width: 90%;
  }
  .carousel-card {
    min-width: 45%;
  }
  .left-btn {
    left: 30px;
  }
  .right-btn {
    right: 30px;
  }
}
@media (max-width: 600px) {
  .carousel-card {
    min-width: 80%;
  }
  .left-btn, .right-btn {
    display: none;
  }
}
 
        /* *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body{
            background-color: #D2D2D2;
            background-image:
            repeating-linear-gradient(
                to right, transparent 0 100px,
                #25283b22 100px 101px
            ),
            repeating-linear-gradient(
                to bottom, transparent 0 100px,
                #25283b22 100px 101px
            );
        }
        
        body::before{
            position: absolute;
            width: min(1400px, 90vw);
            top: 10%;
            left: 50%;
            height: 90%;
            transform: translateX(-50%);
            content: '';
            background-image: url(images/bg.png);
            background-size: 100%;
            background-repeat: no-repeat;
            background-position: top center;
            pointer-events: none;
        }

body::before{
            position: absolute;
            width: min(1400px, 90vw);
            top: 10%;
            left: 50%;
            height: 90%;
            transform: translateX(-50%);
            content: '';
            background-image: url(investor.jpg);
            background-size: 100%;
            background-repeat: no-repeat;
            background-position: top center;
            pointer-events: none;
 } */
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.banner .slider{
    position: absolute;
    width: 250px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 90s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}

.banner .slider .item{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
}
.banner .slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.banner .content h1{
    font-family: 'ICA Rubrik';
    font-size: 16em;
    line-height: 1em;
    color: #25283B;
    position: relative;
}
.banner .content h1::after{
    position: absolute;
    inset: 0 0 0 0;
    content: attr(data-content);
    z-index: 2;
    -webkit-text-stroke: 2px #d2d2d2;
    color: transparent;
}
.banner .content .author{
    font-family: Poppins;
    text-align: right;
    max-width: 200px;
}
.banner .content h2{
    font-size: 3em;
}
/* .banner .content .model{
    background-image: url(images/model.png);
    width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: auto 130%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
} */

.carousel-container1 {
  position: relative;
  width: 100%;
  height: 79.3vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #072840;
}

.carousel-title {
  position: absolute;
  top: 31px;
  text-align: center;
  z-index: 5;
}

.carousel-title h2 {
  font-size: 2.1rem;
  color: #00bfff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.carousel-title h2::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00bfff;
  border-radius: 2px;
}
.carousel-title p {
  font-size: 1rem;
  color: #021529;
  margin-top: 1px;
}

.carousel {
  position: relative;
  width: 800px;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  
}

.carousel img {
  width: 300px;
  height: 500px;
  margin-top: 73px;
  object-fit: cover;
  border-radius: 15px;
  position: absolute;
  transition: transform 0.6s ease, opacity 0.6s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.carousel img.hidden {
  opacity: 0;
  pointer-events: none;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #00bfff;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.3);
}

.prev { left: 100px; }
.next { right: 100px; }

@media (max-width: 768px) {
  .carousel img {
    width: 220px;
    height: 300px;
  }

  .prev { left: 30px; }
  .next { right: 30px; }

  .carousel-title h2 {
    font-size: 1.5rem;
  }
}

/* faq section */

/* .faq_3 * {
  font-family: Nunito, sans-serif;
}

.faq_3 .container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: block;
  padding-top: 10px;
  padding-right: 60px;
  padding-bottom: 10px;
  padding-left: 60px;
}

.faq_3 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.faq_3 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.faq_3 .answer-box {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: max-height;
}

.faq_3 .faq.active .openimg {
  transform: rotate(180deg);
}

.faq_3 .openimg {
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  transition-property: transform;
}

.faq_3 .faq.active .answer-box {
  max-height: 550px;
}

.faq_3 input:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.faq_3 .responsive-container-block.container {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.faq_3 .responsive-container-block.faqheading-bg {
  background-color: #00bfff;
  height: 500px;
  flex-direction: column;
  text-align: center;
  color: white;
  align-items: center;
}

.faq_3 .text-blk.faq-heading {
  font-size: 48px;
  line-height: 50px;
  font-weight: 800;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 0px;
}

.faq_3 .text-blk.faq-subhead {
  max-width: 650px;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 28px;
  margin-left: 0px;
}

.faq_3 .input {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: inset;
  border-right-style: inset;
  border-bottom-style: inset;
  border-left-style: inset;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  height: 45px;
  width: 100%;
  font-size: 15px;
  padding-top: 1px;
  padding-right: 24px;
  padding-bottom: 1px;
  padding-left: 24px;
}

.faq_3 .input-box {
  background-color: white;
  max-width: 550px;
  width: 100%;
  height: 45px;
  display: flex;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.faq_3 .search-btn {
  height: 45px;
  display: flex;
  align-items: center;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  cursor: pointer;
}

.faq_3 .heading-content {
  margin-top: 100px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.faq_3 .form-box {
  float: none;
  display: flex;
  justify-content: center;
}

.faq_3 .responsive-container-block.dropdown-container {
  background-color: white;
  max-width: 850px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  height: auto;
  flex-direction: column;
  display: block;
  margin-top: -120px;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
}

.faq_3 .search-svg {
  width: 20px;
  height: 20px;
}

.faq_3 .responsive-container-block.dropdown-container-wrapper {
  padding-top: 0px;
  padding-right: 30px;
  padding-bottom: 0px;
  padding-left: 30px;
}

.faq_3 .text-blk.faq-head2 {
  text-align: center;
  font-size: 42px;
  line-height: 60px;
  font-weight: 900;
  margin-top: 60px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
}

.faq_3 .faq {
  display: block;
  flex-direction: column;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #aaaaaa;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 25px;
  margin-left: 0px;
}

.faq_3 .faq-question-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_3 .text-blk.faq-questions {
  color: #525252;
  font-size: 22px;
}

.faq_3 .text-blk.faq-answer {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  color: #9c9c9c;
  font-size: 19px;
  line-height: 28px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.faq_3 .faq-question-container:hover {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .faq_3 .text-blk.faq-answer {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq_3 .responsive-container-block.faqheading-bg {
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
  }

  .faq_3 .text-blk.faq-heading {
    font-size: 40px;
    line-height: 42px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
    margin-left: 0px;
  }

  .faq_3 .text-blk.faq-subhead {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
    margin-left: 0px;
  }

  .faq_3 .text-blk.faq-head2 {
    font-size: 38px;
  }

  .faq_3 .text-blk.faq-questions {
    font-size: 22px;
  }

  .faq_3 .text-blk.faq-answer {
    font-size: 18px;
  }

  .faq_3 .text-blk.faq-questions {
    font-size: 20px;
  }

  .faq_3 .text-blk.faq-answer {
    font-size: 16px;
    line-height: 23px;
  }
}

@media (max-width: 500px) {
  .faq_3 .responsive-container-block.dropdown-container-wrapper {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .faq_3 .text-blk.faq-heading {
    font-size: 38px;
  }

  .faq_3 .heading-content {
    margin-top: 60px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .faq_3 .text-blk.faq-subhead {
    font-size: 18px;
  }

  .faq_3 .text-blk.faq-head2 {
    font-size: 30px;
    line-height: 46px;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }

  .faq_3 .container-block {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
  }

  .faq_3 .faq-question-container {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .faq_3 .text-blk.faq-questions {
    font-size: 19px;
  }

  .faq_3 .text-blk.faq-answer {
    font-size: 16px;
    line-height: 22px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .faq_3 .responsive-container-block.dropdown-container {
    margin-top: -100px;
    margin-right: 0px;
    margin-bottom: 100px;
    margin-left: 0px;
  }
} */
/* .dropdown-container-wrapper,
.dropdown-container,
.container-block {
  overflow: visible; 
  height: auto;      
}
.faqheading-bg {
  position: relative;
  z-index: 2;
}

.faq-head2 {
  position: relative;
  z-index: 10;
} */
.faq-section {
  padding: 40px 20px;
  font-weight: 700 !important;
  background-color: #ffffff;
    min-height: 78.5vh; /* adjust as you need */
  max-height: 1200px;
  
}

.faq-section.expanded {
  max-height: 800px; /* enough height to show everything */
}

.faq-hidden {
  display: none;
}
.faq-header h1 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00bfff; /* optional - adjust to your theme color */
}

.faq-header h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px; /* distance from text */
  transform: translateX(-50%);
  width: 80px; /* length of the underline */
  height: 4px; /* thickness */
  background-color: #ff9000; /* underline color - change as needed */
  border-radius: 2px;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.faq-header h1::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00bfff;
  border-radius: 2px;
}
.faq-header h1 {
  font-size: 32px;
  color: #00bfff;
  margin-top: -11px;
}

.faq-header p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 700px;
  margin: auto;
  margin-top: 79px;
   min-height: 10vh;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  color: #00bfff;
  font-weight: 700 !important;
}

.faq-question span {
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  font-size: 14px;
  color: #072840;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  content: "-";
}

/* Hidden FAQ container */
.faq-hidden {
  display: none;
}

.show-more-container {
  text-align: center;
  margin-top: 20px;
}

/* The circular arrow button */
.v-arrow {
  width: 47px;
  height: 47px;
  background: transparent;
  border: 2px solid #00bfff;  /* outline circle */
  border-radius: 50%;          /* makes it circular */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Default (Down arrow ↓) */
.v-arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 3px solid #072840;
  border-bottom: 3px solid #072840;
  transform: translate(-50%, -50%) rotate(-45deg); /* down arrow */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect (circle + arrow color) */

.v-arrow:hover::before {
  border-color: #00bfff;
}

/* Active (Up arrow ↑) */
.v-arrow.active::before {
  top: 55%;
  transform: translate(-50%, -50%) rotate(135deg); /* up arrow */
}




/* ====== Video hero container (section) ====== */
.video-hero {
  position: relative;
  width:100%;
  min-height:55vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:visible;
  background: #f3f3f3;
}

/* wrapper that will be full-screen inside section initially */
.video-wrapper {
  width:100%;
  height:79vh;             /* covers viewport height while visible */
  max-height:900px;
  position: relative;       /* becomes fixed when shrunk */
  overflow:hidden;
  transition: transform .6s ease, width .6s ease, height .6s ease, right .4s ease, left .4s ease, bottom .4s ease, top .4s ease, opacity .45s ease;
  border-radius:0;
  background:#e4dede;
  z-index: 40;
}

/* visible when section enters viewport */
.video-wrapper.visible {
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* video fills wrapper */
.video-wrapper video {
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* hide overlay text in shrink mode to save space */
.video-wrapper.shrink  {
  opacity: 0;
  pointer-events: none;
}

/* style adjustments to video in shrink */
.video-wrapper.shrink video { border-radius:12px; }

/* responsive: smaller float on small screens */
@media (max-width:640px) {
  .video-wrapper.shrink { width: 280px !important; height: 160px !important; right: 12px; bottom: 12px;}
  .close-btn { width:34px; height:34px; bottom:12px; right:12px; font-size:16px; }
  .video-overlay h1 { font-size:22px; }
}

/* subtle entrance */
.video-wrapper.visible { will-change: transform, opacity; }

/* ====== Peeon Title & Tagline Overlay ====== */
.video-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(7, 40, 64, 0.6); /* translucent navy overlay */
  padding: 25px 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
  backdrop-filter: blur(4px);
}

.video-text-overlay .peeon-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00bfff;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
}

.video-text-overlay .peeon-tagline {
  font-size: 1.1rem;
  color: #e6faff;
  letter-spacing: 0.5px;
}

.peoon-footer {
  background: #072840;
  color: #f8faf8;
  font-family: "Poppins", sans-serif;
  padding: 60px 8%;
  min-height: 45vh;
}

/* ---------- TOP SECTION ---------- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top:-40px;
 margin-left: -75px;
}

.footer-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
 margin-right: 20px;
 
}

.footer-text h2 span {
  color: #00bfff;
}

.footer-text p {
  margin: 15px 0 25px;
  color: #ffffff;
  font-size: 15px;
}

/* ---------- SOCIAL ICONS BELOW TEXT ---------- */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 150px;
   margin-left: -448px;

}
.footer-social h3{
  margin-top: -85px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  background-color: #ffff;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #00bfff;  /* outline color */
  border-radius: 10px;         /* slight rounding, not circular */
  transition: all 0.3s ease;
}

.footer-social a img {
  width: 32px;
  height: auto;
  display: block;
}

.footer-social a:hover {
  background:#072840
}
.footer-logo {
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 120px;   /* adjust based on your layout */
  margin-right: 575px;
  height: auto;
  border-radius: 12px; /* optional for smooth corners */
}




/* ---------- DOWNLOAD SECTION ---------- */
.footer-download {
  text-align: left;
  color: #ffffff;
  margin-top: -46px;
}


.footer-download h3 {
  font-size: 22px;
  font-weight: 750;
  color: #ffff;
  margin-bottom: 13px;
  letter-spacing: 0.5px;
  margin-right: -78px;
}

.footer-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-buttons img {
  height: 50px;
  transition: transform 0.3s ease;
  margin-bottom: 25px;
}

.footer-buttons img:hover {
  transform: scale(1.08);
}

/* ---------- BOTTOM SECTION ---------- */
.footer-bottom {
  display: flex;
  justify-content: center; /* center everything */
  flex-wrap: wrap;
  gap: 60px;
  padding-top: 40px;
  border-top: none; /* removed blue line */
}
.footer-bottom p{
 margin-right: -200px;
}
/* Logo and company info */
.footer-logo {
  text-align: center;
}
.follow-title {
  text-align: center;
  color: #00bfff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 130px;
  margin-right:610px;
  margin-bottom: -135px;
  letter-spacing: 0.5px;
}

.footer-logo h3 {
  font-size: 22px;
  color: #00bfff;
}

.footer-logo p {
  font-size: 13px;
  margin: 8px 0;
  color: #ffffff;
}

/* ---------- FOOTER LINKS ---------- */
.footer-links {
  display: flex;
  gap: 80px;
  justify-content: center; /* centered horizontally */
  flex-wrap: wrap;
  text-align: center;
 margin-top: -25px;
 margin-left: -200px;
}

.footer-links h4 {
  font-size: 19px;
  color: #00bfff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #f8f8f8;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #00bfff;
}

/* ---------- SOCIAL ICONS (INSIDE LINKS) ---------- */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  width: 28px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-download {
    text-align: center;
    margin-top: 20px;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom {
  width: 100%;
  background-color: #00bfff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4vw; /* 5vw makes spacing adjustable based on screen width */
  flex-wrap: wrap;
  box-sizing: border-box;
}
.footer-link-heading {
  text-decoration: none;
  color: inherit; /* keeps same color as normal heading */
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-link-heading:hover {
  color: #ff9000; /* hover color (optional) */
  cursor: pointer;
}

.footer-bottom p {
  margin: 0;
  font-size: clamp(13px, 2vw, 15px); /* responsive font size */
  text-align: left;
  flex: 1;
}

.footer-bottom span {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(13px, 2vw, 15px); /* responsive font size */
  text-align: right;
}

/* On small screens, center both */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

/* ---------- FULLY RESPONSIVE FOOTER FIXES ---------- */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    text-align: center;
    gap: 30px;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  .footer-social {
    margin: 20px 0 0 0;
    justify-content: center;
  }

  .follow-title {
    margin: 20px 0 10px 0;
    text-align: center;
  }

  .footer-links {
    margin-left: 0;
    gap: 40px;
    justify-content: center;
  }

  .footer-download {
    text-align: center;
    margin-top: 20px;
    margin-right: 75px;
  }
}

@media (max-width: 768px) {
  .peoon-footer {
    padding: 40px 5%;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-left: 0;
  }

  .footer-logo img {
    margin: 0 auto;
    width: 100px;
  }

  .footer-text h2 {
    font-size: 20px;
    margin: 10px 0;
  }

  .footer-text p {
    font-size: 14px;
  }

  .follow-title {
    margin: 15px 0;
    text-align: center;
  }

  .footer-social {
    margin: 10px auto 20px auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 10px 0;
  }

  .footer-links h4 {
    font-size: 18px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .footer-download {
    text-align: center;
    margin-top: 25px;
  }

  .footer-buttons img {
    height: 45px;
    margin-left: 53px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 15px 10px;
  }

  .footer-bottom p,
  .footer-bottom span {
    margin: 0;
    text-align: center;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-text h2 {
    font-size: 18px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .footer-links h4 {
    font-size: 16px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  .footer-buttons img {
    height: 40px;
  }
}
