* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    min-height: 100vh;
    color: #2d3748;
}

/* Navigation Styles */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #f6d365;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568;
}

.dropdown-menu a:hover {
    background: #f6d365;
    color: #2d3748;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/village-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.welcome-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-info {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Container and Content Styles */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
}

.welcome-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
}

.village-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #718096;
    font-size: 0.95rem;
}

.village-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

.cta-button {
    background: #f6d365;
    color: #2d3748;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(246, 211, 101, 0.2);
    font-weight: 500;
}

.cta-button:hover {
    background: #fda085;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(253, 160, 133, 0.3);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .welcome-content {
        padding: 2rem;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }

    .village-stats {
        gap: 2rem;
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: #fff;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    position: relative;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #f6d365;
    margin: 1rem auto;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2.5rem;
    color: #f6d365;
    margin-bottom: 1rem;
}

/* Quick Help Section */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.help-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.help-card ul {
    list-style: none;
    padding: 0;
}

.help-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
}

.help-card li:last-child {
    border-bottom: none;
}

/* Government Section */
.subsection {
    margin-bottom: 4rem;
}

.subsection h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.officials-grid,
.boards-grid,
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.official-card,
.board-card,
.sponsor-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Agriculture Section */
.crops-grid,
.schemes-grid,
.markets-grid,
.irrigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.crop-card,
.scheme-card,
.market-card,
.irrigation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.crop-card h4,
.scheme-card h4,
.market-card h4,
.irrigation-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 3rem 0;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .subsection h3 {
        font-size: 1.5rem;
    }
}

/* BTPS Section Styles */
.btps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.btps-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.btps-card i {
    font-size: 2.5rem;
    color: #f6d365;
    margin-bottom: 1rem;
}

.btps-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Jobs Section */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.job-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.job-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.job-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
}

.job-card li:last-child {
    border-bottom: none;
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.impact-card i {
    font-size: 2.5rem;
    color: #f6d365;
    margin-bottom: 1rem;
}

.impact-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Development Section */
.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.development-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.development-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Responsive Design for BTPS Section */
@media (max-width: 768px) {
    .btps-grid,
    .jobs-grid,
    .impact-grid,
    .development-grid {
        grid-template-columns: 1fr;
    }

    .btps-card,
    .job-card,
    .impact-card,
    .development-card {
        padding: 1.5rem;
    }
} 