html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Card Hover Effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Nav Link Transition */
nav a {
  transition: all 0.3s ease;
}

/* Step Animation */
.step {
  position: relative;
  opacity: 0;
}

/* Step Image Hover */
.step img {
  transition: transform 0.3s ease;
}


/* Image Styling */
img {
  transition: transform 0.3s ease;
}

.image-container {
  width: 100%;
  height: 16rem; /* 256px */
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.scroll-effect-image,.scroll-effect-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* transition: object-position 0.5s ease; */
}

.scroll-effect-image2{
  object-fit: contain !important;
}



.scroll-effect-image:hover {
  /* object-position: bottom; */
}

.bottom{
  object-position: bottom !important;
}
.bottom:hover {
  /* object-position: top !important; */
}
.center{
  object-position: center !important;
}
.center:hover {
  /* object-position: top !important; */
}


/* Mobile Menu */
#mobile-menu {
  display: none;
  flex-direction: column;
}
#mobile-menu.active {
  display: flex;
}

    a {
      /* color: #1a0dab; */
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .section p {
      /* font-weight: bold; */
      margin-bottom: 10px;
    }

/* Visual Card Hover */
.visual-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ----------------------------
   Responsive Design Enhancements
----------------------------- */

@media (max-width: 1024px) {
  #gasFeeChart {
    height: 300px;
  }

  .image-container {
    height: 12rem; /* Smaller height on tablets */
  }
}

@media (max-width: 768px) {
  .card, .visual-card {
    margin-bottom: 1rem;
  }

  .faq-answer {
    padding: 0 0.5rem;
  }

  .tab-button {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .image-container {
    height: 10rem;
  }

  .tab-button {
    width: 100%;
    text-align: center;
  }

  #gasFeeChart {
    height: 250px;
  }
}

/* language changer */
.goog-te-banner-frame {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-ORHb-bN97Pc,
.VIpgJd-ZVi9od-LgbsSe,
.VIpgJd-ZVi9od-LgbsSe button {
    display: none !important;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-gadget img {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget select {
    font-size: 16px !important;
    display: block !important;
}

.translate-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.8);
        padding: 10px 15px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 5px;
        z-index: 9999; 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .custom-translate-select {
        width: 150px;
        background: transparent;
        color: white;
        padding: 0px 10px;
        border-radius: 5px;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 16px;
    }

    .custom-translate-select option {
        background: white;
        color: black;
    }

    .translate-container i {
        color: #7450FE;
        font-size: 20px;
    }

    .goog-te-combo{
      background-color: transparent;
      color: #ffffff;
      outline: none;
    }
    option{
      background-color: rgba(0, 0, 0, 0.8);
    }


    /* button */

   

.text {
  display: flex;
  font-size: 16px;
  font-weight: 550;
  padding-left: 10px;
  color: black;
  letter-spacing: 0.6px;
  animation: anima 0.6s ease;
}

.btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #9ee5fa;
  --color-background: #353535;
  --color-outline: #9ee5fa80;
  --color-shadow: #00000080;
  
}

.btn-content {
  display: flex;
  align-items: center;
  padding: 0px 3px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: var(--color-text);
  background: linear-gradient(to bottom right, #dbeafe, #e9d5ff);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-content:hover,
.btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}

/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: #9ee5fa;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}



