body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
/* TOP SUPPORT BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.logo-title {
  display: flex;
  align-items: center;
}
.logo {
  height: 48px;
}
.site-title {
  margin-left: 12px;
}
.site-title h1 {
  margin: 0;
  font-size: 20px;
  color: #2a2a2a;
}
.site-title p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #009345;
}
.support {
  display: flex;
  gap: 40px;
}
.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.support-item i {
  font-size: 20px;
  color: #009345;
}
.support-item .label {
  font-weight: bold;
  font-size: 14px;
}
.support-item .info {
  font-size: 14px;
  color: #555;
}

/* MAIN NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center; /* center nav links */
  padding: 10px 40px;
  background: rgba(12,15,18,0.9);
}
.navbar nav {
  display: flex;
  align-items: center;
}
.navbar nav a {
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  position: relative;
  transition: color 0.3s;
}
.navbar nav .divider {
  color: rgba(255,255,255,0.3);
}
.navbar nav a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: #009345;
}
.navbar nav a:hover {
  color: #009345;
}

/* Contact Us button on right */
.contact-btn {
  margin-left: auto;   /* push to right edge */
  background: #009345;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}
.contact-btn:hover {
  background: #007a2e;
}
/* ✅ Hero Section: Full height with better layout */
.hero {
  background-size: cover;
  background-position: center;
  height: 90vh; /* Full-screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 500px;
  /* padding: 10px 20px; */
  padding-top:450px;
  padding-left: 15px;
  border-radius: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.description {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.description h2 {
  font-size: 50px;
  color: #006c70;
}

.description h2 span {
  color: #006c70;
}

.description p {
  max-width: 700px;
  margin: 20px auto;
  color: #333;
  font-weight: bold;
  font-size:large ;
}

.section-divider {
  border: none;
  height: 2px;
  width: 1000px;
  background-color: #0077B6;
  margin: 20px auto;
}

.description h3 {
  margin-top: 40px;
  font-size: 20px;
}

.gallery {
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

/* ✅ Hero Section: Full height with better layout */
.hero {
  background-size: cover;
  background-position: center;
  height: 90vh; /* Full-screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.description {
  text-align: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.description h2 {
  font-size: 24px;
  color: #006c70;
}

.description h2 span {
  color: #006c70;
}

.description p {
  max-width: 700px;
  margin: 20px auto;
  color: #333;
}

.section-divider {
  border: none;
  height: 2px;
  width: 1000px;
  background-color: #0077B6;
  margin: 20px auto;
}

.description h3 {
  margin-top: 40px;
  font-size: 20px;
}

.gallery {
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* reduced min size */
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 100%;
  max-width: 1000px;  /* limits the maximum width */
  height: 50px;     /* sets consistent height */
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto;
}

.gallery .grid-2col img:nth-child(n+7) {
  max-width: 1000px;
  height: 500px;
  object-fit: cover;
  margin: auto;
  display: block;
}

/* Initial state - images are shifted offscreen */
.gallery img {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: transform, opacity;
}

/* Slide from left */
.slide-in-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Slide from right */
.slide-in-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Start positions */
.gallery img.slide-from-left {
  transform: translateX(-100px);
}

.gallery img.slide-from-right {
  transform: translateX(100px);
}

.view-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ✅ Updated contact section */
.contact-section {
  background-image: url('images/Img12.webp');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  min-height: 600px;
  max-width: 100%;
}


.contact-left {
  max-width: 60%;
}

.contact-left h2 {
  font-size: 28px;
  padding-top: 150px;;
  line-height: 1.3;
  margin: 0;
}

.contact-right {
  margin-left: 30px;
}

.contact-right .contact-link {
  background-color: #00d084;
  color: #000;
  padding: 12px 24px;
  margin-right: 50px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}


.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}

.grid-2col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.custom-footer {
  background: linear-gradient(to bottom, #4b667a, #1e2d3b);
  color: #fff;
  padding: 50px 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 40%;
}

.footer-logo {
  width: 60px;
}

.footer-name {
  font-size: 18px;
  margin: 8px 0 0;
  font-weight: bold;
}

.footer-name span {
  font-weight: normal;
  font-size: 14px;
  display: block;
}

.footer-tagline {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #e6e6e6;
  margin: 6px 0;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #00d084;
}

.footer-line {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-icons a {
  margin: 0 8px;
  display: inline-block;
}

.footer-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-icons img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-right {
    flex-direction: column;
    gap: 20px;
  }
  .footer-left {
    max-width: 100%;
  }
}



/* ✅ Updated contact section */
.contact-section {
  background-image: url('images/Img12.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  position: relative;
  display: flex;
  justify-content: flex-start; /* Align items to the left */
  align-items: center;         /* Center vertically */
  text-align: left;            /* Align text to the left */
  min-height: 600px;   
  max-width: 100%;        /* Ensure enough height for visibility */
}




.contact-content {
  font-size: 25px;
  padding-top: 300px;
  border-radius: 10px;
  display: inline-block;
}


.contact-right {
  margin-left: auto;
  margin-top: auto;
  margin-right: 100px;
  white-space: nowrap;
}


.contact-link {
  display: inline-block;
  margin-top: 15px;
  background-color: #00d084;
  color: #fbf7f7;
  padding: 5px 30px;
  border-radius: 5px;
  text-decoration: none;
  /* font-weight: bold; */
  font-size: 25px;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}

.grid-2col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}



/* ✅ Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav a {
    margin: 10px 0;
  }

  .hero {
    height: 70vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
    padding-top: 250px;
  }

  .description h2 {
    font-size: 30px;
  }

  .description p {
    font-size: medium;
    padding: 0 10px;
  }

  .section-divider {
    width: 90%;
  }

  .gallery .grid {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 200px;
  }

  .contact-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .contact-content {
    padding-top: 100px;
    font-size: 20px;
  }

  .contact-right {
    margin: 20px auto 0;
    text-align: center;
  }

  .contact-link {
    padding: 10px 20px;
    font-size: 20px;
  }

  .grid-2col {
    grid-template-columns: 1fr;
  }
