* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.navbar {

  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo a {
  font-family: "Sofia", sans-serif;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
  text-decoration-line: none;
}

.logo img{
  height: 50px;
  
}
.logo span{
  color:#aad036;
  font-size:25px;
}
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(26, 25, 25);
  padding: 8px 15px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  border-bottom: 2px solid #64a100;
}

.nav-links a.active {
  color: #aad036;
  /* Change color for active link */
  border-bottom: 2px solid #aad036;
  /* Optional: add underline */
}


.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

/* From Uiverse.io by ernestnash */
/* Button Base Styles */

/* Hover Effects */
.btn {
  --color:#64a100;
  font-family: inherit;
  display: inline-block;
  height: 2.6em;
 margin-top: -10px;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  background: none;
  transition: color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 200px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
  top: 100%;
  left: 100%;
  transition: 0.3s all ease-in-out;
}

.btn:hover {
  color: white;
}

.btn:hover::before {
  top: -40px;
  left: -30px;
}

/* Home Section */
.home {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  background: white;
  flex-wrap: wrap;
  margin-top: 60px;
}

.home .left,
.home .right {
  flex: 1;
  padding: 20px;
  text-align: left;
  min-width: 300px;
}

.home .right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.left {
  margin-top: -150px;
  margin-left: 50px;
}

.left h1 {
  font-size: 10em;
  color: #333;
  font-family: "Audiowide", sans-serif;
}

.left h1 span {
  color: #aad036;
}

.paragraph {

  width: 70%;
  text-align: justify;
}

.paragraph p {
  color: #333;
  line-height: 1.5;
  /* Adjust as needed */
}

.paragraph p span {
  color: #aad036;
}

.home img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}

.right video {
  position: absolute;
  margin-left: -255px;
  ;
  margin-top: 135px;
  ;
  width: 160px;
  height: 160px;
  z-index: 111;
  /* Ensures it is above the image */
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .right video {
    display: none;
  }
}

/* From Uiverse.io by Navarog21 */
button {
  width: 10em;
  position: relative;
  height: 2.5em;
  border: 3px ridge #aad036;
  background-color: transparent;
  color: #aad036;
  margin-top: 20px;
  transition: 1s;
  border-radius: 0.3em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: #ffffff;
  transition: 0.5s;
  transform-origin: center;
}

button::before {
  content: "";
  transform-origin: center;
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: #ffffff;
  transition: 0.5s;
}

button:hover::before,
button:hover::after {
  transform: scale(0)
}


button a {
  text-decoration: none;
  color: #aad036;
  font-size: 1.2em;
}

button:hover {

  box-shadow: inset 0px 0px 25px #aad03657;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .home {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 100px;
  }

  .left {
    text-align: center;
    margin: 0 auto;
  }

  .paragraph {
    width: 90%;
  }


  .left h1 {
    font-size: 4rem;
  }

  .home img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: #aad036;
    padding: 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo span {
    color: white;
  }

  .menu-toggle {
    display: block;
    color: white;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #333;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: white;
    font-size: 1.2rem;
  }

  .left {
    width: 90%;
  }

  .home img {
    max-width: 90%;
  }

  .left h1 {
    font-size: 3rem;
  }

  .intro {
    display: none;
  }
}


.about {

  height: 100vh;
  max-width: 1200px;
  margin: 150px auto;
  padding: 40px;
  margin-top: 30px;
  ;
  text-align: center;
}

h2 .ab {

  font-family: "Audiowide", sans-serif;
  color: #333;
}

h2 .ab .tap {

  font-family: "Audiowide", sans-serif;
  color: #aad036;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}


.qr-caption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.about-content p {

  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: justify;
  text-justify: inter-word;
  margin-top: 8%;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #64a100;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  ;
  color: #333;
  margin-bottom: 10px;

}

.feature-card p {
  margin-top: 30px;
  ;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 768px) {
  .features {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}

.contact {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: 100%;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #64a100;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.input-group textarea {
  height: 100px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #8bc34a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #7cb342;
}

.image-section {
  flex: 1;
  text-align: center;
}

.image-section img {

  max-width: 400px;
  border-radius: 12px;

}

.background-note {
  margin-top: 390px;
  width: 500px;
  height: 500px;
  display: flex;
  /* Enables flexbox */
  align-items: center;
  /* Centers content vertically */
  justify-content: center;
  /* Centers content horizontally */
  text-align: center;
  /* Ensures text is centered */
  position: absolute;
  margin-left: -30%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  background: linear-gradient(to right, #7cb342, #388e3c);
  padding: 10px 20px;
  border-radius: 50%;
  z-index: -1;
  opacity: .5;

}

.note {
  width: 380px;
  height: 380px;
  background-color: #fff;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image-section img {
    max-width: 80%;
  }
}

.footer {
  background-color: #64a100;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
  font-size: 1rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-container p {
  color: rgb(255, 255, 255);
}



@media (max-width: 600px) {
  .footer {
    font-size: 0.9rem;
  }
}

/* Container styles */
.dt-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem;
  margin-top: 450px;
  padding: 0 1rem;

}

/* Text section */
.dt-text-box {
  flex: 1 1 400px;
  min-width: 280px;
}

.dt-text-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.dt-text-box p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

/* Image section */
.dt-image-box {
  flex: 1 1 400px;
  min-width: 280px;
  text-align: center;
}

.dt-image-box img {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .dt-container {
    flex-direction: column;
  }
}


.dt-process-wrapper {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(to right, #e9f6e0, #f4fff0);

}

.dt-process-wrapper h2 {
  font-size: 2.5rem;
  color: #64a100;
  margin-bottom: 3rem;
}

.dt-process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.dt-step {
  background-color: #f1f9e8;
  border: 2px solid #64a100;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  max-width: 220px;
  min-width: 180px;
  flex: 1 1 200px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.dt-step img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  filter: hue-rotate(60deg);
  /* make icons greenish */
}

.dt-step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.dt-step-desc {
  font-size: 0.95rem;
  color: #555;
}

.dt-arrow {
  font-size: 2rem;
  color: #64a100;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .dt-process-flow {
    flex-direction: column;
    gap: 2rem;
  }

  .dt-arrow {
    transform: rotate(90deg);
  }
}

.dt-arrow {
  font-size: 2.2rem;
  color: #64a100;
  animation: bounceArrow 1.2s infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

@media (max-width: 768px) {
  .dt-steps {
    flex-direction: column;
  }

  .dt-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
    animation: bounceDown 1.5s infinite;
  }

  @keyframes bounceDown {

    0%,
    100% {
      transform: rotate(90deg) translateY(0);
    }

    50% {
      transform: rotate(90deg) translateY(6px);
    }
  }
}


.dt-features {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0fbe2, #ffffff);
  text-align: center;
}

.dt-features h2 {
  font-size: 2.5rem;
  color: #64a100;
  margin-bottom: 3rem;
}

.dt-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dt-feature-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(100, 161, 0, 0.1);
  transition: transform 0.4s ease;
}

.dt-feature-card:hover {
  transform: translateY(-10px);
}

.dt-feature-card img {
  width: 60px;
  margin-bottom: 1.2rem;
  filter: hue-rotate(60deg);
}

.dt-feature-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.dt-feature-card p {
  color: #555;
  font-size: 0.95rem;
}

.dt-feature-card img {
  width: 60px;
  margin-bottom: 1.2rem;
  filter: brightness(0) saturate(100%) invert(43%) sepia(96%) saturate(488%) hue-rotate(34deg) brightness(97%) contrast(92%);
}

.dt-credentials-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

/* Glowing box as before */
.dt-credentials-small {
  width: 200px;
  height: 120px;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 161, 0, 0.3);
  border-radius: 10px;
  color: #333;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(100, 161, 0, 0.2);
  animation: glow 2s ease-in-out 1;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 rgba(100, 161, 0, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px rgba(100, 161, 0, 0.6), 0 0 30px rgba(100, 161, 0, 0.4);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 rgba(100, 161, 0, 0);
    transform: scale(1);
  }
}

.dt-credentials-small h4 {
  color: #64a100;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.dt-line {
  margin: 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pointer animation */
.dt-pointer {
  font-size: 70px;
  animation: bounce 1s ease-in-out infinite;
  color: #64a100;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

