    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    /* Navbar */
    nav {
      width: 100%;
      padding: 20px 60px;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    nav .logo {
      font-size: 30px;
      font-weight: 700;
      color: #4caf50;
      margin-right: 320px;
    }
  
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      text-decoration: none;
      font-size: 16px;
      color: #fff;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #ffd700;
    }

    .slider {
      position: relative;
      height: 65vh;
      width: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    /* Dark overlay for opacity effect */
    .slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); /* adjust 0.5 for more/less opacity */
    }

    /* Content in center */
    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      max-width: 700px;
      z-index: 2; /* keep above overlay */
    }

    .slide-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .slide-content p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .btn {
      padding: 12px 30px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 30px;
      transition: 0.3s;
    }

    .btn-yellow {
      background: #ffd700;
      color: #000;
    }

    .btn-yellow:hover {
      background: #ffb700;
    }


      .contact-section {
      padding: 80px 10%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: stretch;
    }

    /* Contact Section Layout */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Two Columns for Info + Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch; /* same height */
}

/* Left & Right Boxes (keep same style) */
.contact-info, .contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.contact-info:hover, .contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-info h2, .contact-form h2 {
  font-size: 30px;
  color: #4caf50;
  margin-bottom: 20px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

.contact-info .detail {
  margin-bottom: 25px;
  text-align: center;
}

.contact-info .detail h4 {
  color: #222;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info .detail p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* Social Media */
.detail .social-links {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 20px;
}

.detail .social-links a {
  display: inline-block;
  font-size: 24px;
  color: #555;
  background: #f0f0f0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s;
}

.detail .social-links a:hover {
  color: #fff;
  background: #4caf50;
  transform: scale(1.3);
}

/* Form */
form input, form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

form input:focus, form textarea:focus {
  border-color: #4caf50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

form textarea {
  height: 130px;
  resize: none;
}

.btn2 {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.btn2:hover {
  background: #3e8e41;
}

/* Map below both */
.map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
  transition: 0.3s;
}

.map iframe:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

     .footer {
    position: relative;
    background: url('img/img1.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  .footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
  }
  .footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
  }
  /* .footer-col {
    flex: 1;
    margin: 15px;
    min-width: 220px;
  } */
  .footer-logo {
    max-width: 112px;
    margin-bottom: -23px;
  }
  .footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links ul li {
    margin: 8px 0;
  }
  .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  .footer-links ul li a:hover {
    color: #4caf50;
  }
  .footer-social .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-social .social-icons img {
    width: 46px;
    transition: transform 0.3s;
  }
  .footer-social .social-icons img:hover {
    transform: scale(1.2);
  }
  .footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
  }