* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background: #effff2;
    color: #3a2f2a;
    overflow-x: hidden;
  }

  header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #4c5c4e;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  header.scrolled {
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .gallery-link {
    color: white;
  }
  header h1 a {
    font-size: 30px;
    font-weight: bold;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
  }

  nav {
    display: flex;
    gap: 30px;
  }

  nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00833b;
    transition: width 0.3s;
  }

  nav a:hover::after {
    width: 100%;
  }

  nav a:hover {
    color: #00833b;
  }

  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: url('https://images.unsplash.com/photo-1504754524776-8f4f37790ca0') center/cover no-repeat;
    position: relative;
    margin-top: 70px;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg,  rgba(217, 123, 72, 0.3), rgba(58, 47, 42, 0.6)); /*no touchy*/
    
  }

  .hero-content {
    position: relative;
    color: white;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-content h2 {
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    opacity: 0.95;
  }

  .btn {
    padding: 16px 40px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #00833b, #00bb54);
    color: white;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(72, 217, 108, 0.4);
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(72, 217, 91, 0.5);
  }

  .btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 15px;
    box-shadow: none;
  }

  .btn-secondary:hover {
    background: white;
    color: #00833b;
  }

  .btn-primary {
      margin-top: 2rem;
  }
  .section {
    padding: 100px 40px;
    text-align: center;
  }

  .section h3 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00833b, #00bb54);
    border-radius: 2px;
  }

  .section p.subtitle {
    font-size: 18px;
    color: #3d493f;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  a {
    color:#00833b;
  }
  .gallerysec {
    background: #009141b4;
  }

  #gallerypage {
    background: #b8e2bf;
  }
  #gallerypage .gallerysec {
    background: none;
  }
  
  .menusec {
    background-color: #6fb97c83;
  }
  
  

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-box {
    padding: 40px 30px;
    background: #58976d77;
    border: 3px #00833b solid ;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00833b, #00bb54);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 129, 61, 0.2);
  }

  .feature-box:hover::before {
    transform: scaleX(1);
  }

  .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .feature-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
  }

  .feature-desc {
    font-size: 16px;
    color: #6b5d57;
    line-height: 1.6;
  }

  .stats {
    background: linear-gradient(135deg, #00833b, #00bb54);
    color: white;
    padding: 80px 40px;
    margin: 60px 0;
    margin-bottom: 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 18px;
    opacity: 0.9;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto 0;
  }

  .gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .see-more {
    background: url(./plus.png) center/cover no-repeat;

  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
  }

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }

  .cta-section {
    background: #6fb97c83;
    padding: 80px 40px;
    text-align: center;
  }

  .cta-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .cta-content h3 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(48, 148, 86, 0.3);
    background: #00833b;
    color: white;
  }

  footer {
    background: #3a2f2a;
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
  }

  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    text-align: left;
  }

  .footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #00833b;
  }

  .footer-section p, .footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
  }

  .footer-section a:hover {
    color: #00833b;
  }

  .footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  video {
    width: 40%;
    height: auto;
    margin-top: 2rem;

  }

  @media (max-width: 768px) {
    header h1 {
      font-size: 22px;
    }

    nav {
      gap: 10px;
    }

    .hero-content h2 {
      font-size: 42px;
    }

    .hero-content p {
      font-size: 18px;
    }

    .section h3 {
      font-size: 32px;
    }

    .btn-secondary {
      margin-left: 0;
      margin-top: 15px;
    }

    .footer-content {
      text-align: center;
    }
    video {
        width: 300;
        height: auto;
    }
  }

  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }

  .scroll-indicator::after {
    content: '↓';
    font-size: 32px;
    color: white;
    opacity: 0.8;
  }
