    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      overflow-x: hidden;
      background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    }

    /* 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 Section */
    .slider {
      position: relative;
      height: 65vh;
      width: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    .slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 40, 0, 0.5);
    }

    .slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      max-width: 700px;
      z-index: 2;
    }

    .slide-content h1 {
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    }

    .slide-content p {
      font-size: 20px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .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;
    }

    /* Gallery Section */
    .main-container {
      width: 100%;
      max-width: 1300px;
      text-align: center;
      margin: 40px auto;
    }

    .center-label {
      margin-bottom: 40px;
      display: inline-block;
      padding: 15px 40px;
      background: #4caf50;
      color: white;
      font-size: 26px;
      font-weight: bold;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .images-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
    }

    .image {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      background: #fff;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s forwards;
    }

    .image:nth-child(odd) {
      animation-delay: 0.2s;
    }
    .image:nth-child(even) {
      animation-delay: 0.4s;
    }

    .image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    .image:hover img {
      transform: scale(1.1);
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .center-label {
        font-size: 18px;
        padding: 10px 20px;
      }
      nav {
        padding: 15px 20px;
      }
      nav .logo {
        margin-right: 0;
      }
      nav ul {
        gap: 15px;
        flex-wrap: wrap;
      }
    }
      .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;
  }