.site-header{
    position:fixed;
    top:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    z-index:999;
}

.header-wrap{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:24px;
    font-weight:700;
    color:#ff6600;
}

.logo img{
    height:40px;
}

.logo p {
    font-size: 15px;
}

.nav{
    display:flex;
    gap:25px;
}

.nav a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    position:relative;
    font-weight: bold;
}

.nav a::after{
    content:"";
    width:0%;
    height:3px;
    background:#ff6600;
    position:absolute;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.nav a:hover::after{
    width:100%;
}

/* .call-btn{
    position: fixed;
    top: 15px;
    right: 20px;
    background: linear-gradient(45deg, #ff6600, #ff9f1a);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255,102,0,0.4);
    z-index: 9999;
    transition: 0.3s ease;
} */

/* .call-btn:hover{
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff9f1a, #ff6600);
} */

.call {
    position: fixed;
    top: 15px;
    right: 20px;
    background: linear-gradient(45deg, #ff6600, #ff9f1a);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255,102,0,0.4);
    z-index: 9999;
    transition: 0.3s ease;
}

.call-btn:hover{
    transform: scale(1.05);
    background: linear-gradient(45deg, #ff9f1a, #ff6600);
}

@media (max-width:600px){
    .call{
        position: fixed;
        top: 10px;
        right: 5px;
        background: linear-gradient(45deg, #ff6600, #ff9f1a);
        color: #fff;
        padding: 2px 5px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 8px;
        box-shadow: 0 8px 20px rgba(255,102,0,0.4);
        z-index: 9999;
        transition: 0.3s ease;
    }
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* Mobile */
@media(max-width:900px){
    .nav{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        text-align:center;
        display:none;
        padding:20px 0;
    }

    .nav a{
        padding:15px;
        display:block;
    }

    .nav.active{
        display:flex;
    }

    .menu-btn{
        display:block;
    }

    .call-btn{
        display:none;
    }
}

/* Dropdown Container */
.dropdown{
    position: relative;
}

/* Dropdown Box */
.dropdown-content{
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

/* Show dropdown */
.dropdown.show .dropdown-content{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown-content a{
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.dropdown-content a:hover{
    background: #ff7a18;
    color: white;
}

:root{
    --p1:#ff7a18;
    --p2:#ffb347;
    --bg:#f4f7fb;
    --glass:rgba(255,255,255,0.8);
}

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#eef2f7,#ffffff);
    color:#222;
}

.about-hero{
    height:70vh;
    background: url("Images/gpheading.jpg ");
    background-size: 120%;
    background-position: 0% 50%;
    animation: bgMove 20s linear infinite;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    margin-top:40px;
}

/* Dark overlay */
.about-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

/* Text */
.about-hero h1{
    position:relative;
    color:white;
    font-size:50px;
    z-index:2;
}

/* Animation */
@keyframes bgMove{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

/* ===============================
   TABLET & MOBILE
================================ */
@media (max-width: 768px){

    .about-hero{
        height:40vh;
        background-size:cover;   /* prevent crop */
        background-position:center;
        animation:none;         /* smooth on mobile */
    }

    .about-hero h1{
        font-size:28px;
        padding:0px 15px;
        line-height:1.3;
        margin-top: 40px;
    }
}

/* ===============================
   SMALL PHONES
================================ */
@media (max-width: 480px){

    .about-hero{
        height:35vh;
    }

    .about-hero h1{
        font-size:22px;
    }
}

/* Main Section */
.about-section{
    max-width:1200px;
    margin:auto;
    padding:0px 20px;
    margin-top: 20px;
}

/* Cards */
.about-grid{
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:40px;
    margin-top: -50px;
}

.about-card{
    background:var(--glass);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.3);
    animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{opacity:0; transform:translateY(40px);}
    to{opacity:1; transform:translateY(0);}
}

.about-card h2{
    background:linear-gradient(45deg,var(--p1),var(--p2));
    background-clip: text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:20px;
}

.about-card p{
    line-height:1.8;
    font-size:16px;
}

/* Highlights */
.highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
}

.highlight-box{
    background:white;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
    transition:.4s;
}

.highlight-box:hover{
    transform:translateY(-10px);
}

.highlight-box i{
    font-size:40px;
    color:var(--p1);
    margin-bottom:15px;
}

/* Mobile */
@media(max-width:900px){
    .about-grid{
        grid-template-columns:1fr;
    }
    .highlights{
        grid-template-columns:1fr 1fr;
    }
} 

/* Section title */
.section-title h2{
    font-size:32px;
    text-align:center;
    margin:50px 0 30px;
    background:linear-gradient(45deg,#ff7a18,#ffb347);
    background-clip: text;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title h2::after{
    content:"";
    width:10%;
    height:4px;
    background:linear-gradient(90deg,#ff9f43,#ff6b6b);
    display:block;
    margin:10px auto;
    border-radius:20px;
}

h2 {
    text-align: center;
    margin-top: 60px;
    color: #ff7a18;
}

/* Info Section */
.info-section{
    max-width:1000px;
    margin:40px auto;
    background:rgba(255,255,255,0.9);
    border-radius:25px;
    padding:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.info-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
}

.info-table th{
    background:linear-gradient(45deg,#ff7a18,#ffb347);
    color:white;
    padding:15px;
    text-align:left;
}

.info-table td{
    padding:15px;
    background:white;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.info-table tr:hover td{
    background:#fff4e6;
}

/* About Container */
.about-container{
    max-width:1100px;
    margin:auto;
    margin-top: 20px;
}

/* Vision Box */
.vision-box{
    background:linear-gradient(135deg,#fff3e6,#ffffff);
    border-radius:25px;
    padding:35px;
    margin:40px 0;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
    animation:fadeUp 1s ease forwards;
}

.vision-box h3{
    color:#ff7a18;
    margin-bottom:15px;
}

.vision-box ul li{
    margin:12px 0;
}

/* Content Boxes */
.content-box{
    background:white;
    border-radius:25px;
    padding:35px;
    margin:40px 0;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
    transition:.4s;
}

.content-box:hover{
    transform:translateY(-8px);
}

/* Sarpanch Box */
.sarpanch-box{
    background:linear-gradient(45deg,#ff7a18,#ffb347);
    color:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.2);
    margin:50px 0;
}

.sarpanch-box h3{
    margin-bottom:15px;
}

.sarpanch-box p{
    line-height:1.8;
}

/* Mobile */
@media(max-width:768px){
    .info-table th,.info-table td{
        font-size:14px;
    }
    .content-box,.vision-box,.sarpanch-box{
        padding:25px;
    }
}


.site-footer{
    background:#111;
    color:white;
    padding:60px 20px 20px;
}

.footer-wrap{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-box h3{
    color:#ff6600;
    margin-bottom:15px;
}

.footer-box a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-box a:hover{
    color:#ff6600;
}

.footer-bottom{
    text-align:center;
    padding-top:30px;
    margin-top:40px;
    border-top:1px solid #333;
    font-size:14px;
}

/* Mobile */
@media(max-width:768px){
    .footer-wrap{
        grid-template-columns:1fr;
        text-align:center;
    }
}