/* Global Styles */
:root {
  --dark-green: #0a4d3c;
  --medium-green: #0e6e56;
  --light-green: #67c79e;
  --very-light-green: #e3f5ee;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --text-dark: #333333;
  --accent-gold: #d4af37;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

   
   
 /*font-family: 'Arial', 'Helvetica', sans-serif;*/





  font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden;
}


body {
  background-color: var(--white);
  color: var(--text-dark);
}

/* Header Styles */
.bg-success {
  background-color: var(--dark-green) !important;
}

.bg-light-green {
  background-color: var(--very-light-green);
}

.navbar-light .navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: red;
}

.btn-success {
  background-color: var(--medium-green);
  border-color: var(--medium-green);
  box-shadow: 0 4px 8px rgba(10, 77, 60, 0.2);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(10, 77, 60, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
}

.carousel-item {
  height: 500px;
}

.carousel-item img {
  /*object-fit: cover;*/
  height: 100%;
  width: 100%;
  filter: brightness(0.85);
}

.carousel-caption {
  bottom: 20%;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* TTZ Section */
.ttz-section {
  background-color:  #0e6e56;
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.ttz-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.ttz-heading::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.ttz-description {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Reduce gap for smaller screens */
  padding: 3rem 15px;
  background-color: var(--very-light-green);
}

/* Feature Box */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Spacing between elements */
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  min-height: 300px;
  text-align: center;
  padding: 20px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(10, 77, 60, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(10, 77, 60, 0.15);
}

/* Hexagon Icon */
.hexagon-icon {
  position: relative;
  width: 90px;
  height: 100px;
  background-color: var(--medium-green);
  margin: 0 auto 15px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.feature-item:hover .hexagon-icon {
  background-color: var(--dark-green);
}

.hexagon-icon i {
  font-size: 32px; /* Adjust for smaller screens */
  color: var(--white);
}

/* Feature Text */
.feature-item h3 {
  font-size: 1.3rem; /* Reduce slightly for better fit */
  margin-bottom: 10px;
  color: var(--dark-green);
}

.feature-item p {
  flex-grow: 1;
  font-size: 1rem; /* Reduce font size slightly for mobile */
  color: var(--text-dark);
  margin-bottom: 0; /* Removes any space below the paragraph */
  padding-bottom: 0; /* Ensures no extra padding */
}

.feature-item a {
  color: var(--medium-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: auto;
  font-size: 1rem; /* Adjust for better readability */
}

.feature-item a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

/* 🔹 MOBILE RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
  .features-container {
    flex-direction: column; /* Stack items in a single column */
    align-items: center;
    gap: 15px; /* Reduce gap for better fit */
    padding: 2rem 10px;
  }

  .feature-item {
    width: 90%; /* Make boxes full-width on small screens */
    max-width: 320px;
    min-height: 300px; /* Reduce height for better fit */
    padding: 15px;
  }

  .hexagon-icon {
    width: 80px;
    height: 90px;
  }

  .hexagon-icon i {
    font-size: 28px;
  }

  .feature-item h3 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.95rem;
  }

  .feature-item a {
    font-size: 0.95rem;
  }
}

/* About Section */
.about {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-green);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--accent-gold);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-img {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.about-text ul li {
  position: relative;
  padding-left: 25px;
}

.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--medium-green);
  font-weight: bold;
}

.about-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: var(--medium-green);
  color: var(--white);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-text .btn:hover {
  background-color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 77, 60, 0.25);
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background-color: var(--very-light-green);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 250px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 77, 60, 0.8), transparent);
  padding: 20px;
  color: var(--white);
  transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
  background: linear-gradient(to top, rgba(10, 77, 60, 0.9), transparent);
}

.gallery-item .overlay h4 {
  margin: 0;
  font-size: 1.5rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(10, 77, 60, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(10, 77, 60, 0.15);
}

.feature-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--very-light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.feature-card:hover .icon {
  background-color: var(--light-green);
}

.feature-card .icon i {
  font-size: 30px;
  color: var(--dark-green);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-green);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 15px;
  background-color: var(--dark-green);
  color: var(--white);
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.contact-details div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details i {
  font-size: 20px;
  margin-right: 15px;
  color: var(--light-green);
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-green);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--medium-green);
  box-shadow: 0 0 0 3px rgba(14, 110, 86, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--medium-green);
  color: var(--white);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background-color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 77, 60, 0.25);
}

/* Footer */
footer {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--light-green);
  bottom: 0;
  left: 0;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--light-green);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-green);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }
  
  .ttz-heading {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .ttz-heading {
    font-size: 1.8rem;
  }
  
  .feature-item, .feature-card {
    min-width: 250px;
  }
  
  .about-text h3, .contact-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 400px;
  }
  
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  
  .ttz-heading, .section-title h2 {
    font-size: 1.6rem;
  }
  
  .hexagon-icon {
    width: 80px;
    height: 90px;
  }
  
  .hexagon-icon i {
    font-size: 30px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Animation Classes */
.appear {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky Header Animation */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Image Loading Animation */
.gallery-item.loaded {
  animation: reveal 0.6s ease-out forwards;
}

@keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ttz-heading {
    font-size: 3rem;
    color: #4CAF50;
    position: relative;
    animation: bounce-left-right 3s infinite alternate ease-in-out;
  }
  
  @keyframes bounce-left-right {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(100px);
    }
    50% {
      transform: translateX(200px);
    }
    75% {
      transform: translateX(100px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  


  /* box */
  .title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color:linear-gradient(145deg, #0d2b0d, #051505);
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin-bottom: 1rem;
  }
  
  .box {
    background-color: #0e6e56;

    border-radius: 1rem;
    padding: 2rem;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(74, 222, 128, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: 0.5s;
  }
  
  .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(74, 222, 128, 0.3);
  }
  
  .box:hover::before {
    left: 100%;
  }
  
  .number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #dde5e0;
  }
  
  .label {
    font-size: 1rem;
    color: #a7f3d0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .counter-container {
    background: linear-gradient(145deg, #0d2b0d, #051505);
    border-radius: 1rem;
    padding: 1.5rem 3rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(74, 222, 128, 0.2);
  }
  
  .counter {
    font-size: 3rem;
    font-weight: bold;
    color: #4ade80;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .container {
      gap: 1rem;
    }
    
    .box {
      width: 160px;
      height: 160px;
      padding: 1.5rem;
    }
    
    .number {
      font-size: 2.5rem;
    }
    
    .label {
      font-size: 0.8rem;
    }
  }

  .gallery a {
    text-decoration: none;
    color: black;
    display: block;
    transition: transform 0.3s ease-in-out;
}
.gallery a:hover {
    transform: scale(1.05);
}
.gallery-img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
}
.gallery-img:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* css for button */
.button-container {
            display: flex;
            margin-top: 25px;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            text-align: center;
        }

        .button {
            padding: 12px 24px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            width: auto; /* Adapts width */
            min-width: 200px;
        }

        .button-primary {
            background-color: #0e6e56; /* Dark green */
        }

        .button-primary:hover {
            background-color: darkgreen;
        }

        .button-secondary {
            background-color: #0e6e56; /* Medium green */
        }

        .button-secondary:hover {
            background-color: darkgreen;
        }

        .button-accent {
            background-color: #0e6e56; /* Light green */
        }

        .button-accent:hover {
            background-color: darkgreen;
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .button-container {
                flex-direction: column;
                align-items: center;
            }

            .button {
                width: 90%;
                max-width: 300px;
            }
        }
        
        
        /*about */
        
        
        .container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            margin-top: 40px;
        }
        
        .info-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .card-header {
            background-color: #0e6e56;
            color: white;
            padding: 15px 20px;
            font-size: 18px;
            font-weight: bold;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-body p {
            margin-bottom: 20px;
        }
        
        .geographical-limits {
            margin-bottom: 20px;
        }
        
        .geographical-limits h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #0e6e56;
        }
        
        .powers-section h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #0e6e56;
        }
        
        ul.powers-list {
            list-style-type: none;
            padding-left: 20px;
        }
        
        ul.powers-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 15px;
        }
        
        ul.powers-list li:before {
            content: "•";
            color: #0e6e56;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -2px;
        }
        
        .map-section {
            margin-top: 30px;
            text-align: center;
        }
        
        .map-placeholder {
            background-color: #e5e5e5;
            height: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        