@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* =========================
   GLOBAL RESET
========================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #1a1a1b;
    line-height: 1.6;
}

/* =========================
   ROOT VARIABLES
========================= */
:root{
    --primary-orange: #ff7a18;
    --orange-hover: #e66a12;
    --primary-light: #fff4ea;
    --text-main: #1a1a1b;
    --text-muted: #4b5563;
    --white: #ffffff;
    --radius: 20px;
}


.stat-box {
    height: 200px;
}

.stat-box .box-img{
    height: 150px;
    border-radius: 20px;
}

.stat-box .village-img{
    border-radius: 20px;
}

.about-content p{
    text-align: justify;
}



/* =========================
   VILLAGE SECTION
========================= */
.village-section{
    padding: 70px 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.village-section h2{
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
}

/* =========================
   TABLE DESIGN
========================= */
.village-section table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.village-section th{
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-hover));
    color: #fff;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.village-section td{
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--primary-light);
    transition: background 0.3s ease;
}

.village-section tr:nth-child(even) td{
    background: var(--primary-light);
}

.village-section tr:hover td{
    background: #ffe5cf;
}

/* Links */
.village-section td a{
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.village-section td a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.village-section td a:hover::after{
    width: 100%;
}

/* Rounded corners */
.village-section tr:first-child th:first-child{
    border-top-left-radius: var(--radius);
}
.village-section tr:first-child th:last-child{
    border-top-right-radius: var(--radius);
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1024px){
    .about-grid{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content{
        text-align: center;
    }

    .about-content p{
        text-align: left;
    }

    .about-content h2{
        font-size: 34px;
    }
}

@media (max-width: 768px){
    .village-section h2{
        font-size: 22px;
    }

    .village-section td,
    .village-section th{
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 480px){
    .about-hansi-section{
        padding: 60px 0;
    }
}
