/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

/* h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
} */

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}



/* Hero Section */
.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-button {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.key-stats {
    padding: 100px 0;
    background-color: white;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.stat-card p {
    color: #777;
    font-size: 1rem;
}

/* History Section */
.history {
    background-color: var(--bg-light);
}

.history-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.history-text, .history-image {
    flex: 1;
    min-width: 300px;
}

.history-text h2 {
    text-align: left;
}

.history-text h2::after {
    left: 0;
    transform: none;
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.history-image img:hover {
    transform: scale(1.03);
}

/* 

/* Economy Section */
.economy {
    background-color: var(--bg-light);
}

.economy-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.economy-card {
    width: calc(25% - 30px);
    min-width: 220px;
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.economy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.economy-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.economy-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.submit-btn {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #2980b9;
}

.contact-info {
    background-color: var(--dark-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        align-items: center;
        padding: 80px 0 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        top: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .history-content, .geography-content {
        flex-direction: column;
    }
    
    .history-image {
        order: -1;
    }
    
    .history-text h2, .geography-text h2 {
        text-align: center;
    }
    
    .history-text h2::after, .geography-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .economy-card {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 576px) {
    .stat-card {
        width: 100%;
    }
    
    .economy-card {
        width: 100%;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


h1 {
    font-size: 24px;
    font-weight: 600;
}

.dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .dashboard {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    background-color: var(--light-bg);
    transition: background-color 0.2s ease;
}

.stat-item:hover {
    background-color: rgba(14, 165, 233, 0.1);
}

.stat-label {
    font-weight: 500;
}

.stat-value {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

.chart-container {
    height: 300px;
    position: relative;
}

.gender-distribution {
    display: flex;
    justify-content: space-around;
    margin-top: 24px;
}

.gender-stat {
    text-align: center;
    padding: 16px;
    flex: 1;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 20px;
}

.gender-stat.male {
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--primary-color);
}

.gender-stat.female {
    background-color: rgba(236, 72, 153, 0.2);
    color: #be185d;
}

.gender-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.gender-value {
    font-size: 24px;
    font-weight: 600;
}

.gender-percent {
    font-size: 14px;
    margin-top: 4px;
    opacity: 0.8;
}

.progress-bar {
    height: 8px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.male .progress-fill {
    background-color: var(--secondary-color);
    width: 0;
}

.female .progress-fill {
    background-color: #ec4899;
    width: 0;
}

.summary-card {
    grid-column: 1 / -1;
}

.summary-text {
    line-height: 1.6;
    color: var(--text-light);
}

.highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.footer {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gender-distribution {
        flex-direction: column;
        gap: 16px;
    }
    
    .card {
        padding: 16px;
    }
}