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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo img {
    height: 80px; /* Adjust this value to make logo bigger/smaller */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-left: 12px;
}

.company-intro {
    color: white;
    font-size: 1rem;
    max-width: 350px;
    line-height: 1.5;
}

.social-btn {
    background: white;
    color: #2d5016;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.social-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* Navigation */
nav {
    background: white;
    border-bottom: 3px solid #6b9d3e;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: #2d5016;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

nav a:hover,
nav a.active {
    color: #6b9d3e;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e8f5e0 0%, #c8e6b8 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    color: #2d5016;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #555;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content */
.content-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content {
    padding: 1rem;
}

.text-content h2 {
    color: #2d5016;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.photo-placeholder {
    background: linear-gradient(135deg, #e8f5e0 0%, #c8e6b8 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: #2d5016;
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 500px;
    height: 400px;
    object-fit: cover;
}

.photo-placeholder:hover {
    transform: scale(1.02);
}

.photo-placeholder.rounded {
    border-radius: 50%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.photo-placeholder.rounded img {
    border-radius: 50%;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom, #f8fcf5 0%, #e8f5e0 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.gallery-section h3 {
    color: #2d5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-section > p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 1000;
    max-width: 600px;
    width: 90%;
}

.gallery-placeholder {
    background: linear-gradient(135deg, #e8f5e0 0%, #c8e6b8 100%);
    height: 250px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.gallery-caption {
    color: #2d5016;
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Page Styles */
.page-title {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8fcf5 0%, white 100%);
    max-width: 1200px;
    margin: 0 auto;
}

.page-title h1 {
    color: #2d5016;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-title p {
    color: #555;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.work-section:nth-child(even) {
    background: linear-gradient(to right, #f8fcf5 0%, white 100%);
}

.work-section.reverse {
    direction: rtl;
}

.work-section.reverse > * {
    direction: ltr;
}

.text-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.text-content li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.text-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b9d3e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 4rem 2rem;
    margin: 5rem 0;
    border-radius: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.mission-box h3,
.vision-box h3 {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mission-box p,
.vision-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #c8e6b8;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .logo img {
        height: 60px; /* Smaller logo on mobile */
    }

    .company-intro {
        max-width: 100%;
    }

    nav a {
        margin: 0 1rem;
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .content-grid,
    .work-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .content-grid.reverse,
    .work-section.reverse {
        direction: ltr;
    }

    .page-title h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }
}
