* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
  }
  
  .hero {
    background: url('../img/banner.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.45);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    color: #f0f0f0;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
  }
  
  /* Updated Premium Search Bar */
  .search-bar {
    display: flex;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
  }
  
  .search-bar input {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #333;
  }
  
  .search-bar input::placeholder {
    color: #666;
  }
  
  .search-bar button {
    background: #ffd700;
    color: #000;
    border: none;
    padding: 0 35px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .search-bar button:hover {
    background: #e5c100;
  }
  
  /* Glassmorphism Transparent Header */
  .hero-header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
  
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo {
    display: flex;
    align-items: center;
    height: 60px; /* controls vertical alignment with nav */
  }
  
  .logo-img {
    height: 100%;
    width: auto;
    max-height: 60px;
    max-width: 200px; /* limit width so it doesn't overflow */
    object-fit: contain;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); /* optional for clarity */
  }
  
  .nav-menu {
    display: flex;
    gap: 30px;
  }
  
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: #ffd700;
  }
  
  .auth-buttons .btn {
    margin-left: 10px;
    padding: 10px 20px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
  }
  
  .auth-buttons .login {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  
  .auth-buttons .signup {
    background: #ffd700;
    color: #000;
  }
  
  .auth-buttons .login:hover {
    background: #fff;
    color: #000;
  }
  
  .auth-buttons .signup:hover {
    background: #e5c100;
  }
  
  /* Fix: wave animation no longer causes scroll */
  /* Fix: wave animation no longer causes scroll */
  .wave-animation {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 2;
  }
  
  .waves {
    width: 200%;
    height: 210px;
    animation: scrollWave 10s linear infinite;
    display: block;
  }
  
  @keyframes scrollWave {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Safety: prevent any accidental horizontal scroll */
  html, body {
    overflow-x: hidden !important;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .nav-menu {
      display: none;
    }
  
    .hero-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .search-bar {
      flex-direction: column;
      border-radius: 20px;
    }
  
    .search-bar input,
    .search-bar button {
      width: 100%;
      padding: 15px;
      border-radius: 0;
    }
  
    .search-bar button {
      border-top: 1px solid #ccc;
    }
  }
  .second-section {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 80px 5%;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  
  .tree-image {
    flex: 1;
    background: #e2f0f9;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  }
  
  .tree-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .tree-content {
    flex: 1;
    max-width: 550px;
  }
  
  .tree-content h3 {
    color: #000000;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .tree-content h2 {
    color: #000000;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
  }
  
  .tree-content p {
    color: #7e7e7e;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 35px;
  }
  
  .tree-button {
    background: #F6D407;
    color: #000;
    text-decoration: none;
    padding: 16px 35px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: background 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
  .tree-button:hover {
    background: #e2c700;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .second-section {
      flex-direction: column;
      padding: 50px 20px;
      text-align: center;
    }
  
    .tree-content h2 {
      font-size: 2rem;
    }
  
    .tree-content p {
      font-size: 1.1rem;
    }
  }
  /* THIRD SECTION - GALLERY */
  .third-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  
  .third-section .gallery-label {
    font-size: 18px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .third-section .gallery-heading {
    font-size: 38px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  
  .third-section .gallery-btn {
    background-color: #F6D407;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .third-section .gallery-btn:hover {
    background-color: #e6c207;
  }
  
  .gallery-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px; /* spacing between images */
    flex-wrap: wrap;
    margin-top: 60px;
  }
  
  .gallery-img {
    overflow: hidden;
    border-radius: 25px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: transform 0.3s ease;
  }
  
  .gallery-img:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  /* Image sizes */
  .left-img {
    width: 370px;
  }
  
  .center-img {
    width: 275px;
  }
  
  .right-img {
    width: 350px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .third-section .gallery-heading {
      font-size: 28px;
    }
  
    .gallery-images {
      flex-direction: column;
      gap: 30px;
    }
  
    .left-img, .center-img, .right-img {
      width: 90%;
    }
  }
  /* FOURTH SECTION */
  .fourth-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .fourth-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .fourth-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
  }
  
  .fourth-cards .card {
    background-color: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .fourth-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  }
  
  .fourth-cards img {
    width: 40px;
    margin-bottom: 20px;
  }
  
  .fourth-cards h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
  }
  
  .fourth-cards a {
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
  }
  
  .fourth-cards a span {
    display: inline-block;
    background-color: #F6D407;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 16px;
  }
  
  .fourth-text {
    flex: 1;
    padding-left: 30px;
    min-width: 300px;
  }
  
  .fourth-text .label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .fourth-text h2 {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .fourth-text .subtext {
    color: #7e7e7e;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .fourth-text .yellow-btn {
    background-color: #F6D407;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
  }
  
  @media (max-width: 900px) {
    .fourth-container {
      flex-direction: column;
    }
  
    .fourth-text {
      padding-left: 0;
    }
  }
  .fifth-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
  }
  
  .logo-icon {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .fifth-section h2 {
    font-size: 32px;
    max-width: 900px;
    margin: 0 auto 30px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .social-icons {
    margin: 20px 0;
    font-size: 22px;
  }
  
  .social-icons i {
    margin: 0 10px;
    cursor: pointer;
    color: #333;
    transition: transform 0.3s;
  }
  
  .social-icons i:hover {
    transform: scale(1.2);
  }
  
  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 25px 0;
    font-weight: 500;
  }
  
  .footer-nav a {
    text-decoration: none;
    color: #222;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #F6D407;
  }
  
  .image-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 60px auto 40px;
    padding: 0 20px;
  }
  
  .image-cards img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .image-cards img:hover {
    transform: scale(1.05);
  }
  
  .divider-line {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 60px auto 40px;
  }
  
  .copyright {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
  }
  