/* ---------------- TOP BAR ---------------- */
.top-bar {
    background:lightgray;
    color: #960718;
    padding: 5px 0;
    font-size: 14px;
}
.top-bar a {
    color: #960718;
    text-decoration: none;
}
.top-bar i {
    margin-right: 4px;
    
}
 
        .search-box {
            width: 150px;
        }
/* ---------------- HEADER AREA ---------------- */
.header-area {
    padding: 20px 0;
}
.header-area img {
    height: 80px;
}
.gp-title {
    font-weight: 700;
    color: #960718;
    margin-bottom: 5px;
}
.gp-subtitle {
    font-size: 18px;
    color: #555;
}

/* ---------------- NAVBAR ---------------- */
.custom-nav {
    background: #960718;
    padding: 0;
}
.custom-nav .nav-link {
    color: white !important;
    padding: 12px 18px !important;
    font-weight: 500;
    font-size: 16px;
}
.custom-nav .nav-link:hover {
    background: white;
    color: #960718 !important;
}
.navbar-toggler i {
    color: white;
    font-size: 22px;
}

/* ---------------- BANNER ---------------- */
.banner {
    width: 100%;
    height: 500px;
    /* Correct path */
    background-size: cover;
    background-position: center;
    margin: 0;
    position: relative;
}

.banner-title {
    font-size: 50px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    position: absolute; /* Important for centering */
    top: 50%;           /* Vertical center */
    left: 50%;          /* Horizontal center */
    transform: translate(-50%, -50%); /* Shift to exact center */
    text-align: center;
    z-index: 2;
}


/* ---------------- SECTION TITLES ---------------- */
.section-title {
    font-weight: 700;
    color: #960718;
}

/* ---------------- MINISTER CARDS ---------------- */
.minister-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.minister-card:hover {
    transform: translateY(-5px);
}
.minister-photo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}
.name {
    font-size: 17px;
    font-weight: bold;
}
.designation {
    font-size: 14px;
    color: #555;
}

/* ---------------- INFO SECTION ---------------- */
.info-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

/* ---------------- INFO CARDS ---------------- */
.info-card {
    background: rgb(41, 155, 161);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}
.info-icon {
    font-size: 40px;
    color: #960718;
}
.info-number {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
}
.info-text {
    color: #444;
    margin: 0;
}

/* ---------------- TEMPLES SECTION ---------------- */
.temple-card {
    transition: 0.3s;
    border-radius: 10px;
    padding: 20px;
}
.temple-card:hover {
    transform: scale(1.05);
}
.temple-img {
    height: 180px;
    object-fit: cover;
}
.text-maroon {
    color: #2b9b98;
}

/* ---------------- SERVICES SECTION ---------------- */
.services-section {
    background: #fff;
    padding: 60px 0;
}
.services-section h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    color: #960718;
}
.services-section .description {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}
.service-card {
    padding: 50px;
    background: rgb(242, 234, 234);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin-bottom: 50px;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card h5 {
    color: #960718;
    font-weight: bold;
}
.service-card small {
    color: #777;
}
.service-card p {
    color: #444;
    font-size: 14px;
}

/* ---------------- YOJANA ---------------- */
.scheme-card {
    background: #e18484;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}
.scheme-title {
    color: #960718;
    font-size: 20px;
    font-weight: bold;
}
.scheme-desc {
    color: #555;
    font-size: 15px;
    margin: 10px 0;
}
.scheme-amount {
    font-weight: bold;
    color: #960718;
}




/*------------------------------About Start here---------------------*/
/* About Section Styles */
.about-section {
    background-color: #f8f9fa;
    padding: 60px 0; /* extra padding for top and bottom */
}

.about-section .section-title {
    color: #960718;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 4px;
}

.about-section .section-divider {
    border: none; /* remove default hr border */
    height: 3px; /* thickness of line */
    background-color: #960718; /* line color */
    width: 100%; /* full width */
    margin: 4px 0 10px 0; /* spacing above and below */
}

.about-section .about-list {
    color: #333;
    font-size: 17px;
    line-height: 2;
    padding-left: 20px; /* space for bullet indentation */
}

.about-section .about-list li {
    margin-bottom: 10px; /* spacing between list items */
    list-style-type: disc; /* show bullet points */
}
/* IMAGE STYLING */
.about-section .about-img {
    width: 100% ;       /* Set the width you want */
    height: 400px !important;    /* Fixed height */
    object-fit: cover;
    max-width: 800px;
    border-radius: 50%;
    border: 4px solid #f2f2f2;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
    margin-bottom: 0rem;
}

/* Mobile */
@media (max-width: 576px) {
    .about-section .about-img {
        width: 100% !important;
        height: 200px !important;
        max-width: 100%;
    }
}

.img-fluid { width: 100% !important; height: auto !important; }
/* Initial state */
.animate-top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease;
}

/* When visible */
.show-top {
    opacity: 1;
    transform: translateY(0);
}



/* Full-width divider for entire page */

/*----------------------------Contact--------------------------------*/
.contact-card {
    border-radius: 15px;
    background: #f4f4f4;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fbe5ed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teal {
    background: #d1f4f3 !important;
}

.icon-wrapper i {
    font-size: 50px;
    color: #960718;
}

.teal i {
    color: #00b3b3 !important;
}

  .form-box {
            max-width: 650px; /* box size */
            background: #e8d8d8;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0px 0px 25px rgba(0,0,0,0.1);
            margin-top: 40px;
        }
        .btn-custom {
            background-color: #960718;
            color: #fff;
        }
        .btn-custom:hover {
            background-color: #7e0514;
        }
/*---------------------------form-*/
.map-container {
    width: 100%;
    height: 600px;       /* adjust height as needed */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*------------------------Ends----------------------------------------*/
.nav-link[href="news.html"] {
    display: none;
}
.nav-link[href="services.html"] {
    display: none;
}
/*-------------------------------------------Yojana--------------------------------------*/
/* TITLE */
.main-title {
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-top: -5px;
}

/* CARD DESIGN */
.yojana-card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 40px;
      margin-bottom: 25px; 
}

.yojana-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.yojana-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;

    background: #f5f5f5;
}

.yojana-title {
    font-size: 18px;
    font-weight: bold;
}

.yojana-sub {
    font-size: 14px;
    color: #666;
    margin-top: -4px;
}

.yojana-text {
    font-size: 15px;
    color: #444;
    text-align: justify;   /* 👈 text equal alignment */
}
/*---------------------------ends------------------------------------*/
/*------------------------about grampanchayat-------------------------------*/
/* Image Box */

/* Square rounded image */


/* Overlay background + text */
.info-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: 10px;
}



 .info-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .info-image {
       
        height: 200px;
    }}
    .info-title {
    font-size: २ rem;

}
.officer-card {
    background: #eaf7e9;
    border: 3px solid #0d7c0a;
    border-radius: 25px;
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 420px;
}
.img-box {
    width: 100%;
    height: 230px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;        /* Keeps image inside */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;       /* Fully covers the box */
    display: block;
}


.officer-name {
    font-size: 20px;
    font-weight: bold;
    color: #064b04;
}

.officer-post {
    font-size: 17px;
    color: #064b04;
    margin-bottom: 5px;
}

.officer-mobile {
    font-size: 17px;
    font-weight: bold;
    color: #000;
}

.officer-mobile span {
    color: #000000;
}

.text-orange {
    color: #0a0908 !important;
}

.p-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    width: 400px;
}

.p-card:hover {
    transform: translateY(-8px);
}

.p-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #143c7c;
}

/* Animation Initial State */
.animate-left, .animate-right {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

/* When visible */
.show {
    opacity: 1;
    transform: translateX(0);
}


/*-------------------------Footer------------------*/
/* SECTION BACKGROUND */
.village-zone {
    background: #efcacd;
    color: #000;
}

/* TITLES */
.vz-title {
    font-size: 28px;
    font-weight: 700;
}

.vz-subtitle {
    font-size: 17px;
    opacity: 0.9;
}

/* HEADINGS */
.vz-heading {
    font-size: 20px;
    font-weight: 700;
}

/* LINKS */
.vz-links li {
    font-size: 15px;
    opacity: 0.9;
    cursor: pointer;
    transition: 0.3s;
}

.vz-links li i {
    margin-right: 6px;
}

.vz-links li:hover {
    opacity: 1;
    margin-left: 5px;
}

/* CONTACT */
.vz-contact i {
    margin-right: 6px;
}
.footer {
    background: #ffa5a5;   /* green */
    color: #000000;
    font-size: 15px;
    width: 100%;
    font-weight: 500;
}
/* Remove all default browser spacing */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Remove spacing from all sections */
section, div, nav, header, footer {
    margin: 0;
    padding: 0;
}
