.main-content {
  display: none;
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .message {
    font-size: 14px;
  }
}
#pdf-alert {
    display: inline-block;
    background-color: #4CAF50; /* green */
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    user-select: none;
  }

  #pdf-alert:hover {
    background-color: #45a049;
    transform: scale(1.03);
  }

  #pdf-alert:active {
    transform: scale(0.97);
  }
* {
  text-transform: capitalize;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background: var(--pink);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.heading {
  font-size: 4rem;
  color: var(--pink);
  text-align: center;
  padding: 0 1rem;
  padding-top: 6rem;
  letter-spacing: .2rem;
  font-weight: 500;
}

.tittle {
  padding: 0 1rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  color: #aaa;
}

body {
  overflow-x: hidden;
}


header {
  width: 96%;
  background: #fff;
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  z-index: 1000;
  transition: .2s;

}

.header-active {
  top: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 .1rem .3rem rgba(0, 0, 0, .3);
}

header .navbar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

header .navbar ul li {
  margin: 0 1rem;
}

header .navbar ul li a {
  font-size: 2rem;
  letter-spacing: .1rem;
  color: darkgreen;
  transition: .2s;
}

header .navbar ul li .active,
header .navbar ul li a:hover {
  color: #fff;
  padding: 6px 15px 6px;
  border-radius: 14px;
  transition: .2s;
  letter-spacing: .2rem;
  background-color: darkgreen;
}


header .logo {
  font-size: 1.5rem;
  color: var(--violet);
  text-transform: uppercase;
}



header .fa-bars {
  font-size: 3rem;
  color: darkgreen;
  cursor: pointer;
  display: none;
  transition: .2s;
}
.home {
  min-height: 100vh;
  background: linear-gradient(rgba(17, 107, 44, 0.8),
      rgba(15, 80, 44, 0.8)), url(../images/img6.jpg ) no-repeat;

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  overflow: hidden;
  position: relative;
}

.home .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding-top: 14rem;
  padding-bottom: 8rem;
  text-align: center;
}

.home .content h1 {
  font-size: 5rem;
  color: #fff;
  padding: 0 1rem;
  text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .3);
  text-transform: uppercase;
}

.home .content p {
  font-size: 2rem;
  color: #eee;
  padding: 1rem 25rem;
}

.home .content button {
  height: 4rem;
  width: 20rem;
  border-radius: 5rem;
  background: green;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: .2s;
  border: none;
  box-shadow: 0 .3rem 1rem rgba(5, 107, 68, 0.3);
}

.home .content button:hover {
  letter-spacing: .2rem;
}

.home .box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-out;

}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home .box-container .box {
  height: 25rem;
  width: 25rem;
  background: #fff;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 .3rem .5rem rgba(28, 99, 55, 0.5);
  margin: 2rem;
  cursor: pointer;
}

.home .box-container .box i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  text-align: center;
  border-radius: 50%;
  background: darkgreen;
  font-size: 3rem;
  margin: 2rem 0;
  transition: .2s;
}

.home .box-container .box h3 {
  font-size: 2rem;
  color: darkgreen;
  transition: .2s;
}

.home .box-container .box p {
  font-size: 1.3rem;
  padding: .7rem 2rem;
  color: #666;
}

.home .box-container .box:hover i {
  background: lightgreen;
}

.home .box-container .box:hover h3 {
  color: lightgreen;
}

.home::before {
  content: '';
  position: absolute;
  bottom: -25rem;
  left: 50%;
  transform: translateX(-50%);
  border-top: 70vh solid #fff;
  width: 120%;
  border-radius: 50%;
  z-index: -1;
}






@media (max-width:768px) {

  html {
    font-size: 55%;
  }

  header .fa-bars {
    display: block;
  }

  header .navbar {
    position: fixed;
    top: -100rem;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    opacity: 0;
    transition: .2s linear;
  }

  header .logo img {
    width: 90px;
  }

  header .navbar ul {
    flex-flow: column;
    padding: 2rem 0;
  }

  header .navbar ul li {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }

  header .navbar ul li a {
    font-size: 3rem;
    display: block;
  }

  header .nav-toggle {
    top: 5.5rem;
    opacity: 1;
  }

  .home .content p {
    padding: 1.5rem 2rem;
  }

  .home::before {
    display: none;
  }

  .cta-btn {
    font-size: 0.9rem;
  }


}

.container {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(to right bottom, #000, green);
}

.service-wrap {
  padding: 5% 8%;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h1 {
  color: #fff;
  font-size: 5rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  text-align: center;
  background-color: rgb(4, 83, 43);
  background: linear-gradient(8deg, rgb(2, 14, 7)0%, rgb(0, 230, 58)41%, rgba(41, 17, 451)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.h1:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 80%;
  border-radius: 8px;
  background-color: rgba(225, 225, 225, 0.05);
}

.h1 span {
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation: anim 15s linear infinite;
  background-color: darkgreen;
}

@keyframes anim {
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 88%;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.card {
  height: 350px;
  width: 300px;
  background-color: #fff5;
  padding: 3% 8%;
  border: 0.2px solid rgb(144, 226, 174, 0.2);
  border: 8px;
  transition: .6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transform: rotate(50deg);
  background-color: #fff;
  height: 18px;
  filter: blur(30px);
  opacity: 0.5s;
  transition: 1s;
}

.card:hover:after {
  width: 255%;
  top: -100%;
}

.card i {
  color: #72e2ae;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 4.8rem;
}

.card3 i {
  color: #72e2ae;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 4.8rem;
}

.card h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card3 {
  border: 1px solid #00ff37;
  height: 350px;
  width: 300px;
  padding: 3% 8%;

  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;

}

.card3 h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card3 p {
  text-align: center;
  width: 100%;
  margin: 12px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}

.card p {
  text-align: center;
  width: 100%;
  margin: 12px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}


.card p:hover {
  color: #fff;
}

.card:hover {
  background-color: transparent;
  transform: translateY(-8px);
  border: solid #00ff37;
  border-radius: 12px;
}

.card:hover i {
  color: #00ff37;
}

@media screen and (max-width:768px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width:768px) {
  .cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .h1 {
    font-size: 3.5rem;
  }
}

#about {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

#about .section-content {
  text-align: center;
  border-radius: 12px;
}

.section1 h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.section1 p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card1 {
  background-color: #e0f7fa;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1.5s forwards;
}


.card1::after {
  content: "";
  position: absolute;
  background: #07182e;
  border-radius: 15px;
}

.card1 h3 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card1 p {
  color: #00796b;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 15px;
}

.card-icon {
  font-size: 3rem;
  color: #00796b;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section1 {
    padding: 30px 15px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card1 {
    width: 80%;
    margin: 10px 0;
  }
}


#about p {
  font-size: 1.7rem;
  margin-bottom: 40px;
  color: #666;
}

.cards1 {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card1 {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 3px 3px green;
  width: 300px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1.5s forwards;
}

.card1 h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}

.card1 p {
  font-size: 1.1rem;
  color: #666;
}

.card1:nth-child(1) {
  animation-delay: 0.3s;
}

.card1:nth-child(2) {
  animation-delay: 0.5s;
}

.card1:nth-child(3) {
  animation-delay: 0.7s;
}



@media (max-width: 768px) {
  .cards1 {
    flex-direction: column;
    align-items: center;
  }

  .card1 {
    width: 80%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .card1 video {
    width: 50px;
  }

  #about p {
    margin-bottom: 50px;
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card1 video {
  width: 150px;
  border-radius: 12px;
}

.faq-container {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
}

.fqq {
  width: 100%;
}

.faq-container h1 {
  color: #fff;
}

.faq-item {
  border: 1px solid #000;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  color: #000;
  cursor: pointer;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;

}

.faq-question h2 {
  margin: 0;
}


.arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: black;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background-color: #f9f9f9;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .faq-question {
    padding: 10px;
  }

  .faq-answer p {
    margin: 10px 0;
  }

  .faq-item.active .faq-answer {
    max-height: 350px;
  }
}

.green-tvet {
  padding: 50px 20px;
  background: linear-gradient(rgba(17, 107, 44, 0.8),
      rgba(15, 80, 44, 0.8)), url(../img/hand.png) no-repeat;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  overflow: hidden;
  position: relative;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
}

.feature i {
  font-size: 50px;
  color: #00796b;
}

.section-title {
  font-size: 36px;
  font-weight: bold;

}

.section-description {
  font-size: 18px;

  margin-top: 20px;
}

.hh {
  color: #fff;
  font-size: 5rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  text-align: center;
  background-color: rgb(241, 247, 244);
  background: linear-gradient(8deg, rgb(2, 43, 23)0%, rgb(243, 245, 243)41%, rgba(41, 17, 451)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hh:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 80%;
  border-radius: 8px;
  background-color: rgba(225, 225, 225, 0.05);
}

.hh span {
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation: anim 15s linear infinite;
  background-color: #fff;
}

@keyframes anim {
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 88%;
  }
}

.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature h2 {
  font-size: 24px;
  color: #fff;

  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  text-align: center;
  background-color: rgb(4, 83, 43);
  background: linear-gradient(8deg, rgb(2, 14, 7)0%, rgb(0, 230, 58)41%, rgba(41, 17, 451)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  color: #555;
}

.section-description {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 80%;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
    color: #fff;
  }
}

.section2 h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

h5 {
  font-size: 1.3rem;
  /* letter-spacing: 2px; */
}

.section2 p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card2 {
  background-color: #e0f7fa;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1.5s forwards;
}

.card2 h3 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card2 p {
  color: #00796b;
  font-size: 2.5rem;
  letter-spacing: 1.5;
  text-align: center;
  margin-bottom: 15px;
}

.card-icon {
  font-size: 3rem;
  color: #00796b;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 30px 15px;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card1 {
    width: 80%;
    margin: 10px 0;
  }
}

section {
  padding: 50px 10%;
  text-align: center;
}

.container4 {
  max-width: 1200px;
  margin: 0 auto;
}



.cards-container4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.card4,
.benefit-card {
  background-color: white;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(5, 124, 40, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}



.card-image img,
.card-image img {
  width: 70px;
  height: auto;
  object-fit: cover;
}

.card-content4 {
  padding: 20px;
}

.card4 h2,
.benefit-card h4 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  section {
    padding: 50px 5%;
  }
}

.card-image i {
  font-size: 8rem;
  color: #00796b;
}

.card-image i:hover {
  color: #82b137;
  transition: .2s;
}

.h11 {
  color: #fff;
  font-size: 3rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  text-align: center;
  background-color: rgb(4, 83, 43);
  background: linear-gradient(8deg, rgb(2, 14, 7)0%, rgb(0, 230, 58)41%, rgba(41, 17, 451)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.h11:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 80%;
  border-radius: 8px;
  background-color: rgba(225, 225, 225, 0.05);
}

.h11 span {
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  animation: anim 15s linear infinite;
  background-color: darkgreen;
}

@keyframes anim {
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 88%;
  }
}

.h111 {
  color: #fff;
  font-size: 5rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 5px;
  text-align: center;
  background-color: rgb(4, 83, 43);
  background: linear-gradient(8deg, rgb(2, 14, 7)0%, rgb(0, 230, 58)41%, rgba(41, 17, 451)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}





footer {
  background-color: black;
  color: #fff;
  box-shadow: 1px 2px 9px green;
  padding: 20px 10px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.footer-section h3 {
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  font-size: 2rem;
}

.footer-section p {
  margin: 10px 0;
}

.footer-section a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: slideIn 0.6s ease-out forwards;
  animation-delay: calc(0.2s * var(--i));
}

.footer-section:nth-child(1) {
  --i: 1;
}

.footer-section:nth-child(2) {
  --i: 2;
}

.footer-section:nth-child(3) {
  --i: 3;
}

.social-icon {
  text-decoration: none;
  color: white;
  padding: 10px;
  font-size: 4rem;
  border-radius: 5px;
  display: inline-block;
}

.social-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}

.section-title5 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #4CAF50;
  font-weight: bold;
}

.card-section5 {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}

.card5 video {
  border-radius: 12px;
}

.cards-container5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card5 {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-content5 {
  padding: 20px;
  text-align: center;
}

.card5 h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.card5 p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.card5:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .card5 h3 {
    font-size: 20px;
  }

  .card5 p {
    font-size: 14px;
  }
}

.green-tvet-news {
  background-color: #eaf4e2;
  padding: 30px 20px;
  text-align: center;
}

.ticker {
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.news-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card:nth-child(1) {
  animation-delay: 0.2s;
}

.news-card:nth-child(2) {
  animation-delay: 0.4s;
}

.news-card:nth-child(3) {
  animation-delay: 0.6s;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news-card h3 {
  color: #4CAF50;
  margin-bottom: 10px;
}

.news-card p {
  color: #555;
}

@media (max-width: 767px) {
  .ticker {
    font-size: 16px;
    padding: 8px;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

  .news-card {
    padding: 15px;
  }
}

.green-tvet-news,
.green-tvet-initiatives {
  background-color: #eaf4e2;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 30px;
}

.ticker {
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}


.green-tvet-initiatives1 h2 {
  color: #4CAF50;
  font-size: 30px;
  margin-bottom: 20px;
}

.initiatives-cards1 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.initiative-card1 {
  background-color: white;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  animation: cardFadeIn 0.8s ease-out forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.initiative-card1:nth-child(1) {
  animation-delay: 0.2s;
}

.initiative-card1:nth-child(2) {
  animation-delay: 0.4s;
}

.initiative-card1:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.initiative-card1:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-img1 {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content1 {
  padding: 20px;
}

.card-content1 h3 {
  color: #4CAF50;
  margin-bottom: 10px;
}

.card-content1 p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

#news-section {
  background-color: #eef9f0;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.news-container {
  max-width: 1200px;
  margin: auto;
}

.news-header {
  text-align: center;
  font-size: 2.7rem;
  color: #2e7d32;
  margin-bottom: 50px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  display: flex;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 128, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-6px);
}

.news-thumb {
  width: 35%;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.news-text {
  padding: 20px;
  width: 65%;
}

.news-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1b5e20;
}

.news-text p {
  color: #444;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
  }

  .news-thumb,
  .news-text {
    width: 100%;
  }
}

.carousel-section {
  width: 100%;
  height: 100vh;
  /* Full height of the screen */
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fade 1s ease-in-out;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Animation */
@keyframes fade {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.news-section1 {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.news-section1 h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2a7d2e;
}

.news-container1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.news-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card-content {
  padding: 20px;
}

.news-card-content h3 {
  margin: 0 0 10px;
  color: #2a7d2e;
}

.news-card-content p {
  color: #555;
  font-size: 1rem;
  margin: 0 0 12px;
  line-height: 1.4;
}

.news-card-content small {
  color: #888;
  font-size: 0.85rem;
}

.container1 {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  animation: fadeIn 1s ease;
}

/* Heading */
form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2f5d34;
}

/* Form Group Styling */
.form-group {
  position: relative;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #56ab2f;
  border-radius: 8px;
  background: #f9fff5;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #2f5d34;
}

/* Floating Label */
label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: #2f5d34;
  transition: 0.3s ease;
  padding: 0 5px;
  pointer-events: none;
}

input:focus+label,
input:not(:placeholder-shown)+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #56ab2f;
}

/* Submit Button */
.button1 {
  width: 100%;
  padding: 12px;
  background-color: #56ab2f;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.button1:hover {
  background-color: #3e8432;
}

/* Status Message */
.status {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #2f5d34;
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .container1 {
    padding: 20px;
    margin: 10px;
  }
}
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

/* Individual Stat Box */
.stat-box {
  background: #f4fdf4;
  border: 2px solid #d3e8d3;
  border-radius: 12px;
  padding: 1.5rem;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

/* Stat Icons */
.stat-icon {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 0.8rem;
}

/* Stat Number */
.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2f5d34;
  margin-bottom: 0.3rem;
}

/* Stat Label */
.stat-label {
  font-size: 1rem;
  color: #555;
}
.t-rex-container {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.t-rex {
  width: 100px;
  transition: transform 0.5s ease-in-out;
}
.t-rex:hover {
  transform: translateX(50px);
}

  .scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
  }
  /* Container styling */
.newsletter-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  font-family: 'Segoe UI', sans-serif;
  color: #2f4f2f;
  background-color: #f0fdf4;
}

.newsletter-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
}

.intro-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Card styling */
.card6 {
  background: #ffffff;
  border-left: 6px solid #66bb6a;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 100, 0, 0.08);
  transition: transform 0.2s ease;
}

.card6:hover {
  transform: translateY(-3px);
}

.card6 h3 {
  margin-top: 0;
  color: #388e3c;
  font-size: 1.4rem;
}

.card6 ul {
  list-style: none;
  padding-left: 0;
}

.card6 li {
  background-color: #e8f5e9;
  margin: 0.5rem 0;
  padding: 0.6rem 1rem;
  border-left: 4px solid #66bb6a;
  border-radius: 5px;
}

/* Form Card Specifics */
.subscribe-card form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.subscribe-card input[type="email"] {
  padding: 0.9rem;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  font-size: 1rem;
}

.subscribe-card button {
  padding: 0.9rem;
  background-color: #43a047;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-card button:hover {
  background-color: #2e7d32;
}

#form-msg {
  font-size: 0.95rem;
  color: #1b5e20;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .card6 {
    padding: 1rem;
  }

  .newsletter-section h2 {
    font-size: 1.5rem;
  }

  .card6 h3 {
    font-size: 1.2rem;
  }
}
.btn7 {
  display: inline-block;
  padding: 8px 16px;
  background: #006400;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem; /* add font size for better scaling */
}

.btn7:hover {
  background: #228b22;
}
.popup-overlay {
 position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 10px;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  position: relative;
  animation: fadeIn 0.5s ease;
}

.popup-content h3 {
  margin-bottom: 20px;
  color: #006400;
  font-size: 1.5rem;
}

.close-btn,
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #228b22;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.popup-card {
  background: #f0f9f0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.popup-card:hover {
  transform: translateY(-5px);
}

.popup-card h4 {
  margin-top: 10px;
  color: #006400;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*========================
=  Wastewater Section    =
========================*/
.wastewater-section {
  padding: 50px 20px;
  background: #f4f9f4;
  text-align: center;
}

.wastewater-section h2 {
  color: #006400;
  font-size: 2rem;
  margin-bottom: 10px;
}

.wastewater-section .intro-text {
  color: #333;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.wastewater-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.wastewater-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.wastewater-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.wastewater-card:hover {
  transform: translateY(-5px);
}

.wastewater-card h3 {
  color: #228b22;
  margin-top: 10px;
}

/*========================
=    Waste Management    =
========================*/
.waste-management-section {
  padding: 50px 20px;
  background: #e0f7e0;
  text-align: center;
}

.waste-management-section h2 {
  color: #2e7d32;
  font-size: 2rem;
  margin-bottom: 10px;
}

.waste-management-section .intro-text {
  color: #333;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.waste-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.waste-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.waste-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.waste-card:hover {
  transform: translateY(-5px);
}

.waste-card h3 {
  color: #2e7d32;
  margin-top: 10px;
}

/*=============================
=    Read More Buttons        =
=============================*/
.btn-readmore,
.btn-readmore2 {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-readmore {
  background: #006400;
  color: #fff;
  border: none;
}

.btn-readmore:hover {
  background: #228b22;
}

.btn-readmore2 {
  background: transparent;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.btn-readmore2:hover {
  background: #2e7d32;
  color: #fff;
}

/*=============================
=   Waste Management Popup    =
=============================*/
.popup-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.4s ease;
  text-align: left;
}

.popup-box h3 {
  margin-bottom: 15px;
  color: #2e7d32;
}

.waste-list {
  list-style: none;
  padding: 0;
}

.waste-list li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
  color: #333;
}

.waste-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #2e7d32;
}

/*====================
=   Responsive CSS   =
====================*/
@media (max-width: 768px) {
  .waste-card,
  .wastewater-card {
    width: 100%;
  }

  .popup-content,
  .popup-box {
    padding: 20px;
  }

  .popup-content h3 {
    font-size: 1.3rem;
  }

  .popup-card {
    padding: 15px;
  }

  .popup-card h4 {
    font-size: 0.95rem;
  }

  .btn7 {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .wastewater-section h2,
  .waste-management-section h2 {
    font-size: 1.5rem;
  }

  .popup-content {
    padding: 15px;
  }
}

    .section9 {
      padding: 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .card9 {
      background: white;
      padding: 2rem;
      border-left: 5px solid #28a745;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      max-width: 700px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .card9 h2 {
      margin-bottom: 1rem;
      color: #0a4d22;
    }

    .card9 p {
      font-size: 1.1rem;
    }

    .btn-readmore9 {
      margin-top: 1.5rem;
      background: #28a745;
      color: white;
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-readmore9:hover {
      background: #1e7e34;
    }

    /* Modal styling */
    .overlay9 {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }

    .modal9 {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      max-width: 600px;
      width: 90%;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      animation: fadeIn 0.4s ease-in-out;
    }

    .modal9 h3 {
      color: #28a745;
      margin-top: 0;
    }

    .close-btn9 {
      margin-top: 1rem;
      background: #dc3545;
      color: white;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 5px;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    @media (max-width: 600px) {
      .card9, .modal9.ljnbhvc {
        padding: 1.2rem;
      }
    }
     /* Preloader container */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #e0f7fa, #a5d6a7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Circular loader */
.loader {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.4);
  border-top: 6px solid #2e7d32;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  -webkit-animation: spin 1.2s linear infinite;
}

/* Preloader text */
.preloader-text {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #1b5e20;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 1px #dcedc8;
  animation: fadeInUp 1.4s ease-in-out forwards;
  -webkit-animation: fadeInUp 1.4s ease-in-out forwards;
  opacity: 0;
  max-width: 90%;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .loader {
    width: 45px;
    height: 45px;
    border-width: 5px;
  }

  .preloader-text {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}
   .card-section99 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card99 {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card99:hover {
      transform: translateY(-5px);
    }

    .card99 img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content99 {
      padding: 1rem;
    }

    .card-title99 {
      font-size: 1.25rem;
      margin: 0 0 0.5rem;
      color: #333;
    }

    .card-text99 {
      font-size: 0.95rem;
      color: #666;
    }

    .card-button99 {
      margin-top: 1rem;
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: #007BFF;
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-size: 0.9rem;
      transition: background-color 0.2s ease;
    }

    .card-button99:hover {
      background-color: #0056b3;
    }
    
    .section-title34 {
      text-align: center;
      padding: 40px 20px 10px;
      font-size: 2rem;
      color: #2f5d62;
    }

    .companies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 30px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .company-card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      padding: 20px;
      transition: transform 0.2s ease;
    }

    .company-card:hover {
      transform: translateY(-5px);
    }

    .company-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .company-name {
      font-size: 18px;
      font-weight: bold;
      color: #2f5d62;
      margin-bottom: 10px;
    }

    .company-desc {
      font-size: 14px;
      color: #444;
      line-height: 1.5;
    }
    :root {
      --bg-color: #ffffff;
      --text-color: #333333;
      --card-bg: #f9f9f9;
      --header-bg: #ffffff;
      --footer-bg: #2c3e50;
      --footer-text: #ecf0f1;
      --nav-bg: #2c3e50;
      --nav-text: #ecf0f1;
      --primary-color: #27ae60;
      --secondary-color: #2ecc71;
      --accent-color: #e74c3c;
      --border-color: #dddddd;
      --shadow-color: rgba(0, 0, 0, 0.1);
    }

    .dark-mode {
      --bg-color: #121212;
      --text-color: #e0e0e0;
      --card-bg: #1e1e1e;
      --header-bg: #1a1a1a;
      --footer-bg: #121212;
      --footer-text: #b0b0b0;
      --nav-bg: #1a1a1a;
      --nav-text: #e0e0e0;
      --primary-color: #2ecc71;
      --secondary-color: #27ae60;
      --accent-color: #e74c3c;
      --border-color: #333333;
      --shadow-color: rgba(0, 0, 0, 0.3);
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      transition: background-color 0.3s, color 0.3s;
    }

    header {
      background-color: var(--header-bg);
    }

    .navbar ul li a {
      color: var(--nav-text);
    }

    .card, .card1, .card5, .card6, .card9, .card99, .stat-box, .wastewater-card, .waste-card, .company-card, .benefit-card {
      background-color: var(--card-bg);
      box-shadow: 0 4px 8px var(--shadow-color);
      color: var(--text-color);
    }

    footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
    }



    /* Subscription Form Styles */
    .subscribe-card1 {
      position: relative;
    }

    .subscribe-card1 form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .subscribe-card1 input[type="email"] {
      padding: 12px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      background-color: var(--bg-color);
      color: var(--text-color);
    }

    .subscribe-card1 button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .subscribe-card1 button:hover {
      background-color: var(--secondary-color);
    }