* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #A6CE39;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../Images/about\ hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #A6CE39;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Company Profile */
.company-profile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.profile-content {
    display: grid;
    gap: 60px;
}

.profile-story {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.profile-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
}

.profile-story h3 {
    font-size: 2.2rem;
    color: #A6CE39;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.profile-story h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 2px;
}

.profile-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    padding-left: 20px;
    text-align: justify;
}

.profile-story p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

/* Our Story two-column layout: image (25%) + content (75%) */
.story-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.story-image {
    flex: 0 0 25%;
    align-self: flex-start;
    margin-top: 80px;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.story-text {
    flex: 1 1 75%;
}

@media (max-width: 800px) {
    .story-row {
        flex-direction: column;
    }
    .story-image {
        flex-basis: 100%;
    }
}

/* Founders Section */
.founders-section h3 {
    font-size: 2rem;
    color: #A6CE39;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.founder-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.founder-image i {
    font-size: 2.5rem;
    color: white;
}

.founder-card h4 {
    font-size: 1.3rem;
    color: #A6CE39;
    margin-bottom: 5px;
    font-weight: 600;
}

.founder-title {
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    color: #555;
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../Images/mission\ bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.mv-card:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../Images/vision\ bg.jpg');
    background-size: cover;
    background-position: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #A6CE39;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Sustainability Stats */
.sustainability-stats {
    background-image: url('../Images/Gemini_Generated_Image_garbage.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.sustainability-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.sustainability-stats .container {
    position: relative;
    z-index: 2;
}

.sustainability-stats .section-header h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #A6CE39;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
}

.stats-cta {
    text-align: center;
}

.get-in-touch-btn {
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    color: white;
    border: none;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(166, 206, 57, 0.3);
}

.get-in-touch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 206, 57, 0.4);
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    font-size: 1.2rem;
    color: #A6CE39;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23A6CE39" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.team-content {
    position: relative;
    z-index: 2;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 900px;
    border: 1px solid rgba(166, 206, 57, 0.1);
}

.team-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D, #A6CE39);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.team-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
    text-align: justify;
    position: relative;
    padding: 0 20px;
}

.team-description p:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.team-description p:first-child::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 2px;
}

.team-description p:last-child {
    background: linear-gradient(135deg, rgba(166, 206, 57, 0.05), rgba(143, 179, 45, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #A6CE39;
    font-style: italic;
    margin-top: 30px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../Images/Grace\ forest.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #A6CE39;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../Gallery_Images/WhatsApp\ Image\ 2025-12-12\ at\ 22.41.03_eee72217.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.choose-item:hover {
    transform: translateX(10px);
}

.choose-item i {
    font-size: 2rem;
    color: #A6CE39;
    min-width: 40px;
}

.choose-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.choose-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-section .section-header h2,
.gallery-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-section .section-header p,
.gallery-section .section-header p {
    color: rgba(255,255,255,0.9);
}

/* Customers Section */
.customers-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.customers-carousel {
    margin-top: 50px;
    overflow: hidden;
}

.carousel-row {
    display: flex;
    margin-bottom: 30px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.left-to-right .carousel-track {
    animation-name: scrollLeft;
}

.right-to-left .carousel-track {
    animation-name: scrollRight;
}

.carousel-track img {
    height: 80px;
    width: 150px;
    object-fit: contain;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../Gallery_Images/WhatsApp\ Image\ 2025-12-12\ at\ 22.41.05_586babd0.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #A6CE39;
    background: white;
    color: #A6CE39;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #A6CE39;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

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

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-note {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-note p {
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.contact-card {
    min-height: 280px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    color: white;
    transform-style: preserve-3d;
}

.card-inner i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    flex-shrink: 0;
}

.card-inner h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.card-inner p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: white;
    line-height: 1.4;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.contact-card {
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

.contact-card:hover {
    transform: rotateY(10deg) rotateX(5deg) translateZ(20px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A6CE39, #8FB32D);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backface-visibility: hidden;
    color: white;
}

.card-front i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.card-front h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-front p {
    font-size: 1rem;
    opacity: 0.9;
}



/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        background-attachment: scroll;
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .profile-story {
        padding: 30px 20px;
    }
    
    .profile-story h3 {
        font-size: 1.8rem;
        padding-left: 10px;
    }
    
    .profile-story h3::after {
        left: 10px;
    }
    
    .profile-story p {
        font-size: 1rem;
        padding-left: 10px;
        text-align: left;
    }
    
    .team-content {
        padding: 30px 20px;
    }
    
    .team-description p {
        font-size: 1rem;
        padding: 0 10px;
        text-align: left;
    }
    
    .team-description p:first-child {
        font-size: 1.1rem;
    }
    
    .sustainability-stats {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .sustainability-stats .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
        width: 90%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInMenu 0.3s ease-out forwards;
    }
    
    .nav-menu.active li {
        animation-delay: calc(var(--i) * 0.1s);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 15px 25px;
        color: #333;
        border-radius: 30px;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(135deg, #A6CE39, #8FB32D);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(166, 206, 57, 0.3);
    }
    
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
    
    .mv-card p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .gallery-tabs {
        gap: 10px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choose-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
    
    .choose-item h4 {
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        min-height: 250px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .card-inner {
        padding: 25px 20px;
    }
    
    .card-inner i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .card-inner h4 {
        font-size: 1.2rem;
    }
    
    .card-inner p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
        text-align: center;
        gap: 5px;
    }
    
    .footer-section p i {
        width: 14px;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .profile-story {
        padding: 20px 15px;
    }
    
    .profile-story h3 {
        font-size: 1.5rem;
        padding-left: 5px;
    }
    
    .profile-story h3::after {
        left: 5px;
        width: 50px;
    }
    
    .profile-story p {
        font-size: 0.95rem;
        padding-left: 5px;
    }
    
    .team-content {
        padding: 20px 15px;
    }
    
    .team-description p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
    
    .team-description p:first-child {
        font-size: 1rem;
    }
    
    .sustainability-stats .section-header h2 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .get-in-touch-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .mv-card {
        padding: 25px 15px;
    }
    
    .mv-card h3 {
        font-size: 1.3rem;
    }
    
    .mv-card p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-card h4 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .choose-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .choose-item h4 {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .contact-card {
        min-height: 220px;
    }
    
    .card-inner {
        padding: 20px 15px;
    }
    
    .card-inner i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .card-inner h4 {
        font-size: 1rem;
    }
    
    .card-inner p {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
        text-align: center;
        gap: 4px;
    }
    
    .footer-section p i {
        width: 12px;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('../Images/Gemini_Generated_Image_b8golf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h3 {
    color: #A6CE39;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #A6CE39;
}

.footer-section h4 {
    color: #A6CE39;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #A6CE39;
}

.footer-section p {
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section p i {
    color: #A6CE39;
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #A6CE39;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    border-color: #A6CE39;
    color: #A6CE39;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(166, 206, 57, 0.3);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #A6CE39;
    padding-left: 8px;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .contact-card:hover {
        transform: none;
    }
    
    .service-card:hover,
    .value-card:hover,
    .founder-card:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .choose-item:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
}