/* =============================
   Complete Fixed CSS File
   GOGAWA Stylesheet (Navbar Scrolls With Page + Mobile Visible)
   ============================= */

   :root {
    --primary: #4CAF50;
    --secondary: #8BC34A;
    --accent: #FFC107;
    --bg: #FAFAFA;
    --text: #333333;
    --light: #FFFFFF;
    --dark: #2E7D32;
    --dark-green: #2e7d32;
    --darker-green: #1b5e20;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow: hidden;
    max-width: 100vw;   /* Important fix */
    padding-top: 0;
  }
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ================= Top Contact Bar ================= */
  .top-bar {
    position: relative; /* no longer fixed */
    background-color: var(--dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
    z-index: 1100;
  }
  
  .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .contact-info i {
    color: var(--accent);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    color: white;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: var(--accent);
  }
  
  /* ================= Navbar ================= */
  .main-nav {
    background: linear-gradient(90deg, var(--light) 0%, var(--dark-green) 100%);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    position: fixed;
    z-index: 1000;
    left: 0;
    top: auto;
    width: 100%;
    transition: top 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    color: var(--light);
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
    letter-spacing: 1px;
    gap: 10px;
    height: 80px;
  }
  
  .nav-logo img {
    width: 250px;
    height: auto;
    object-fit: contain;
  }
  
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2.2rem;
    cursor: pointer;
  }
  
  .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
  }
  
  .nav-link,
  .dropdown-toggle {
    display: flex;
    align-items: center;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 1.08rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }
  
  .nav-link:hover,
  .dropdown-toggle:hover,
  .nav-link.active,
  .dropdown-toggle.active {
    background: rgba(255, 255, 255, 0.13);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--darker-green);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    margin-top: 4px;
    padding: 8px 0;
    z-index: 1001;
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  .dropdown-link {
    display: block;
    color: var(--light);
    text-decoration: none;
    padding: 14px 24px;
    font-size: 1rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
  }
  
  .dropdown-link:hover {
    background: rgba(255, 255, 255, 0.13);
    border-left: 3px solid var(--accent);
    color: var(--accent);
    padding-left: 30px;
  }
  
  /* ================= Mobile Navigation ================= */
  @media (max-width: 992px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--darker-green);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      border-radius: 0 0 18px 18px;
      padding: 30px 0 20px 0;
      z-index: 999;
      animation: slideDown 0.3s cubic-bezier(0.4, 2, 0.6, 1) forwards;
      gap: 0;
    }
  
    .nav-list.active {
      display: flex;
    }
  
    .nav-link,
    .dropdown-toggle {
      width: 100%;
      text-align: center;
      padding: 16px 0;
      font-size: 1.1rem;
    }
  
    .dropdown-menu {
      position: static;
      min-width: 100%;
      box-shadow: none;
      border-radius: 0 0 18px 18px;
      margin-top: 0;
      padding: 0;
    }
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 700px) {
    .nav-logo img {
      width: 250px;
    }
    .main-nav {
        top: 60px;
    }
    @media (max-width: 608px) {
        .nav-logo img {
            width: 200px;
        }
        .main-nav {
            top: 90px;
        }
    }
    @media (max-width: 480px) {
        .nav-logo img {
            width: 150px;
        }
        .main-nav {
            top: 100px;
        }
    }
  }
  @media (max-width: 390px) {
    .nav-logo img {
        width: 100px;
    }
    .main-nav {
        top: 100px;
    }
  }
        /* Add these styles to your CSS */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.contents {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 80%;
    max-width: 600px;
    color: white;
    z-index: 10;
    padding: 30px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
}

.contents p:first-child {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 10px;
}

.contents h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contents h2 span {
    color: var(--accent);
}

.contents p:last-child {
    margin-bottom: 20px;
    line-height: 1.6;
}

.buttonss  {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btnss {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--accent);
    color: var(--light);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btnss:hover {
    scale: 1.05;
    transition: all 0.3s;
}
.btnss-outline {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--light);
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.btnss-outline:hover {
    scale: 1.05;
    transition: all 0.3s;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
}

.arrow:hover {
    background: var(--primary);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.pagination-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.thumbnail-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 0 20px;
    box-sizing: border-box;
}

.thumbnails {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb {
    flex: 0 0 150px;
    height: 80px;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    filter: brightness(0.7);
    transition: all 0.3s;
}

.thumb.active {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 12px;
    text-align: center;
}

.autoplay-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(255,255,255,0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.autoplay-toggle:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .content {
        left: 5%;
        width: 90%;
        padding: 20px;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .thumbnail-nav {
        bottom: 10px;
    }
    
    .thumb {
        flex: 0 0 120px;
        height: 70px;
    }
}

        /* Products Section */
        .products {
            padding: 80px 0;
            display: none;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        .product-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .category {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .category:hover {
            transform: translateY(-10px);
        }
        
        .category h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Stats Section */
        .stats {
            padding: 60px 0;
            background-color: var(--bg);
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--text);
        }
        .stat-number span {
  color: var(--primary);
  font-weight: bold;
}
        .about-new-layout {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
            margin-top: 50px;
        }
        
        .about-image, .about-imag {
            width: 100%;
        }
        .about-image img, .about-imag img {
            width: 100%;
            align-items: right;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .green-box, .green-bo {
            background-color: #E8F5E9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        .green-box h2, .green-bo h2 {
            font-size: 24px;
            color: #2e7d32;
            margin-bottom: 20px;
        }
        .green-box p, .green-bo p {
            font-size: 16px;
            margin-bottom: 25px;
        }
        
        /* Mission & Vision Section */
        .mission-vision.redesigned {
            padding: 80px 0;
            background: transparent;
        }
        .mv-flex {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .mv-box {
            background-color: #1e1e1e;
            border-left: 6px solid var(--accent);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: transform 0.3s ease;
        }
        .mv-box:hover {
            transform: translateY(-8px);
        }
        .mv-box .icon {
            font-size: 28px;
            color: var(--accent);
            flex-shrink: 0;
        }
        .mv-box .content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .mv-box .content p {
            font-size: 14px;
            line-height: 1.7;
            color: #cccccc;
        }
        .testimonials {
            padding: 80px 0;
            background-color: #ffffff;
            text-align: center;
        }
        .section-subtitle {
            color: var(--primary);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .section-heading {
            font-size: 30px;
            font-weight: 700;
            color: var(--text);
        }
        .section-heading span {
            color: var(--primary);
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .testimonial-card {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        .testimonial-card p {
            font-size: 15px;
            color: #444;
            margin-bottom: 25px;
        }
        .client-info {
            display: flex;
            text-align: left;
            gap: 15px;
        }
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid var(--primary);
            object-fit: cover;
        }
        .client-info h4 {
            font-size: 16px;
            margin: 0;
            color: var(--text);
        }
.client-info small {
  font-size: 14px;
  color: #777;
  display: block;
  margin-top: 4px;
  margin-left: 0; /* Remove any shift */
}
        /* Join Us Section */
.join-us {
    position: relative;
    background-image: inear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/Images/group-people-hiking-mountains-with-sun-shining-them.jpg')  / cover no-repeat;

    background-color: #102801;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.join-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

.join-content h2 span {
    color: #8BC34A;
}

.subheading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.join-btn {
    background-color: #66bb6a;
    color: white;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
}

.join-btn:hover {
    color: white;
    background-color: #4CAF50;
}

        /* Media Section */
        .media-block {
            padding: 60px 0;
            background-color: #ffffff;
        }
        .media-video {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            position: relative;
        }
        .media-video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }
        /* Contact Us Section */
        .contact-us {
            padding: 60px 0;
            background-color: #ffffff;
        }
        .contact-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .map-box {
            width: 100%;
        }
        .map-box iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 10px;
        }
        .contact-details {
            background-color: #f7f7f7;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        }
        .contact-details h4 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }
        .contact-details h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .contact-details h2 span {
            color: var(--secondary);
        }
        .contact-details p {
            margin-bottom: 20px;
            color: #333;
            font-size: 15px;
            line-height: 1.6;
        }
        .contact-details i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        /* Footer */
        footer {
            background: #111;
            position: relative;
            width: 100%;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .footer-section h2 {
            font-size: 1.125rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            height: 2px;
            width: 40px;
            background: var(--accent);
        }

        .footer-about p {
            color: #d9d9d9;
            text-align: justify;
            line-height: 1.6;
        }

        .footer-links {
            margin-top: 20px;
        }

        .footer-links a {
            display: inline-block;
            margin-right: 15px;
            color: #d9d9d9;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            font-size: 1.2rem;
            background: #1a1a1a;
            height: 45px;
            width: 45px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            margin-right: 15px;
            color: var(--accent);
        }

        .contact-text {
            color: #d9d9d9;
            font-size: 1rem;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
        }

        .footer-links-list li {
            margin-bottom: 10px;
        }

        .footer-links-list a {
            color: #d9d9d9;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links-list a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-links-list i {
            margin-right: 10px;
            color: var(--accent);
        }

        .footer-bottom {
            background: #151515;
            padding: 15px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #656565;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            
            .about-new-layout, .about-new-layou {
                flex-direction: row;
            }
            
            .about-new-layout .about-image, 
            .about-new-layou .about-imag {
                max-width: 50%;
            }
            
            .green-box, .green-bo {
                max-width: 50%;
            }
            
            .contact-container {
                flex-direction: row;
            }
            
            .map-box {
                max-width: 50%;
            }
            
            .contact-details {
                max-width: 50%;
            }
        }
        @media (max-width: 992px) {
            .slider .list .item .content h2 {
                font-size: 36px;
            }
            
            .thumbnail {
                height: 120px;
                padding: 0 20px;
            }
            
            .thumbnail .item {
                width: 150px;
                height: 90px;
            }
            
            .arrows {
                top: 40%;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--light);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                flex-direction: column;
                padding: 20px 0;
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            
            .slider .list .item .content {
                left: 5%;
                top: 40%;
                width: 90%;
            }
            
            .slider .list .item .content h2 {
                font-size: 28px;
            }
            
            .slider .list .item .content p:first-child {
                letter-spacing: 5px;
            }
            
            .slider .list .item .content p:last-child {
                font-size: 14px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .stat-number {
                font-size: 28px;
            }
            
            .join-content h2 {
                font-size: 24px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }
        @media (max-width: 480px) {
            .top-bar-container {
                gap: 0;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .slider .list .item .content h2 {
                font-size: 24px;
            }
            
            .thumbnail {
                bottom: 20px;
                height: 100px;
            }
            
            .thumbnail .item {
                width: 120px;
                height: 70px;
            }
            
            .arrows button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .join-content h2 {
                font-size: 20px;
            }
        }