:root {
    --primary-color: #1b69b8;
    /* Royal Blue */
    --accent-color: #926334;
    /* Saffron/Gold */
    --text-dark: #394649;
    --glass: rgba(255, 255, 255, 0.95);
}



body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Top Bar Modern Look */
.top-header {
    background: linear-gradient(90deg, var(--primary-color), #00509e);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}


/*=------------------------------- navbar=-------------------------- */
.navbar-section {
    background: var(--glass);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
    /* border-radius: 50px; */
}

.navbar-brand h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
}

.navbar-brand p {
    font-size: 13px;
    color: var(--accent-color);
    margin: 0;
    font-weight: 600;
}

/* Animated Nav Links */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Action Button for Tax Payment */
.btn-tax {
    /* background: var(--accent-color); */
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    transition: transform 0.3s;
}

.btn-tax:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
    background: #e68a00;
}

/* Hover Dropdown Improvements */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease forwards;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.media-icon {
    transition: transform 0.3s;
    cursor: pointer;
}

.media-icon:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}





.carousel-inner img {
    max-height: 700px;
    width: 100%;
    object-fit: cover;
    animation: zoomInOut 10s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* zoom in */
    }

    100% {
        transform: scale(1);
        /* zoom out */
    }
}


.update-ticker {
    overflow: hidden;
    white-space: nowrap;
    background: #051c33;
    padding: 10px;
    color: white
}

.ticker-content {
    display: inline-block;
    animation: ticker 50s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}





.chairman-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.chairman-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 50%;
}

.chairman-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 5px solid var(--accent-color);
    transition: transform 0.3s ease;
    text-align: center;
}

.chairman-card:hover {
    transform: translateY(-10px);
}

.img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.chairman-details h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chairman-details p {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links a {
    color: #ddd;
    margin: 0 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.message-box {
    padding-left: 40px;
    position: relative;
}

.message-box i.quote-icon {
    font-size: 40px;
    color: rgba(0, 51, 102, 0.1);
    position: absolute;
    top: -10px;
    left: 0;
}

.message-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.message-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.message-content {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.signature-img {
    margin-top: 20px;
    max-width: 150px;
    opacity: 0.8;
}




.about-section {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
}

/* Side Decoration */
.about-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    width: 10px;
    height: 150px;
    background: var(--accent-color);
    border-radius: 0 5px 5px 0;
}

.about-tag {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

/* Features Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 24px;
    color: var(--primary-color);
    background: rgba(0, 51, 102, 0.08);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.service-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.about-img-box {
    position: relative;
    padding: 20px;
}

.about-img-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0px var(--primary-color);
    /* Creative Offset Shadow */
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}



.schemes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f7 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.scheme-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

/* कार्ड के पीछे का डेकोरेटिव सर्कल */
.scheme-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 153, 51, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    transition: 0.5s;
}

.scheme-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
    border-color: var(--accent-color);
}

.scheme-card:hover::before {
    background: var(--accent-color);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0;
    opacity: 0.03;
}

.scheme-card .logo-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.scheme-card:hover .logo-wrapper {
    background: var(--primary-color);
    transform: rotateY(360deg);
}

.scheme-card .logo-wrapper i {
    font-size: 35px;
    color: var(--primary-color);
}

.scheme-card:hover .logo-wrapper i {
    color: #fff;
}

.scheme-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scheme-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.scheme-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.scheme-card:hover .scheme-btn {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}




.officials-section {
    padding: 80px 0;
    background-color: #f8fafd;
}

.official-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: none;
    height: 100%;
    position: relative;
}

.official-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.12);
}

/* टॉप बैकग्राउंड डेकोरेशन */
.card-header-bg {
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), #00509e);
}

/* इमेज फ्रेम */
.official-img-wrapper {
    width: 110px;
    height: 110px;
    margin: -55px auto 15px;
    position: relative;
    z-index: 2;
}

.official-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #eee;
}

.official-info {
    padding: 0 20px 25px;
    text-align: center;
}

.official-role {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(255, 153, 51, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.official-name {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-details {
    text-align: left;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link i {
    color: var(--primary-color);
    font-size: 14px;
}


.dept-section {
    padding: 100px 0;
    background: #ffffff;
}

.dept-card {
    padding: 30px;
    background: #F8FAFD;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.dept-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.2);
}

.dept-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 51, 102, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: 0.3s;
}

.dept-card:hover .dept-icon {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.dept-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: 0.3s;
}

.dept-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: 0.3s;
}

.dept-card:hover h3,
.dept-card:hover p {
    color: #ffffff;
}

.section-title-box {
    max-width: 700px;
    margin: 0 auto 60px;
}



.news-section {
    padding: 80px 0;
    background: #fdfdfd;
}

/* Event Card Style */
.event-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    border-left-color: var(--accent-color);
}

.event-date {
    background: var(--primary-color);
    color: #fff;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.event-date .month-year {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-content {
    padding: 20px;
    flex-grow: 1;
}

.event-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.event-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Right Side News Feed Style */
.news-feed-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);
}

.news-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.news-item:last-child {
    border: none;
    margin: 0;
}

.news-badge {
    font-size: 10px;
    background: var(--accent-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.news-item h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.news-item h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
}

.news-item h5 a:hover {
    color: var(--primary-color);
}

.news-meta {
    font-size: 12px;
    color: #999;
}

/* Grievance Section St:root {
            --primary-color: #094398;
            --accent-color: #ff9933;
            --light-bg: #f0f4f8;
        }

        .grievance-section {
            padding: 80px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        /* Decorative background element */
.grievance-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: rgba(0, 51, 102, 0.03);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.grievance-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.1);
    border-left: 8px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.grievance-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.grievance-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

/* Issue Tags */
.issue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag-item {
    background: #f1f5fb;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e2eaf4;
    transition: 0.3s;
}

.tag-item:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Submit Button */
.btn-grievance {
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: 0.4s;
    box-shadow: 0 8px 15px rgba(9, 67, 152, 0.2);
}

.btn-grievance:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.3);
}

/* Modal Styling */
.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.2);
}

#successMessage {
    display: none;
    /* Hidden by default */
}

.feedback-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 51, 102, 0.02), rgba(0, 51, 102, 0.02)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.contact-info-card {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.2);
}

/* डेकोरेटिव सर्कल */
.contact-info-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 153, 51, 0.2);
    border-radius: 50%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-item i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--accent-color);
}

.feedback-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-control {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.feedback-title {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}



.contact-page-section {
    padding: 100px 0;
    background-color: #fff;
}

/* Contact Details Sidebar */
.contact-details-box {
    padding-right: 30px;
}

.contact-header-tag {
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.contact-main-title {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-desc {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Modern Info Cards */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8fafd;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

.info-card i {
    font-size: 24px;
    color: #fff;
    background: var(--primary-color);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

.info-card h5 {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-card p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Map Styling */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
    border: 8px solid #fff;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
}



/* Footer Styling */
footer {
    background: #002244;
    color: #ffffff;
    padding-top: 80px;
    position: relative;
}

/* Top Accent Line */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff9933, #fff, #ff9933);
}

.footer-title {
    color: #ff9933;
    /* Saffron/Gold */
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Helpline Grid Style */
.helpline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.help-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.help-item:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.help-item span {
    display: block;
    font-size: 11px;
    color: #8a99a6;
    text-transform: uppercase;
}

.help-item:hover span,
.help-item:hover strong {
    color: #fff;
}

.help-item strong {
    font-size: 18px;
    color: #fff;
    display: block;
}

/* Links Style */
.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-links ul li a {
    color: #ccd1d9;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff9933;
    padding-left: 5px;
}

/* Bottom Copyright Bar */
.footer-bottom {
    background: #001a33;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}






.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    /* Primary Color Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--accent-color);
    font-size: 30px;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Modal / Pop-up Styling */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    border-radius: 10px;
    border: 5px solid #fff;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background: var(--accent-color);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* मोबाइल के लिए छोटा साइज */
@media (max-width: 600px) {
    .nav-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
}


.download-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.form-download-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.form-download-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
    border-color: var(--accent-color);
}

.form-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.file-icon {
    width: 55px;
    height: 55px;
    background: rgba(220, 53, 69, 0.1);
    /* Reddish tint for PDF feel */
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

.form-name h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.form-name span {
    font-size: 13px;
    color: #888;
}

.btn-download {
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: none;
}

.btn-download:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(360deg);
}

.btn-all-forms {
    margin-top: 30px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: 0.3s;
}

.btn-all-forms:hover {
    background: var(--primary-color);
    color: #fff;
}

.services-section {
    padding: 80px 0;
    background: #f8fafd;
}

.swiper {
    width: 100%;
    padding: 50px 0 !important;
}

.service-slide-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #eee;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-slide-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-s-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 51, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-slide-card:hover .service-s-icon {
    background: #fff;
    color: var(--primary-color);
}

.service-slide-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-slide-card:hover h3 {
    color: #fff;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.service-slide-card:hover .service-link {
    color: #fff;
}

/* Swiper Navigation Custom Colors */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
