/** Importing Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/*. Styling Starts Here */
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", serif;
}

body {
  width: 100vw;
  background: url("../Images/mainpage_bg_one.jpg") no-repeat;
  background-size: 120vw;
  overflow-x: hidden;
}

.sub-top-logo {
  display: flex;
  align-items: center;
  margin-left: -40px;
  padding: 1px 0px 0px 8px;
}

.sub-top-logo img {
  width: 40px;
  padding: 8px;
}

.sub-top-logo a {
  display: flex;
  font-size: 34px;
  justify-content: center;
  align-items: center;
  color: #2c6455;
  text-decoration: none;
  font-weight: 700;
  margin-left: 8px;
  line-height: 34px;
  padding: 20px;
}

.main .header {
  width: 80%;
  margin: 0px auto;
  gap: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .navbarb ul {
  margin-left: 40px;
  display: flex;
  list-style: none;
  gap: 60px;
  font-size: 16px;
  font-weight: 400;
  color: rgb(44, 100, 85);
}

.header .navbarb ul li:hover {
  font-weight: 700;
  color: rgb(44, 100, 85);
  cursor: pointer;
}

.header .navbarb ul li a {
  text-decoration: none;
  color: inherit;
}

.hero {
  padding: 35px;
  width: 75%;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  opacity: 1;
}

.hero.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero .image1 {
  width: 52%;
  height: 450px;
  margin-right: 6%;
}

.hero .image1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.hero .heading1 {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 38px;
}

.hero .heading1 > :nth-child(1) {
  margin-left: 60px;
  color: rgb(44, 100, 85);
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero .heading1 span {
  color: rgb(99, 182, 142);
}

.hero .heading1 > :nth-child(2) {
  color: rgb(44, 100, 85);
  text-align: center;
  font-size: 21px;
  font-weight: 500;
}

.Identify {
  padding: 18px;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 700;
  color: white;
  background-color: #77c193;
  width: 60%;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #4f8e7d;
}

.assistancesection {
  background-image: url("../Images/randombg.jpg");
  background-position: center center;
  background-size: max(1200px, 100vw);
  background-repeat: no-repeat;
  height: 550px;
  animation: fadeInLeft 0.8s ease-out;
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.assistancesection.animate {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.assistance {
  padding: 20px;
  width: 62%;
  margin: 50px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.assistance .heading2 {
  font-size: 32px;
  color: rgb(44, 100, 85);
  font-weight: 700;
}

.assistance .subject2 {
  font-size: 18px;
  font-weight: 500;
  color: rgb(113, 128, 150);
}

.assistance .heading2 span {
  color: #7cc395;
}

/* Experiment*/
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: auto;
  max-width: 90%;
  animation: fadeInRight 0.8s ease-out;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.grid-container.animate {
  animation: fadeInRight 0.8s ease-out forwards;
}

.card {
  background-color: #fff;
  border: 1px dashed #ccc;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card .card span:hover {
  opacity: 1;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.normal span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #59ce8f;
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
}

.normal::hover span {
  opacity: 1;
}

.card-text {
  text-align: center;
  color: #888;
  font-size: 18px;
  position: relative;
}

.first:hover {
  border-color: #59ce8f;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #7a7a7a;
  transition: color 0.3s ease;
}

.first:hover .icon {
  color: #59ce8f;
}

.icon img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.first:hover .icon img {
  transform: scale(1.2);
}

.text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #7a7a7a;
  transition: color 0.3s ease;
}

.first:hover .text {
  color: #59ce8f;
}

.default-image {
  width: 100%;
  display: block;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2); /* Slight overlay effect */
  border-radius: 10px; /* Optional for rounded edges */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-image {
  width: 100%;
  border-radius: 10px; /* Optional for rounded edges */
}

.card .hover-text {
  position: absolute;
  bottom: 30px;
  right: 10px;
  align-items: center;
  background-color: rgb(255, 255, 255);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: #5cb38a;
  font-weight: 600;
}

.normal:hover .hover-text {
  opacity: 1;
}

.normal:hover .hover-overlay {
  opacity: 1;
}

.useandfaq {
  background-image: url("../Images/useandfaq.jpg");
  height: 1050px;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.useandfaq.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.how-to-use {
  padding: 50px;
  width: 75%;
  justify-content: space-around;
  margin: auto;
  display: flex;
}

.how-to-use .howtouse1 {
  opacity: 1;
}

.how-to-use .howtouse2 {
  display: none;
}

.how-to-use img {
  margin-top: 40px;
  width: 90%;
  border-radius: 20px;
}

.process {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 50%;
  justify-content: center;
}

.process > p {
  position: absolute;
  top: 48px;
  width: 100%;
  font-size: 30px;
  color: rgb(99, 182, 142);
  font-size: 32px;
  font-weight: 700;
}

.process > p span {
  color: rgb(44, 100, 85);
}

.process ol {
  margin-top: 90px;
  list-style: none; /* Remove default list styling */
  padding: 0;
  margin-bottom: 30px;
}

.process ol li {
  display: flex;
  align-items: center;
  margin-bottom: 15px; /* Add spacing between list items */
  font-size: 18px; /* Larger text size for better readability */
  color: rgb(44, 100, 85); /* Text color */
  font-weight: 500;
}

.circle-icon {
  width: 35px; /* Circle size */
  height: 35px; /* Circle size */
  background-color: #86c8a5; /* Green color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Font size inside the circle */
  font-weight: bold;
  color: white;
  margin-right: 15px; /* Space between icon and text */
  flex-shrink: 0; /* Prevent shrinking of the circle */
}

.process > .Identify {
  align-self: center;
}

/* Experiment */
.container {
  width: 50%;
  margin: 50px auto;
  height: max-content;
  background-color: white;
  border-radius: 40px;
  box-shadow: 3px 3px rgb(160, 157, 157, 0.2),
    -3px 0 4px rgba(166, 166, 163, 0.6);
  animation: fadeInLeft 0.8s ease-out;
  animation-delay: 0.8s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.container.animate {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.title {
  text-align: center;
  color: rgb(44, 100, 85);
  font-size: 32px;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 1.5rem;
}

.accordion {
  background: white;
  max-height: 300px;
  padding: 0 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgb(255, 254, 254);
  overflow: auto;
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: #f8fafc;
}

.accordion-title {
  font-weight: 500;
  color: rgb(99, 182, 142);
  font-size: 20px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #34db99;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}

.accordion-body {
  padding: 10px 30px;
  text-align: start;
  color: #767676;
  font-size: 17px;
  font-weight: 500;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: #e2e8f0;
}

.accordion-item.active .accordion-header {
  background: #ffffff;
}

/* Animation for content */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content.active {
  animation: slideDown 0.3s ease-out;
}

.footer {
  margin-top: 100px;
  background-image: url("../Images/footerimg.jpg");
  background-position: center center;
  background-size: max(1200px, 100vw);
  background-repeat: no-repeat;
  height: 414px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.footer.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.footercontent {
  position: absolute;
  bottom: 30px;
  width: 60%;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
}

.footercontent > p {
  padding: 20px;
  text-align: center;
  font-size: 38px;
  color: rgb(99, 182, 142);
  font-weight: 700;
}

.footercontent > p span {
  color: rgb(44, 100, 85);
}

.footercontent .Identify {
  margin-left: 35%;
  background-color: rgb(242, 181, 191);
  /* color: #888; */
  width: 30%;
  font-size: 18px;
  font-weight: 700;
}

.footercontent .Identify:hover {
  background-color: palevioletred;
}

/* Style the scrollbar track */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
  height: 12px; /* Height of the scrollbar for horizontal scroll */
}

/* Style the scrollbar handle (thumb) */
::-webkit-scrollbar-thumb {
  background-color: #99999829; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Round corners for the thumb */
}

/* Style the scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #ffa905; /* Color when hovered */
}

/* Style the scrollbar track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the track */
  border-radius: 10px; /* Round corners for the track */
}

@media (max-width: 1440px) {
  .header {
    width: 100%;
    padding: 8px;
    display: flex;
    gap: 10px;
  }

  .navbarb ul li {
    font-size: 18px;
    margin-right: 20px;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  /* Header/Navigation Styling */
  .header {
    width: 100%;
    flex-direction: column;
    padding: 8px;
    gap: 10px;
  }

  /* Logo Section */
  .sub-top-logo {
    padding: 4px;
  }

  .sub-top-logo img {
    width: 30px;
  }

  .sub-top-logo a {
    font-size: 28px;
    padding: 10px;
  }

  /* Navigation Menu */
  .navbarb ul {
    gap: 15px;
    font-size: 12px;
    padding: 1px;
    cursor: pointer;
  }

  .navbarb ul li {
    font-size: 18px;
    margin-right: 10px;
    font-weight: 500;
  }

  /* Adjust main container */
  .main {
    width: 100%;
    overflow-x: hidden;
  }

  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: -80px;
    width: 100%;
  }

  .hero .image1 {
    margin-top: 85px;
    width: 60%;
    margin-right: 6%;
  }

  .hero .heading1 > :nth-child(1) {
    color: rgb(44, 100, 85);
    font-size: 32px;
    font-weight: 700;
    margin-top: -435px;
    align-self: center;
    margin-left: 0px;
  }

  .image1 img {
    width: 90%;
    margin-top: 80px;
    max-width: 300px;
    height: auto;
  }

  .hero .heading1 > :nth-child(2) {
    color: rgb(44, 100, 85);
    text-align: center;
    font-size: 18.5px;
    margin-left: -42px;
    font-weight: 500;
    margin-top: 377px;
  }

  /* Button */
  .Identify {
    width: 80%;
    max-width: 300px;
    padding: 15px;
    margin: 0px auto;
    border-radius: 25px;
    margin-top: 20px;
    margin-right: 70px;
    display: block;
  }

  /* Assistance Section */
  .assistancesection {
    padding: 20px 0;
    height: auto;
  }

  .assistance {
    width: 90%;
    padding: 10px;
    margin: 20px auto;
  }

  .assistance .heading2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .assistance .subject2 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  /* Scrollable Grid Container */
  .grid-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Card Styling */
  .card {
    flex: 0 0 auto;
    width: 250px;
    min-width: 250px;
    height: 300px; /* Increased height */
    scroll-snap-align: start;
    margin-right: 5px;
  }

  /* First card (Start diagnosing) adjustments */
  .card.first .icon img {
    width: 35px; /* Smaller logo */
    height: 35px;
  }

  .card.first .text {
    font-size: 14px; /* Slightly smaller text */
    margin-top: 8px;
  }

  /* Normal cards with images */
  .card.normal {
    position: relative;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Maintain other card styles */
  .hover-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card:active .hover-overlay {
    opacity: 1;
  }

  /* How to Use Section */
  .useandfaq {
    height: auto;
    padding: 20px 0;
  }

  .how-to-use {
    width: 90%;
    padding: 20px;
    flex-direction: column;
    gap: 30px;
  }

  .how-to-use img {
    margin-bottom: 60px;
  }

  /* Process Section */
  .process {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  /* Heading */
  .process > p {
    position: relative;
    top: 0;
    font-size: 28px;
    text-align: center;
    margin-top: -520px;
    margin-bottom: 387px;
    order: 1;
  }
  .img {
    margin-top: 130px;
  }

  /* Image */
  .howtouse1 {
    order: 2;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
  }

  .howtouse2 {
    display: none;
  }

  /* Steps List */
  .process ol {
    order: 3;
    margin-top: 20px;
    width: 100%;
  }

  .process ol li {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
  }

  /* Circle Numbers */
  .circle-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 12px;
  }

  /* Identify Button */
  .process > .Identify {
    order: 4;
    width: 80%;
    max-width: 300px;
    padding: 15px;
    margin: 20px auto;
    border-radius: 25px;
  }

  /* FAQ Section Container */
  .container {
    width: 85%;
    margin: 30px auto;
    padding: 12px;
    border-radius: 22px;
  }

  /* FAQ Title */
  .title {
    font-size: 28px;
    padding: 12px;
    margin-bottom: 18px;
  }

  /* Accordion Container */
  .accordion {
    max-height: 400px;
    padding: 0 12px;
  }

  /* Accordion Items */
  .accordion-header {
    padding: 15px;
  }

  .accordion-title {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Accordion Content */
  .accordion-body {
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Accordion Icon */
  .accordion-icon {
    width: 20px;
    height: 20px;
  }

  .accordion-icon::before {
    width: 10px;
  }

  .accordion-icon::after {
    height: 10px;
  }

  /* Animation adjustments */
  .accordion-content.active {
    animation: slideDown 0.2s ease-out;
  }

  /* Footer Section */
  .footer {
    margin-top: 50px;
    height: 300px; /* Reduced height for mobile */
    background-size: cover;
    background-position: center;
  }

  .footercontent {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .footercontent > p {
    padding: 15px;
    font-size: 24px; /* Reduced font size */
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .footercontent > p span {
    color: rgb(44, 100, 85);
  }

  .footercontent .Identify {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px;
    font-size: 16px;
    background-color: rgb(242, 181, 191);
    border-radius: 25px;
  }

  .footercontent .Identify:hover {
    background-color: palevioletred;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }

  .header {
    position: relative;
    z-index: 9999;
  }
  .hero .image1 {
    width: 80%;
  }
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .main .header {
    flex-direction: column;
    gap: 10px;
  }

  .header {
    position: relative;
    z-index: 9999;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    width: 90%;
  }
  .hero .heading1 > :nth-child(1) {
    font-size: 26px;
    margin-top: 20px;
  }
  .hero .heading1 > :nth-child(2) {
    font-size: 16px;
  }
  .image1 img {
    width: 100%;
    height: auto;
  }
  .Identify {
    width: 80%;
    max-width: 300px;
    border-radius: 25px;
  }
  .assistance {
    width: 90%;
  }
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
  .how-to-use {
    flex-direction: column;
    gap: 30px;
    width: 90%;
  }
  .process ol li {
    font-size: 16px;
  }
  .footer {
    height: auto;
    padding: 40px 0;
  }
  .footercontent > p {
    font-size: 22px;
  }
}

/* Small Phones */
@media (max-width: 768px) {
  .header .navbarb ul {
    margin-left: -8px;
    gap: 6px;
    font-size: 11px;
  }

  .header {
    position: relative;
    z-index: 9999;
  }

  .hero .image1 {
    width: 72%;
    height: 450px;
    margin-right: 0px;
    margin-top: -24px;
  }

  .hero .image1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
  }

  .hero .heading1 {
    margin-top: 24px;
    display: flex;
    margin-left: -20px;
  }

  .hero .heading1 span {
    color: rgb(99, 182, 142);
  }

  .hero .heading1 > :nth-child(2) {
    color: rgb(44, 100, 85);
    text-align: center;
    margin-left: 22px;
    font-size: 16px;
    margin-top: -20px;
    font-weight: 500;
  }

  .Identify {
    margin-left: 25%;
  }
}

@media (max-width: 400px) {
  .header .navbarb ul {
    margin-left: -8px;
    gap: 6px;
    font-size: 11px;
  }

  .header {
    position: relative;
    z-index: 9999;
  }

  .hero .image1 {
    width: 72%;
    height: 450px;
    margin-right: 0px;
    margin-top: -24px;
  }

  .hero .image1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
  }

  .hero .heading1 {
    margin-top: 24px;
    display: flex;
    margin-left: -20px;
  }

  .hero .heading1 span {
    color: rgb(99, 182, 142);
  }

  .hero .heading1 > :nth-child(2) {
    color: rgb(44, 100, 85);
    text-align: center;
    margin-left: 22px;
    font-size: 16px;
    margin-top: -20px;
    font-weight: 500;
  }

  .Identify {
    margin-left: 25%;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to sections */
.hero {
  animation: fadeInUp 0.8s ease-out;
}

.assistancesection {
  animation: fadeInLeft 0.8s ease-out;
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.grid-container {
  animation: fadeInRight 0.8s ease-out;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.useandfaq {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.container {
  animation: fadeInLeft 0.8s ease-out;
  animation-delay: 0.8s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.footer {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Optional: Add animations for card hover */
.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);
}

/* For smoother animations on mobile */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
