@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

/* Global Reset + Fonts */
* {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: white;
  background: black;
  margin: 0;
  padding: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 1px);
  background-size: 30px 30px;
  background-attachment: fixed;
  background-repeat: repeat;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { font-size: 1rem; line-height: 1.6; }

/* ================= NAVBAR ================= */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: center;
  align-items: center;
  width: 100%;

}
ul {
  margin: 0;
  padding: 0;
}
li {
  margin: 0 15px; /* equal spacing */
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop Nav */
.nav-links {
  justify-content: center;
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
  align-items: center;
}

.nav-links li a:hover {
  color: #9794C6;
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #9794C6);
}
/* Hide social icons on desktop */
@media (min-width: 1440px) {
  .mobile-social {
    display: none;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-right: 2rem;
  vertical-align: middle;
  background: transparent;
}
.social-icons {
  margin-left: auto; /* pushes it fully right */
}


.social-icons img {
  height: 22px;
  width: 22px;
  /* filter: brightness(0) invert(1); */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #fff);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  margin-left: 150px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px; right: 0;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.95);
    display: none;
  }
  .nav-links.active { display: flex; }

  .hamburger { display: flex;}

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .social-icons { display: none; }
  .mobile-social { display: flex; gap: 15px; }
}

/* ================= HERO ================= */
.hero {
  padding: 200px 20px 80px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 50px;
}

.hero p { 
  padding-top: 50px;
  font-size: 1.2rem; 
  margin-bottom: 30px; 
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover { background: #808080; }

/* Responsive hero text */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-btn { padding: 10px 25px; font-size: 0.9rem; }
}

.highlight {
  color: #9794C6;
  font-weight: bold;
}

/* ================= LOGO SLIDER ================= */
.partners {
  overflow: hidden;
  margin-top: 40px;
  width: 100%;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: max-content; /* adjust dynamically */
  animation: scroll 20s linear infinite;
}

.logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}

.logo-track img {
  height: 60px;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0%);
}

/* Infinite scroll animation */
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .logo-track img { height: 40px; }
}
/* Section styling */
.seo-section {
  padding: 6rem 2rem;
  background: none;
  color: white!important;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* Content wrapper */
.seo-content {
  max-width: 900px;
  width: 100%;
}

/* Glow effect for heading */
.glow-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 15px #9794C6, 0 0 30px #9794C6;
  margin-bottom: 2rem;
}

/* Paragraphs */
.seo-content p {
  font-size: 1.2rem;
  margin: 0.8rem 0;
  line-height: 1.6;
}

/* Highlights */
.highlight {
  font-weight: 600;
  color: #9794C6;
  text-shadow: 0 0 10px #9794C6;
}

/* Truth emphasis */
.truth {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #9794C6;
  text-shadow: 0 0 12px #9794C6;
}

/* Quotation styling */
.quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 1rem;
  color: #9794C6;
  text-shadow: 0 0 15px #9794C6;
}

/* Fade-in animation */
/* .fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .glow-text {
    font-size: 2rem;
  }
  .seo-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .glow-text {
    font-size: 1.8rem;
  }
  .seo-content {
    padding: 0 1rem;
  }
  .seo-content p {
    font-size: 1rem;
  }
  .quote {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .glow-text {
    font-size: 1.5rem;
  }
  .seo-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .truth {
    font-size: 1.1rem;
  }
  .quote {
    font-size: 1rem;
  }
}


/* box css */
.box {
      width: 946px;
      max-width: 90%; /* makes it responsive */
      height: 157px;
      border-radius: 20px;
      border: 1px solid rgb(255, 255, 255); /* stroke */
      background: transparent;
      box-shadow: 31px -24px 4px rgba(209, 209, 209, 0.25); /* shadow */
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;

      margin-left: 70px;
    }


    /* Hover effect */
    .box:hover {
      transform: scale(1.05);
      box-shadow: 31px -24px 15px rgba(0, 0, 0, 0.3);
    }
/* 
    @media (max-width: 550px) {
      .box {
        height: 100px;
        font-size: rem;

        margin-left: -0px;
      } */

    @media (max-width: 600px) {
      .box {
        font-size: 0.1rem; /* smaller font size */
        height: 120px;

        margin-left: -0px;

        padding-left: 5px;
        padding-bottom: 5px;
        padding-top: 5px;
        padding-right: 5px;
      }
    }


    /* box css */
.box1 {
      width: 410px;
      max-width: 90%; /* makes it responsive */
      height: 112px;
      border-radius: 20px;
      border: 1px solid rgb(255, 255, 255); /* stroke */
      background: transparent;
      box-shadow: 31px -24px 4px rgba(209, 209, 209, 0.25); /* shadow */
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      transition: transform 0.3s ease, box-shadow 0.3s ease;

      margin-left: -100px;
    }


    /* Hover effect */
    .box1:hover {
      transform: scale(1.05);
      box-shadow: 31px -24px 15px rgba(0, 0, 0, 0.3);
    }
/* 
    @media (max-width: 550px) {
      .box {
        height: 100px;
        font-size: rem;

        margin-left: -0px;
      } */

    @media (max-width: 410px) {
      .box1 {
        font-size: 0.8rem; /* smaller font size */
        height: 112px;

        margin-left: -15px;

        padding-left: 5px;
        padding-bottom: 5px;
        padding-top: 5px;
        padding-right: 5px;
      }
    }


    /* glowtext1 */
.glow-text1{
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 15px #9794C6, 0 0 30px #9794C6;
  margin-bottom: 2rem;
}


/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .glow-text1 {
    font-size: 1.8rem;
  }
  .seo-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .glow-text1 {
    font-size: 1.8rem;
  }
  .seo-content {
    padding: 0 1rem;
  }
  .seo-content p {
    font-size: 1rem;
  }
  .quote {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .glow-text1 {
    font-size: 1.5rem;
  }
  .seo-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .truth {
    font-size: 1.1rem;
  }
  .quote {
    font-size: 1rem;
  }
}


/* custome box */

    .custom-box {
      width: 1320px;
      max-width: 95%;
      height: 400px;
      border-radius:80px;
      background: linear-gradient(0deg, #808080 0%, #000000 80%);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;

      /* Animation initial state */
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;

      margin-left: 100px;
    }

    .custom-box.active {
      opacity: 1;
      transform: translateY(0);
    }

    .custom-box h1 {
      font-size: 2.5rem;
      margin: 0 0 20px;
    }

    .custom-box p {
      font-size: 1.5rem;
      margin: 0 0 30px;
      max-width: 800px;
    }

    /* .custom-box button {
      padding: 12px 30px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      background: #ffffff;
      color: #ffffff;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .custom-box button:hover {
      background: #ff9800;
      color: #fff;
    } */

    /* Tablet view */
    @media (max-width: 1024px) {
      .custom-box {
        height: 300px;
        border-radius:  60px;
        padding: 20px;

        margin-left: 30px;
      }

      .custom-box h1 {
        font-size: 2rem;
      }

      .custom-box p {
        font-size: 1rem;
      }

      .custom-box button {
        font-size: 0.9rem;
        padding: 10px 25px;
      }
    }

    /* Mobile view */
    @media (max-width: 768px) {
      .custom-box {
        height: 250px;
        border-radius: 40px;
        padding: 15px;

        margin-left: 9px;
      }

      .custom-box h1 {
        font-size: 1.2rem;
      }

      .custom-box p {
        font-size: 0.9rem;
      }

      .custom-box button {
        font-size: 0.85rem;
        padding: 8px 20px;
      }
    }




    /* super button */
     /* From Uiverse.io by jawad_8494 */ 
.super-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  /* background: linear-gradient(145deg, #0f0f0f, #1c1c1c); */
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(8, 127, 255, 0.967);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.super-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #B993AA, #9588B4);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(171, 235, 235, 0.2);
}

.super-button:hover .arrow {
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  color: #00ffff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* super button1 */
.super-button1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  /* background: linear-gradient(145deg, #0f0f0f, #1c1c1c); */
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 20px rgba(8, 127, 255, 0.967);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.super-button1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #B993AA, #9588B4);
  animation: rotate 4s linear infinite;
  z-index: -2;
}

.super-button1::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0a0a0a;
  border-radius: inherit;
  z-index: -1;
}

.super-button1:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(171, 235, 235, 0.2);
}

.super-button1:hover .arrow {
  transform: translateX(6px);
}

.arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  color: #00ffff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* roadmap above */

 .custom-box2 {
      width: 1320px;
      max-width: 95%; /* Makes it responsive */
      height: 204px;
      background: transparent;
      border-radius: 80px;
      box-shadow: 0px 4px 50px 20px rgba(255, 255, 255, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 40px;
      font-family: Arial, sans-serif;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;

      margin-left: 100px;
    }

    /* Animation active */
    .custom-box2.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Tablet view */
    @media (max-width: 1024px) {
      .custom-box2 {
        font-size: 30px;
        height: 180px;

        margin-left: 30px;
      }
    }

    /* Mobile view */
    @media (max-width: 600px) {
      .custom-box2 {
        font-size: 18px;
        height: 160px;
        border-radius: 40px;
        padding: 15px;

        margin-left: 8px;
      }
    }



    /* footer */



    footer {
      margin-top: auto;
      padding: 100px 30px 50px;
      background: transparent;
      text-align: center;
      position: relative;
    }

    /* Huge Top Logo */
    .footer-logo {
      font-size: 280px;
      font-weight: bold;
      /* color: #fff; */
      color: transparent;
      text-align: center;
      margin-bottom: 60px;
      /* text-shadow: 0 8px 20px rgba(255,255,255,0.35); */
      text-shadow: 0 1px 1px rgba(255,255,255,0.09);
      animation: fadeSlide 2s ease-in-out;
      line-height: 1;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-60px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .footer-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .footer-column.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-column h3 {
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #689ef5;
      transform: translateX(5px);
    }

    /* Social media icons */
    .social-icons1 {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    .social-icons1 a {
      width: 40px;
      height: 40px;
      /* background: #fff; */
      background: transparent;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .social-icons1 a:hover {
      background: #aaa;
      transform: scale(1.1);
    }
    .social-icons1 i {
      color: #111;
      font-size: 18px;
    }

    .footer-bottom {
      margin-top: 50px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .footer-logo {
        font-size: 120px;
        margin-bottom: 50px;
      }
      .footer-container {
        gap: 20px;
      }
    }

    /* Mobile (2 columns layout) */
    @media (max-width: 600px) {
      .footer-logo {
        font-size: 50px;
        margin-bottom: 30px;
        
      }
      .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: center;
        padding-left: 155px;
      }
      .footer-column {
        text-align: center;
      }
      .footer-bottom {
        margin-top: 30px;
        font-size: 12px;
      }
      .social-icons {
        justify-content: center;
      }
    }




    .socials { display: flex; gap: 15px; 
    }
  .socials img {
    /* margin-top: 50px; */
   
    width: 26px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(100%) brightness(0.8);
  }

  .socials img:hover {
    transform: scale(1.2);
    filter: grayscale(0) brightness(1) drop-shadow(0 0 6px #fff);
  }
  

.container{
	max-width: 1170px;
	margin:auto;
}
/* .row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: transparent;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
} */

/*responsive*/
/* @media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
} */



/* Glow effect for heading */
.glow-text3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 15px #9794C6, 0 0 30px #9794C6;
  margin-bottom: 2rem;
}


/* service section */

.container {
      max-width: 1000px;
      width: 100%;
      text-align: center;
    }

    .title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .title span {
      color: #9794C6;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px; /* increased space between cards */
      justify-items: center;
    }

    .card {
      width: 100%;
      height: 220px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      overflow: hidden;
      background: linear-gradient(to bottom, #1a1a1a, #333);
      box-shadow: 0px 4px 30px rgba(0,0,0,0.5);
      padding: 20px;
      text-align: left;
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: all 0.6s ease;
    }

    .card.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .card.hide {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
    }

    /* Blue glow lines */
    .card::before,
    .card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 3px;
      /* background: linear-gradient(90deg, #0047ff, #00e5ff); */
      background: #0047ff;
    }

    .card::before { top: 0; }
    .card::after { bottom: 0; }

    .card h3 {
      font-size: 23px;
      font-weight: bold;
      margin-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      padding-bottom: 5px;
    }

    .card p {
      font-size: 20px;
      line-height: 1.5;
      color: #dcdcdc;
    }

    /* Button styles */
    .btn-wrapper {
      margin-top: 30px;
    }

    .toggle-btn {
      padding: 12px 36px;
      border: none;
      border-radius: 50px;
      background: #fff;
      color: #000;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .toggle-btn:hover {
      background: #575758;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .card-grid {
        grid-template-columns: 1fr; /* stack on mobile */
      }
      .title {
        font-size: 24px;
      }
    }




    /* FAQ section  */
     h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    text-align: center;
    }

    .faq-container {
      max-width: 800px;
      margin: auto;
      text-align: left;
    }

    .faq {
      /* background: rgba(255, 255, 255, 0.05); */
      background: transparent;
      margin: 10px 0;
      border-radius: 10px;
      padding: 15px 20px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease;
    }

    .faq:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .faq-question {
      font-size: 1.1rem;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      font-size: 0.95rem;
      margin-top: 10px;
      line-height: 1.5;
    }

    .toggle-sign {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    /* Read more button */
    .read-more-container {
      text-align: center;
      margin-top: 20px;
    }

    .read-more-btn {
      background: #111;
      color: #fff;
      border: 1px solid #444;
      border-radius: 25px;
      padding: 10px 20px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .read-more-btn:hover {
      background: #222;
    }

    .extra-faqs {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
    }

    .extra-faqs.show {
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-container {
        padding: 0 15px;
      }

      h2 {
        font-size: 1.5rem;
      }

      .faq-question {
        font-size: 1rem;
      }
    }



    /* contact us  */

    .body1{
      /* font-family: Arial, sans-serif; */
      font-family: 'Poppins', sans-serif;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      /* min-height: 100vh; */
      padding: 20px;
      overflow-x: hidden;
      position: relative;
    }


     h1 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.2rem;
      animation: fadeInDown 1s ease;
    }

    .form-container {
      margin-top: 100px;
      /* margin-left: 430px; */
      width: 100%;
      max-width: 650px;
      background: rgba(20, 20, 20, 0.85);
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease;
    }

    .form-group {margin-bottom: 25px;}
    label {display: block; font-size: 0.9rem; margin-bottom: 8px;}

    /* Curved line inputs */
    .input-line {
      width: 100%;
      padding: 10px;
      border: none;
      border-bottom: 2px solid #444;
      border-radius: 50px; /* ✅ curve both sides */
      background: transparent;
      color: #fff;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }
    .input-line:focus {
      border-color: #fff;
      outline: none;
      box-shadow: 0 2px 6px rgba(255,255,255,0.3);
    }

    textarea.input-line {min-height: 100px; resize: vertical;}

    /* Two-column row for Name fields */
    .row {
      display: flex;
      gap: 20px;
    }
    .row .form-group {
      flex: 1;
    }

    /* Checkbox & Radio vertical */
    .option-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .option-group label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      cursor: pointer;
    }
    .option-group input[type="checkbox"],
    .option-group input[type="radio"] {
      accent-color: #fff;
      transform: scale(1.2);
      transition: box-shadow 0.3s ease;
    }
    .option-group input:focus {
      outline: none;
      box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.6);
    }

    /* White Button */
    .btn {
      width: 100%; padding: 14px;
      border: none; border-radius: 30px;
      background: #fff; color: #000;
      font-size: 1rem; font-weight: bold;
      cursor: pointer; transition: all 0.3s ease;
    }
    .btn:hover {
      background: #ddd;
      transform: translateY(-2px);
    }

    /* Animations */
    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {font-size: 1.8rem;}
      .form-container {padding: 20px;}
      .row {flex-direction: column; gap: 0;}
    }
    @media (max-width: 480px) {
      h1 {font-size: 1.5rem;}
    }




    /* below contact form secrion */
.body2{
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background: transparent; /* Black background */
      color: #fff;
    }



    .contact-section {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      padding: 60px 90px;
      /* background: linear-gradient(145deg, #000000, #111111); */
      position: relative;
      overflow: hidden;
    }

    .contact-box {
      flex: 1;
      margin: 0 15px;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .contact-box h3 {
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 10px;
    }

    .contact-box p {
      font-size: 0.95rem;
      margin: 5px 0;
      color: #fff;
    }

    /* Background light effect */
    .contact-section::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      /* background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); */
      top: -100px;
      left: -100px;
      animation: moveLight 10s infinite alternate ease-in-out;
    }

    @keyframes moveLight {
      from {
        transform: translate(0, 0);
      }
      to {
        transform: translate(150px, 150px);
      }
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .contact-section {
        flex-direction: column;
        text-align: center;
      }
      .contact-box {
        margin: 20px 0;
      }
    }

    /* about page */
    .liner{
      font-size: 22px;
      font-weight: bold;
      background: linear-gradient(45deg, #ffffff, #221d1d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;

    }

     .liner1{
     
      font-weight: bold;
      background: linear-gradient(45deg, #ffffff, #221d1d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;

    }

    .right{
      margin-left:  -350px;
    }



    /* mission & vision */

.section1 {
      text-align: center;
      padding: 80px 20px;
    }

   .section1 h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 70px;
      color: #eaeaea;
      position: relative;
      display: inline-block;
      letter-spacing: 1px;
    }

   .section1 h2::after {
      content: "";
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 140px;
      height: 3px;
      background: linear-gradient(90deg, #484848, #525252);
      border-radius: 2px;
    }

    .cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 60px;
    }

    .card8 {
      width: 600px;
      text-align: center;
      opacity: 0;
      transform: translateY(60px);
      transition: all 1s ease;
      position: relative;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 40px 20px;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .card8.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Floating glowing icon with title */
    .icon-wrapper {
      position: relative;
      display: inline-block;
      margin-bottom: 25px;
      animation: float 4s ease-in-out infinite;
    }

    .glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 110px;
      height: 110px;
      background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 3s infinite ease-in-out;
    }

    .icon {
      width: 90px;
      height: 90px;
      position: relative;
      z-index: 1;
      display: block;
      margin: 0 auto 10px auto;
    }

    .icon-title {
      font-size: 2rem;
      font-weight: bold;
      position: relative;
      display: inline-block;
    }

    /* Animated underline */
    .icon-title::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #343434, #343434);
      transition: width 0.6s ease;
    }

    .card8.show .icon-title::after {
      width: 60px;
    }

    .card8 p {
      font-size: 1.5rem;
      color: #bbb;
      line-height: 1.6;
      margin-top: 25px;
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
      100% { transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
      50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    }

    @media (max-width: 768px) {
      .cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
      }
      .card8 {
        width: 90%;
        font-size: 1.2rem;
      }
    }


    /* our core values */

    .body4{
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: transparent;
      color: #fff;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

.cv-title {
      font-size: 2.5rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 60px;
      color: #f2f2f2;
      position: relative;
    }

    .cv-title::after {
      content: "";
      width: 100px;
      height: 3px;
      background: #f2f2f2;
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .cv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 30px;
      max-width: 1100px;
      width: 100%;
    }

    /* Card */
    .cv-card {
      background: #fff;
      color: #000;
      border-radius: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.5);
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.9s ease;
    }

    .cv-card.cv-active {
      transform: translateY(0);
      opacity: 1;
    }

    .cv-card-text h3 {
      margin: 0 0 8px;
      font-size: 1.1rem;
      font-weight: 700;
    }

    .cv-card-text p {
      margin: 0;
      font-size: 0.95rem;
      color: #333;
    }

    /* Icon box */
    .cv-icon-box {
      background: #5a5a5a;
      width: 80px;
      height: 80px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: skewX(-15deg);
      box-shadow: 6px 6px 12px rgba(0,0,0,0.4);
      transition: all 0.4s ease;
      flex-shrink: 0;
    }

    .cv-icon {
      font-size: 2rem;
      color: #fff;
      transform: skewX(15deg);
    }

    /* Hover effects */
    .cv-card:hover {
      transform: translateY(-8px) scale(1.02);
      transition: all 0.3s ease;
    }

    .cv-card:hover .cv-icon-box {
      background: #6f6f6f;
      transform: skewX(-15deg) scale(1.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cv-grid {
        grid-template-columns: 1fr;
      }
      .cv-card {
        border-radius: 30px;
      }
    }



    /* trust growwit */


     /* Heading */
    .gw-trust-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 60px;
    }

    .gw-trust-title span {
      background: linear-gradient(90deg, #8e44ad, #3498db);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gw-trust-title::after {
      content: "";
      display: block;
      width: 150px;
      height: 4px;
      background: linear-gradient(90deg, #8e44ad, #3498db, #2ecc71);
      margin: 14px auto 0;
      border-radius: 2px;
      animation: gw-gradient-slide 4s infinite linear;
      background-size: 300% 300%;
    }

    @keyframes gw-gradient-slide {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Container */
    .gw-trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1150px;
      margin: 0 auto;
    }

    /* Card */
    .gw-trust-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 18px;
      padding: 30px 25px;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.6);
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.9s ease;
      border: 1px solid rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
    }

    .gw-trust-item::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(120deg, rgba(142, 68, 173, 0.2), rgba(52, 152, 219, 0.2), rgba(46, 204, 113, 0.2));
      transform: rotate(25deg);
      z-index: 0;
    }

    .gw-trust-item.gw-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .gw-trust-item:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0px 12px 30px rgba(0,0,0,0.8);
      border: 1px solid rgba(142,68,173,0.6);
    }

    /* Icon */
    .gw-trust-icon {
      font-size: 2.4rem;
      margin-bottom: 15px;
      color: #fff;
      z-index: 1;
      position: relative;
      transition: transform 0.5s ease;
    }

    .gw-trust-item:hover .gw-trust-icon {
      transform: scale(1.2) rotate(8deg);
    }

    /* Text */
    .gw-trust-item h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0 0 12px;
      z-index: 1;
      position: relative;
    }

    .gw-trust-item p {
      font-size: 0.95rem;
      color: #ddd;
      margin: 0;
      z-index: 1;
      position: relative;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gw-trust-title {
        font-size: 2rem;
      }
    }



    /* founder  */

     .founder-section {
      max-width: 800px;
    }

    /* Heading */
    .founder-section h1 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(-30px);
      animation: fadeInDown 1s forwards;
    }

    .founder-section h1::after {
      content: "";
      display: block;
      width: 120px;
      height: 3px;
      margin: 12px auto 0;
      background: linear-gradient(90deg, #8e44ad, #3498db, #2ecc71);
      border-radius: 2px;
      animation: gradientMove 4s infinite linear;
      background-size: 300% 300%;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Founder Image */

    .body10{
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: transparent;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      text-align: center;
      overflow-x: hidden;
      padding: 20px;
    }



    .founder-image {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      overflow: hidden;
      margin: 25px auto;
      border: 5px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.7);
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.8s ease;
    }

    .founder-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .founder-image.show {
      opacity: 1;
      transform: scale(1);
      animation: float 4s ease-in-out infinite, glowPulse 2s infinite alternate;
    }

    /* Floating animation */
    @keyframes float {
      0% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-10px) scale(1.02); }
      100% { transform: translateY(0px) scale(1); }
    }

    /* Glow pulse */
    @keyframes glowPulse {
      from { box-shadow: 0px 0px 15px rgba(142, 68, 173, 0.4); }
      to { box-shadow: 0px 0px 30px rgba(52, 152, 219, 0.8); }
    }

    /* Hover effect */
    .founder-image:hover {
      border-color: #fff;
      box-shadow: 0px 0px 35px rgba(46, 204, 113, 0.9);
      transform: scale(1.05);
    }

    /* Founder Name */
    .founder-section h2 {
      font-size: 1.8rem;
      margin: 10px 0 5px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s forwards;
      animation-delay: 0.8s;
    }

    .founder-section p {
      font-size: 1rem;
      color: #bbb;
      margin: 0;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s forwards;
      animation-delay: 1.2s;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .founder-section h1 {
        font-size: 2rem;
      }
      .founder-image {
        width: 160px;
        height: 160px;
      }
      .founder-section h2 {
        font-size: 1.5rem;
      }
      .founder-section p {
        font-size: 0.9rem;
      }
    }

    /* Keyframes */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }




    /* blog page */

    .blog-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      position: relative;
    }

    .blog-title::after {
      content: "";
      width: 120px;
      height: 3px;
      background: linear-gradient(90deg, #8e44ad, #3498db, #2ecc71);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
      animation: blog-gradientMove 4s infinite linear;
      background-size: 300% 300%;
    }

    @keyframes blog-gradientMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Blog Slider */
    .blog-slider-container {
      position: relative;
      max-width: 1100px;
      margin: auto;
      overflow: hidden;
    }

    .blog-slider-track {
      display: flex;
      gap: 20px;
      transition: transform 0.6s ease;
    }

    .blog-card {
      background: #111;
      border-radius: 15px;
      box-shadow: 0px 6px 20px rgba(0,0,0,0.5);
      width: 320px;
      flex-shrink: 0;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .blog-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0px 10px 30px rgba(46, 204, 113, 0.6);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 15px 15px 0 0;
    }

    .blog-card-content {
      padding: 15px;
      text-align: left;
    }

    .blog-meta {
      font-size: 0.85rem;
      color: #bbb;
      margin-bottom: 10px;
    }

    .blog-card-content h3 {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .blog-card-content a {
      text-decoration: none;
      color: #2ecc71;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .blog-card-content a:hover {
      color: #3498db;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .blog-card {
        width: 260px;
      }
    }

    @media (max-width: 480px) {
      .blog-card {
        width: 90%;
      }
      .blog-slider-track {
        gap: 10px;
      }
    }



    /* resignes CTA */

    .body12{
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      background: transparent   ;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }



    .cta-wrapper {
      position: relative;
      max-width: 900px;
      width: 100%;
      text-align: center;
      padding: 60px 40px;
      border-radius: 20px;
      background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
      overflow: hidden;
      opacity: 0;
      transform: scale(0.9);
      z-index: 1;
    }

    /* Rotating Gradient Glow Border */
    .cta-wrapper::before {
      content: "";
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      border-radius: 24px;
      background: conic-gradient(
        from 0deg,
        #00c3ff,
        #ff00ff,
        #00c3ff
      );
      z-index: -1;
      animation: spinBorder 6s linear infinite;
    }

    @keyframes spinBorder {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Mask inside so the gradient looks like a border */
    .cta-wrapper::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      right: 2px;
      bottom: 2px;
      border-radius: 18px;
      background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
      z-index: -1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-content h1 {
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .cta-content h1 span {
      color: #00c3ff;
    }

    .cta-content p {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 30px;
      background: #ffffff;
      color: #000;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0px 5px 20px rgba(0, 195, 255, 0.6);
      letter-spacing: 0.5px;
    }

    .cta-button:hover {
      background: #858585;
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.5);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cta-wrapper {
        padding: 40px 20px;
      }

      .cta-content h1 {
        font-size: 1.6rem;
      }

      .cta-content p {
        font-size: 0.95rem;
      }
    }




    /* uper footer sec index page */


  .body12{
     font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
  }

    .hero-section-container {
      max-width: 850px;
    }

    /* Heading */
    .hero-section-title {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.3;
      opacity: 0;
      transform: translateY(40px);
      animation: heroFadeUp 1.2s ease forwards;
    }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Gradient glowing #1? */
    .hero-section-highlight {
      background: linear-gradient(90deg, #7b5cff, #6bc1ff, #7b5cff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: heroGlowPulse 3s ease-in-out infinite;
    }

    @keyframes heroGlowPulse {
      0%, 100% { text-shadow: 0 0 10px rgba(123, 92, 255, 0.6); }
      50% { text-shadow: 0 0 25px rgba(107, 193, 255, 1); }
    }

    /* Subheading */
    .hero-section-subtitle {
      margin-top: 15px;
      font-size: 1.2rem;
      color: #aaa;
      opacity: 0;
      animation: heroFadeIn 1.5s ease forwards 0.8s;
    }

    @keyframes heroFadeIn {
      to { opacity: 1; }
    }

    /* Button */
    .hero-section-button {
      margin-top: 35px;
      padding: 14px 36px;
      font-size: 1.1rem;
      font-weight: 500;
      border: none;
      border-radius: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      backdrop-filter: blur(10px);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-section-button:hover {
      background: linear-gradient(90deg, #7b5cff, #6bc1ff);
      color: #fff;
      box-shadow: 0 0 25px rgba(107, 193, 255, 0.7);
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-section-title {
        font-size: 2.2rem;
      }
      .hero-section-subtitle {
        font-size: 1rem;
      }
      .hero-section-button {
        padding: 12px 28px;
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero-section-title {
        font-size: 1.7rem;
      }
      .hero-section-subtitle {
        font-size: 0.9rem;
      }
      .hero-section-button {
        margin-top: 25px;
        padding: 10px 22px;
        font-size: 0.9rem;
      }
    }



    /* organic sec */

    .body13{
      font-family: 'Segoe UI', sans-serif;
      background: transparent;
      color: #fff;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
    }



     .growwit-section {
      max-width: 1100px;
      text-align: center;
    }

    /* Title */
    .growwit-title {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .growwit-title span {
      background: linear-gradient(90deg, #7b5cff, #6bc1ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    /* Subtitle */
    .growwit-subtitle {
      font-size: 1rem;
      color: #aaa;
      max-width: 750px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

    /* Features Row */
    .growwit-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
    }

    .growwit-feature {
      flex: 1 1 280px;
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.05);
      padding: 18px 22px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .growwit-feature.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Circle + Icon */
    .growwit-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #000;
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.4s ease, background 0.4s ease;
    }

    .growwit-icon svg {
      width: 28px;
      height: 28px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
    }

    .growwit-feature:hover .growwit-icon {
      transform: scale(1.1);
      background: #fff;
    }

    .growwit-feature:hover .growwit-icon svg {
      stroke: #000;
    }

    .growwit-text {
      font-size: 1rem;
      color: #ddd;
      line-height: 1.4;
    }

    /* Middle heading */
    .growwit-middle {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 15px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease;
    }

    .growwit-middle.show {
      opacity: 1;
      transform: translateY(0);
    }

    .growwit-desc {
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 30px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 1s ease;
    }

    .growwit-desc.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Button */
    .growwit-btn {
      padding: 14px 32px;
      font-size: 1rem;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
      transform: scale(0.9);
    }

    .growwit-btn.show {
      opacity: 1;
      transform: scale(1);
    }

    .growwit-btn:hover {
      background: #222;
       color: #000; 
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .growwit-title {
        font-size: 1.8rem;
      }
      .growwit-features {
        gap: 20px;
      }
      .growwit-feature {
        flex: 1 1 100%;
      }
      .growwit-icon {
        width: 55px;
        height: 55px;
      }
      .growwit-middle {
        font-size: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      .growwit-title {
        font-size: 1.5rem;
      }
      .growwit-text {
        font-size: 0.9rem;
      }
      .growwit-middle {
        font-size: 1.2rem;
      }
      .growwit-btn {
        padding: 12px 26px;
        font-size: 0.9rem;
      }
    }


    /* below form section */

    .footerinfo-section {
      /* background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%),
                  radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 70%),
                  #000; */

      background: transparent;
      padding: 60px 20px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      text-align: center;
    }

    .footerinfo-box {
      flex: 1 1 250px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .footerinfo-box.show {
      opacity: 1;
      transform: translateY(0);
    }

    .footerinfo-box h4 {
      font-size: 1rem;
      font-weight: 500;
      color: #bbb;
      margin-bottom: 10px;
    }

    .footerinfo-box p {
      font-size: 0.95rem;
      color: #fff;
      line-height: 1.6;
    }

    .footerinfo-box p strong {
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footerinfo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }





    /* roadmap section */

    .roadmap{
      position:relative;
      width:90%;
      max-width:1100px;
      margin:100px auto;
      padding:50px 0;
    }

    /* line */
    .roadmap-line{
      position:absolute;
      top:0;left:50%;transform:translateX(-50%);
      width:3px;height:100%;
      background:#e5e7eb;border-radius:2px;overflow:hidden;
    }
    .roadmap-progress{
      position:absolute;top:0;left:0;width:100%;height:0;
      background:linear-gradient(180deg,#4f81ff,#1c0ba2);
    }

    /* dot */
    .roadmap-dot{
      position:absolute;
      top:0;left:50%;transform:translate(-50%,-50%);
      width:20px;height:20px;border-radius:50%;
      background:#ffffff;
      box-shadow:0 0 15px rgba(68, 71, 239, 0.6);
      z-index:10;
      transition:background 0.4s ease;
    }

    /* items */
    .roadmap-item{
      position:relative;width:45%;
      padding:25px;margin:80px 0;
      background:#fff;border-radius:12px;
      box-shadow:0 4px 15px rgba(0,0,0,0.08);
      opacity:0;transform:translateY(40px);
      transition:all 0.6s ease-out;
    }
    .roadmap-item.active{opacity:1;transform:translateY(0);}
    .roadmap-item.left{left:0;text-align:justify;}
    .roadmap-item.right{left:55%;text-align:justify;}
    .roadmap-item h3{margin-bottom:10px;font-size:22px;color:#d87ff8;}
    .roadmap-item p{font-size:16px;color:#444;}


    /* responsive */
    @media(max-width:900px){
      .roadmap-item,.roadmap-item.left,.roadmap-item.right{
        width:90%;left:40px;text-align:justify;
      }
      .roadmap-line{left:20px;}
      .roadmap-dot{left:20px;}
    }






    /* about footer */
footer {
      margin-top: auto;
      padding: 100px 30px 50px;
      background: transparent;
      text-align: center;
      position: relative;
    }

    /* Big Logo */
    .footer-logo {
      font-size: 280px;
      font-weight: bold;
      /* color: #fff; */
      color: transparent;
      text-align: center;
      margin-bottom: 60px;
      /* text-shadow: 0 8px 20px rgba(255,255,255,0.35); */
      text-shadow: 0 1px 1px rgba(255,255,255,0.09);
      animation: fadeSlide 2s ease-in-out;
      line-height: 1;
    }

    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(-60px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .footer-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 220px;
      text-align: left;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .footer-column.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .footer-column h3 {
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #aaa;
      transform: translateX(5px);
    }

    /* Social media icons */
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    .social-icons a {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      background: #aaa;
      transform: scale(1.1);
    }
    .social-icons i {
      color: #111;
      font-size: 18px;
    }

    .footer-bottom {
      margin-top: 50px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      text-align: center;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .footer-logo {
        font-size: 150px;
        margin-bottom: 50px;
      }
      .footer-container {
        gap: 20px;
      }
    }

    /* Mobile (2 columns layout + left align) */
    @media (max-width: 600px) {
      .footer-logo {
        font-size: 90px;
        margin-bottom: 40px;
        text-align: left;
      }
      .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
      }
      .footer-column {
        text-align: left;
      }
      .footer-bottom {
        margin-top: 30px;
        font-size: 12px;
        text-align: left;
      }
      .social-icons {
        justify-content: flex-start;
      }


      .socials { display: flex; gap: 15px; 
    }
  .socials img {
    /* margin-top: 50px; */
   
    width: 26px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(100%) brightness(0.8);
  }

  .socials img:hover {
    transform: scale(1.2);
    filter: grayscale(0) brightness(1) drop-shadow(0 0 6px #fff);
  }
  

.container{
	max-width: 1170px;
	margin:auto;
}
    }

    /* footer2 */

    .custom-footer {
  padding: 100px 30px 50px;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Big faded logo text */
.custom-footer .footer-logo {
  font-size: 280px;
  font-weight: bold;
  color: transparent;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.09);
  line-height: 1;
  animation: fadeSlide 2s ease-in-out;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Container */
.custom-footer .footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Columns */
.custom-footer .footer-column {
  flex: 1;
  min-width: 220px;
  text-align: left;
}

.custom-footer .footer-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.custom-footer .footer-column ul {
  list-style: none;
}

.custom-footer .footer-column ul li {
  margin-bottom: 10px;
}

.custom-footer .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.custom-footer .footer-column ul li a:hover {
  color: #9794C6;
  transform: translateX(5px);
}

/* Social icons */
.custom-footer .socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.custom-footer .socials img {
  width: 26px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(100%) brightness(0.8);
}
.custom-footer .socials img:hover {
  transform: scale(1.2);
  filter: grayscale(0) brightness(1) drop-shadow(0 0 6px #fff);
}

/* Bottom text */
.custom-footer .footer-bottom {
  margin-top: 50px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Tablet */
@media (max-width: 992px) {
  .custom-footer .footer-logo {
    font-size: 120px;
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .custom-footer .footer-logo {
    font-size: 70px;
    margin-bottom: 30px;
  }
  .custom-footer .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    margin-left: 25px;
  }
  .custom-footer .footer-bottom {
    margin-top: 30px;
    font-size: 12px;
    text-align: left;
  }
}
.link{
  color: #ffffff;
  text-decoration: none;
}