* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000;
    font-family: 'Heebo', sans-serif;
  }
  
  
  a {
    text-decoration: none;
    color: inherit;
  }

  .hero-main {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

.hero-section, .header {
    position: relative;
    z-index: 1;
}

  
  /* Header start */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    padding: 0 60px;
    margin: 0 auto;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 80px;
  }
  
  .logo img {
    display: block;
    width: 198px;
    height: auto;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav ul li a {
    color: #FFF;
    font-family: Heebo;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: color 0.3s ease;
  }
  
  .nav ul li a:hover {
    color: #90FF3C;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;

  }

  .nav ul li a:active{
    color: #90FF3C;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
  }
  
  .header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    padding: 9px 13px;
    border-radius: 25px;
    background-color: #000;
    color: #90FF3C;
    border: 1px solid #90FF3C;
    transition: all 0.3s ease;
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  
  .btn:hover {
    background-color: #90FF3C;
    color: #000;
    border-color: #90FF3C;;
  }
  
  .btn-primary {
    background-color: #000;
    color: #90FF3C;
    border: 1px solid #90FF3C;
  }
  
  .btn-primary:hover {
    background-color: #90FF3C;
    color: #000;
    border-color: #90FF3C;
  }
  
  .line {
    width: 2px;
    height: 35px;
    background-color: #90FF3C;
    rotate: 15deg;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #90FF3C;
    border-radius: 3px;
  }
  

  @media (max-width: 1024px) {
    .container {
        padding: 0 20px;
      }
    .menu-toggle {
      display: flex;
    }
    .btn {
        padding: 9px 12px;
        font-size: 18px;
      }

      .logo img {
        width: 170px;
      }

    .nav {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: #000;
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav.active {
      display: flex;
      background: #131313;
    }
  
    .nav ul {
      flex-direction: column;
      gap: 20px;
    }

    .nav ul li {
        border: 1px solid #90FF3C;
        width: 360px;
        padding: 7px 0;
        border-radius: 5px;
      }
  
    .header-buttons {
      margin-top: 0px;
    }
  
    .header-content {
        height: 65px;
      align-items: center;
    }
  }

  @media (max-width: 480px) {
    .btn {
      padding: 5px 5px;
      font-size: 16px;
    }
    .logo img {
      width: 140px;
    }
    .line {
        height: 25px;
    }
    .header-buttons {
        gap: 8px;
    }
    .menu-toggle {
        gap: 4px;
    }
    
    .header-content {
        height: 50px;
    }
  }

  @media (max-width: 360px) {
    .container {
        padding: 0 8px;
      }
    .logo img {
        width: 90px;
      }
      .btn {
        padding: 4px 4px;
        font-size: 13px;
      }
      .line {
        display: none;
    }
    .header-buttons {
        gap: 4px;
    }
  }

  /* Fade-in & slide down for header */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  animation: slideFadeIn 0.6s ease-out forwards;
}

/* Smooth dropdown animation for nav */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav.active {
  animation: slideDown 0.4s ease-in-out forwards;
}

/* Button hover animation */
.btn, .btn-primary {
  position: relative;
  overflow: hidden;
}

.btn::after, .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.3s ease;
}

.btn:hover::after, .btn-primary:hover::after {
  left: 0;
}
  /* header end */


  /* Hero Start */
  .hero-section {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    height: 89vh;
}

.head-one {
    max-width: 900px;
    font-family: Poppins;
    font-weight: 700;
    font-size: 85px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
    color: #90FF3C;
}

.head-two {
    max-width: 900px;
    font-family: Poppins;
    font-weight: 700;
    font-size: 62px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #90FF3C 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-hero {
    width: 955px;
    height: auto;
    margin: 20px 0;
}

.h-para {
    max-width: 700px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .line-hero {
        width: 700px;
    }
}
@media (max-width: 768px) {
    .head-one {
        font-size: 56px;
    }

    .head-two {
        font-size: 42px;
    }

    .h-para {
        font-size: 22px;
        line-height: 32px;
        padding: 0 15px;
    }

    .line-hero {
        width: 450px;
    }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 20px;
    height: 70vh;
}
    .head-one {
        font-size: 40px;
    }

    .head-two {
        font-size: 28px;
    }

    .h-para {
        font-size: 18px;
        line-height: 20px;
    }

    .line-hero {
        width: 260px;
        margin: 10px 0;
    }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animate Hero Elements */
.head-one {
  animation: fadeSlideDown 0.8s ease-out forwards;
}

.head-two {
  animation: fadeSlideUp 0.8s ease-out 0.3s forwards;
}

.line-hero {
  animation: scaleIn 0.6s ease-out 0.6s forwards;
  transform-origin: center;
}

.h-para {
  animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
}

  /* Hero End */

  /* banner start */
.listing-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    background: linear-gradient(269.98deg, #90FF3C 1.26%, #000000 120.04%);
  }
  
  .listing-section img {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .listing-section img:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .listing-section img {
      width: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .listing-section img {
      width: 120px;
    }
  
    .listing-section {
      gap: 15px;
      padding: 30px 10px;
    }
  }
  /* banner end */

  /* About Start */
.about-section {
  padding: 60px 80px 30px 80px;
  background-image: url(/assest/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.abo-head {
  text-align: left;
  animation: fadeInDown 1s ease-in-out;
}

.a-head {
  font-family: Poppins;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(91.08deg, #90FF3C -3.76%, #FFFFFF 191.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.abo-head img {
  width: 880px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-left {
  flex: 1;
  min-width: 250px;
  animation: slideInLeft 1s ease-in-out;
}

.about-left img {
  width: 100%;
  max-width: 614px;
  height: auto;
  border: 2px solid #90FF3C;
}

.about-right {
  flex: 1;
  min-width: 250px;
  animation: slideInRight 1s ease-in-out;
}

.a-para {
  font-family: Poppins;
font-weight: 400;
font-size: 30px;
line-height: 42px;
letter-spacing: 0%;
  color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .about-section {
    padding: 50px 30px 15px 30px;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-left,
  .about-right {
    text-align: center;
  }
  .abo-head img {
    width: 650px;
  }
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 30px 20px 10px 20px;
    min-height: 70vh;
  }
  .a-head {
    font-size: 48px;
  }
  .a-para {
    font-size: 20px;
    line-height: 28px;
  }
  .abo-head img {
    width: 422px;
  }
}

@media screen and (max-width: 480px) {
  .about-section {
    padding: 30px 10px 10px 10px;
  }
  .a-head {
    font-size: 32px;
  }
  .a-para {
    font-size: 16px;
    line-height: 20px;
  }
  .abo-head img {
    width: 260px;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Initial state (before scrolling into view) */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Animate in when visible */
.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}


  /* About End */

  /* Service Start */
.service-section {
  background: url('/assest/services/bgg.png') no-repeat center;
  padding: 40px 80px;
}

.ser-head {
  text-align: left;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease;
}

.s-head {
  font-family: Poppins;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(91.08deg, #90FF3C -3.76%, #FFFFFF 191.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.ser-head img{
  width: 880px;
}

.ser-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ser-row-one,
.ser-row-three {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

.ser-row-two {
  display: flex;
  justify-content: center;
}

.ser-box-left,
.ser-box-right,
.ser-box-center {
  flex: 1 1 48%;
  max-width: 550px;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #90FF3C;
  backdrop-filter: blur(6px);
  animation: slideInUp 1s ease forwards;
  opacity: 0;
}

.ser-box-center {
  max-width: 550px;
  margin: 0 auto;
  animation-delay: 0.2s;
}

.s-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(92.77deg, #90FF3C 2.31%, #FFFFFF 107.29%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  
  margin-bottom: 20px;
}

.s-para {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.box-detail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box-left {
  flex: 1;
  flex-basis: 70%;
}

.box-right {
  flex: 1;
  flex-basis: 30%;
  text-align: center;
}

.box-right img {
  max-width: 100%;
  height: auto;
}

.s-subtitle {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.s-list {
  font-family: Heebo;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  list-style: disc;
  padding-left: 20px;
  color: #FFFFFF;
}

.s-list li {
  margin-bottom: 6px;
}

@keyframes slideInUp {
  0% {
      transform: translateY(40px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
      transform: translateY(-30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}


@media (max-width: 1024px) {
  .service-section {
    padding: 40px 40px;
  }
  .ser-box-left,
  .ser-box-right {
      flex: 1 1 100%;
  }
  .ser-row-one,
  .ser-row-three {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: anchor-center;
}

  .ser-head img{
    width: 650px;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: 40px 20px;
  }
  .s-head {
      font-size: 48px;
  }
  .s-title {
      font-size: 20px;
  }
  .s-para {
      font-size: 15px;
  }
  .ser-head img{
    width: 422px;
  }
}

@media (max-width: 480px) {
  .s-head {
    font-size: 36px;
}
  .box-detail {
      flex-direction: column;
      gap: 15px;
  }
  .box-right {
      text-align: center;
  }
  .ser-head img{
    width: 260px;
  }
}
  /* Service end */

  /* Why choose us start */
#whychooseus {
  padding: 50px 80px;
  text-align: center;
  background: url('/assest/why-chose/bg.png') no-repeat center center/cover;
}

.why-head {
  margin-bottom: 40px;
  text-align: left;
}

.w-head {
  font-family: Poppins;
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0%;
  background: linear-gradient(91.08deg, #90FF3C -3.76%, #FFFFFF 191.39%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.why-head img{
  width: 880px;
}


.why-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-row-one,
.why-row-two,
.why-row-three {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-left,
.why-right {
  display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    flex: 1 1;
    text-align: left;
    gap: 10px;
}

.why-left img,
.why-right img {
  width: 172px;
  height: auto;
  border: 2px solid #90FF3C;
  border-radius: 20px;
  padding: 5px;
}

.w-title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  #whychooseus {
    padding: 50px 30px;
  }
  .why-left,
  .why-right {
      max-width: 100%;
  }
  .why-head img{
    width: 650px;
  }
  .w-title {
    font-size: 24px;
  }
  .why-left img,
.why-right img {
  width: 150px;
}
}

@media (max-width: 768px) {
  #whychooseus {
    padding: 50px 20px;
  }
  .why-row-one,
  .why-row-two,
  .why-row-three {
    flex-direction: column;
  }
  .w-head {
      font-size: 48px;
  }

  .why-left img,
  .why-right img {
      width: 150px;
  }

  .w-title {
      font-size: 24px;
  }
  .why-head img{
    width: 422px;
  }
}

@media (max-width: 480px) {
  #whychooseus {
      padding: 30px 10px;
  }
  .w-head {
    font-size: 32px;
}

  .why-row-one,
  .why-row-two,
  .why-row-three {
      flex-direction: column;
      gap: 20px;
  }
  .why-left img,
  .why-right img {
      width: 100px;
  }

  .why-left,
  .why-right {
      padding: 10px;
  }

  .w-title {
      font-size: 18px;
  }
  .why-head img{
    width: 260px;
  }
}
  /* Why choose us end */

  /* crypto market Start */
.market-section {
  width: 100%;
  padding: 50px 80px;
}

.market-head {
  text-align: center;
  margin-bottom: 70px;
}

.m-head {
  font-family: Poppins;
  font-weight: 700;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #90FF3C;
  margin-bottom: 20px;
}

.mar-para {
  font-family: Poppins;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}

.market-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.market-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  text-align: right;
  justify-content: center;
  gap: 20px;
}
.market-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.market-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.market-center img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.market-box {
  padding: 20px;
  max-width: 330px;
  gap: 20px;
}

.msub-head {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  background-color: #90FF3C;
  padding: 5px 10px;
  border-radius: 25px;
  margin: 0 auto 5px auto;
  max-width: max-content;
  display: block;
}

.m-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.m-para {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .market-section {
    padding: 50px 30px;
  }
  .market-content {
      flex-direction: column;
      align-items: center;
  }

  .market-left, .market-right {
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
  }

  .market-box {
      width: 45%;
  }

  .market-center {
      margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .m-head {
      font-size: 28px;
  }

  .m-para {
      font-size: 15px;
  }

  .market-box {
      width: 100%;
  }

  .market-left, .market-right {
      flex-direction: column;
      align-items: center;
  }

  .market-left, .market-right {
    gap: 10px;
}
}

@media (max-width: 480px) {
  .market-section {
      padding: 20px 10px;
  }

  .m-head {
      font-size: 24px;
  }

  .market-box {
      padding: 20px;
  }

  .msub-head {
      font-size: 13px;
  }

  .m-title {
      font-size: 18px;
  }

  .m-para {
      font-size: 14px;
  }
}
  /* crypto market end */

  /* crypto Trading Start */
#cryptotrading {
  padding: 60px 80px;
  text-align: center;
}

.trading-head {
  max-width: 800px;
  margin: 0 auto 40px;
  justify-content: center;
  align-items: center;
}

.t-head {
  font-family: Poppins;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.t-head span {
  color: #90FF3C;
}

.tr-para {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  max-width: 450px;
  margin: 0 auto;
}

.trading-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(363px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.trading-content img {
  width: 100%;
  max-width: 363px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.trading-content img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #cryptotrading {
    padding: 40px 20px;
  }
  .t-head {
    font-size: 1.6rem;
  }

  .tr-para {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #cryptotrading {
    padding: 20px 10px 40px 10px;
  }
  .t-head {
    font-size: 1.4rem;
  }

  .tr-para {
    font-size: 0.9rem;
  }

  .trading-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
}
  /* crypto Trading end */

  /* Footer start */
  .footer-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 50px 20px 50px;
    gap: 40px;
    justify-content: space-between;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #90FF3C -44%, #000000 98.68%);
    border-image-slice: 1;
    border-image-width: 1px;
    background: #000000;

}

.footer-section .column-one {
    flex: 1 1 310px;
    min-width: 240px;
    max-width: 100%;
}
.footer-section .column-two {
    flex: 1 1 280px;
    min-width: 240px;
    max-width: 100%;
}
.footer-section .column-three {
    flex: 1 1 40px;
    min-width: 120px;
    max-width: 100%;
}
.footer-section .column-four {
    flex: 1 1 170px;
    min-width: 200px;
    max-width: 100%;
}
.footer-section .column-five {
    flex: 1 1 150px;
    min-width: 200px;
    max-width: 100%;
}

.footer-section .logo {
    width: 150px;
    margin-bottom: 20px;
}

.f-para {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.f-head {
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;  
  margin-bottom: 15px;
  background: linear-gradient(90.46deg, #90FF3C 12.59%, #FFFFFF 100.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ad-head {
  font-family: Poppins;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;  
  margin-bottom: 15px;
  background: linear-gradient(90.46deg, #90FF3C 12.59%, #FFFFFF 100.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 2px;
  border-bottom: 1px solid #FFFFFF;
}

.f-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn1, .btn2 {
    padding: 10px 20px;
    background: #000000;
    border: 1px solid #90FF3C;
    border-radius: 25px;
    color: #90FF3C;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: background 0.3s ease;
}

.btn1:hover, .btn2:hover {
    background-color: #90FF3C;
    color: #000000;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.foo-address .f-address {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.media-link {
    display: flex;
    gap: 10px;
    align-items: center;
}

.media-link img {
    width: 30px;
    height: 30px;
}

.media-link img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.column-five iframe {
    width: 144px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #90FF3C;
}

.footer-bottem {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    color: #90FF3C;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    gap: 20px;
}

.footer-bottem .f-bottem-menu img {
    width: 76px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
  .footer-section {
    padding: 50px 30px 20px 30px;
  }
    .footer-section {
        flex-direction: row;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 15px 15px 15px;
        gap: 20px;
    }

    .footer-section .column-one {
      flex: 1 1 ;
  }
  .footer-section .column-two {
      flex: 1 1;
  }
  .footer-section .column-three {
      flex: 1 1;
  }
  .footer-section .column-four {
      flex: 1 1;
  }
  .footer-section .column-five {
      flex: 1 1;
  }
  

    .footer-section > div {
        max-width: 100%;
        text-align: center;
    }

    .f-buttons {
        justify-content: center;
    }

    .media-link {
        justify-content: center;
    }

    .footer-bottem {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

  /* Footer end */