/* -----------------------------------------
   BASE RESET + GLOBAL
------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fb;
    color: #0D2A4D;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
}

/* -----------------------------------------
   TOPBAR – CLEAN GOVT STYLE
------------------------------------------ */
.topbar-gov {
    background: #ffffff;
    border-bottom: 1px solid #e2e7ec;
    padding: 6px 0;
    font-size: 13px;
}

.topbar-gov a {
    color: #0D2A4D;
    font-weight: 500;
    margin-right: 18px;
}

.topbar-gov a i {
    color: #1669C1;
    margin-right: 5px;
}

.topbar-gov select {
    background: #f5f7fa;
    border: 1px solid #cdd6df;
    padding: 4px 8px;
    border-radius: 4px;
}

/* -----------------------------------------
   NAVBAR – GOVT MODERN
------------------------------------------ */
.navbar-gov {
    background: #0D2A4D;
    padding: 10px 0;
}

.navbar-brand img {
    height: 65px;
    background: #ffffff;
    border-radius: 50%;
}

.navbar-brand-text {
    color: #fff;
    line-height: 1.1;
}

.navbar-brand-text strong {
    color: #F4C542;
    font-size: 17px;
    font-weight: 700;
}

.navbar-gov .nav-link {
    color: #dce8f4 !important;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s;
    white-space: nowrap;
}

.navbar-gov .nav-link:hover {
    background: #17457A;
    color: #fff !important;
}

.navbar-nav {
    gap: 5px;
}

/* DROPDOWN */
.navbar-gov .dropdown-menu {
    background: #113762;
    border: none;
}

.navbar-gov .dropdown-item {
    color: #e8f4ff;
}

.navbar-gov .dropdown-item:hover {
    background: #17457A;
    color: #fff;
}

/* RESPONSIVE NAV */
@media (max-width: 1200px) {
    .navbar-gov .nav-link {
        font-size: 14px;
        padding: 7px 10px;
    }
}

@media (max-width: 992px) {
    .navbar-brand img {
        height: 55px;
    }
    .navbar-brand-text strong {
        font-size: 16px;
    }
}

/* -----------------------------------------
   CAROUSEL
------------------------------------------ */
.carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
    }
}

/* =========================================
   NEWS TICKER – PREMIUM GOVT STYLE
========================================= */
.news-ticker {
    background: #0D2A4D;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #F4C542;
}

.news-heading {
    background: #113762;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.news-heading i {
    color: #F4C542;
    margin-right: 8px;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    margin-left: 15px;
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 22s linear infinite;
}

@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-item {
    display: inline-block;
    margin-right: 60px;
    color: #e4f1ff;
    font-size: 14px;
    font-weight: 500;
}

.ticker-item:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.badge-new { background: #F04A48; }
.badge-update { background: #28A745; }
.badge-info { background: #F4C542; color: #000; }
.badge-alert { background: #D62828; }

/* Responsive */
@media(max-width: 768px){
    .news-heading { font-size: 14px; }
    .ticker-item { font-size: 13px; margin-right: 40px; }
}


/* =========================================
   CHAIRMAN SECTION – PREMIUM DESIGN
========================================= */
.chairman-section {
    background: #f4f6fa;
    padding: 70px 0;
    position: relative;
}

.chairman-section::before,
.chairman-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #0d2a4d22;
    border-radius: 50%;
    filter: blur(40px);
}

.chairman-section::before { top: -40px; left: -40px; }
.chairman-section::after { bottom: -40px; right: -40px; }

/* LEFT PROFILE */
.profile-badge {
    background: #0D2A4D;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.profile-badge img {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 5px solid #F4C542;
    background: #fff;
    margin: auto;
}

.profile-badge h4 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #F4C542;
}

.profile-badge p {
    opacity: 0.8;
    font-size: 14px;
}

/* RIGHT MESSAGE */
.message-modern {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    border-left: 6px solid #F4C542;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    position: relative;
}

.message-modern h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0D2A4D;
    margin-bottom: 20px;
}

.message-modern p {
    font-size: 15px;
    line-height: 1.7;
    color: #384454;
}

/* Responsive */
@media(max-width: 768px){
    .profile-badge { margin-bottom: 25px; }
    .message-modern { padding: 25px; }
}


/* =========================================
   ABOUT SECTION – ELITE PREMIUM STYLE
========================================= */
.about-elite {
    background: #f5f7fb;
    padding: 90px 0;
}

.about-heading {
    text-align: center;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    position: relative;
}

.about-heading h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #F4C542;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.about-icon-box {
    text-align: center;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.about-icon-box .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0D2A4D;
    color: #F4C542;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    margin: auto;
    max-width: 900px;
    border-top: 5px solid #0D2A4D;
    box-shadow: 0 15px 45px rgba(0,0,0,0.10);
}

.about-content-box p {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-tag {
    margin-top: 18px;
    color: #0D2A4D;
    font-weight: 600;
}

@media(max-width: 768px){
    .about-icons-row {
        gap: 20px;
        flex-wrap: wrap;
    }
}


/* =========================================
   DEPARTMENTS SECTION — PREMIUM
========================================= */
.departments-section {
    background: #f4f6fb;
    padding: 80px 0;
}

.departments-section h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
}

.departments-section p {
    color: #445066;
    font-size: 15px;
}

/* CARDS */
.dept-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 18px;
    border-top: 5px solid #F4C542;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 180px;
}

.dept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 16px;
    background: #0D2A4D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 100%;
}

.dept-text h5 {
    font-size: 20px;
    font-weight: 700;
    color: #0D2A4D;
}

.dept-text p {
    font-size: 14px;
    color: #576276;
}

/* Mobile */
@media (max-width: 576px) {
    .dept-card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }
}


/* =========================================
   SERVICES SECTION — PREMIUM MODERN
========================================= */
.services-modern {
    background: #f4f7fb;
    padding: 80px 0;
    position: relative;
}

.services-modern::before,
.services-modern::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.services-modern::before {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -60px;
    background: #0d2a4d30;
}

.services-modern::after {
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -60px;
    background: #f4c54250;
}

.services-modern h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
}

.services-modern p {
    color: #4d5566;
}

/* SERVICE CARD */
.service-card-modern {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    border-top: 5px solid #F4C542;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: #0D2A4D;
    border-radius: 16px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.service-card-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0D2A4D;
    margin-bottom: 6px;
}

.service-card-modern a {
    color: #0D2A4D;
    font-weight: 600;
}

.service-card-modern a:hover {
    color: #F4C542;
}


/* =========================================
   PUBLIC GRIEVANCE — PREMIUM
========================================= */
.public-grievance-new {
    background: #f5f7fb;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.public-grievance-new::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #0d2a4d20;
    border-radius: 50%;
    filter: blur(80px);
    top: -60px;
    left: -40px;
}

.public-grievance-new::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #F4C54230;
    border-radius: 50%;
    filter: blur(80px);
    bottom: -60px;
    right: -40px;
}

.grievance-info-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 25px;
    border-left: 6px solid #0D2A4D;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.grievance-info-card h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    margin-bottom: 15px;
    position: relative;
}

.grievance-info-card h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #F4C542;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.grievance-info-card p {
    font-size: 16px;
    color: #3d4a5c;
    line-height: 1.7;
    text-align: justify;
}

/* SUBMIT BUTTON */
.btn-gold-gradient {
    padding: 14px 32px;
    font-weight: 700;
    color: #fff;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #0D2A4D, #174f80);
}

.btn-gold-gradient:hover {
    transform: translateY(-4px);
}

/* RIGHT BANNER */
.grievance-modern-banner {
    position: relative;
    border-radius: 25px;
    height: 430px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.grievance-modern-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.grievance-modern-banner:hover img {
    transform: scale(1.08);
}

.grievance-modern-banner::after {
    content: "Grievance";
    position: absolute;
    right: 0;
    top: 0;
    writing-mode: vertical-lr;
    color: #fff;
    font-weight: 800;
    background: #0D2A4D;
    padding: 18px 10px;
    border-bottom-left-radius: 18px;
    font-size: 28px;
    letter-spacing: 3px;
}

@media(max-width: 992px){
    .grievance-modern-banner { height: 300px; }
    .grievance-info-card { padding: 30px; }
}


/* =========================================
   YOJANA SECTION V2
========================================= */
.yojv2-section {
    background: linear-gradient(135deg, #f4f7fc, #eef2f8);
    padding: 80px 0;
    position: relative;
}

.yojv2-section::before,
.yojv2-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
}

.yojv2-section::before {
    width: 260px;
    height: 260px;
    background: #004c8f33;
    top: -50px;
    left: -50px;
}

.yojv2-section::after {
    width: 300px;
    height: 300px;
    background: #ffaa0033;
    bottom: -60px;
    right: -60px;
}

.yojv2-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    position: relative;
}

.yojv2-heading::after {
    content: "";
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #003b7a, #ffb347);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

/* CARD */
.yojv2-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 18px;
    border-top: 6px solid #F4C542;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.yojv2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.yojv2-icon {
    width: 85px;
    height: 85px;
    border-radius: 20px;
    background: linear-gradient(135deg, #003b7a, #0066c7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
}

.yojv2-card h5 {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.yojv2-card p {
    font-size: 14px;
    color: #556070;
}

.yojv2-btn {
    margin-top: 12px;
    display: inline-block;
    padding: 9px 20px;
    background: linear-gradient(to right, #ff7d4d, #ffca6f);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

.yojv2-btn:hover {
    transform: translateY(-3px);
}


/* =========================================
   PREMIUM GALLERY — STYLE V3
========================================= */
.galleryX-section {
    background: #f4f7fb;
    padding: 70px 0;
    position: relative;
}

.galleryX-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    position: relative;
    display: inline-block;
}

.galleryX-heading::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #F4C542;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.galleryX-subtitle {
    font-size: 15px;
    color: #56606e;
}

/* Gallery Item */
.galleryX-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 260px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.galleryX-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.galleryX-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.galleryX-item:hover img {
    transform: scale(1.12);
}

.galleryX-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,42,77,0.65), rgba(13,42,77,0.30));
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
}

.galleryX-item:hover .galleryX-overlay {
    opacity: 1;
}

.galleryX-overlay i {
    font-size: 2.2rem;
    color: #fff;
    padding: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(6px);
}

/* Modal */
.galleryX-modal {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.galleryX-full-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


/* =========================================
   EVENTS SECTION — PREMIUM DESIGN
========================================= */
.events-pro {
    background: #f4f7fc;
    padding: 70px 0;
}

.events-title {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    position: relative;
}

.events-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #F4C542;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* FEATURED Big Event */
.event-feature {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.event-feature-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.event-feature-content {
    position: absolute;
    bottom: 0;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

.event-date {
    background: #0D2A4D;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.event-feature-content h3 {
    font-size: 26px;
    font-weight: 700;
}

/* Vertical Small Events */
.event-vertical {
    background: #fff;
    display: flex;
    gap: 15px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.event-vertical img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

.event-date-sm {
    background: #0D2A4D;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Grid Events */
.event-grid {
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.event-grid img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.event-grid-body {
    padding: 12px;
}

.event-grid-body h5 {
    color: #0D2A4D;
    font-weight: 600;
}


/* =========================================
   STAFF DIRECTORY — PREMIUM SLIDER STYLE
========================================= */
.staff-section {
    padding: 70px 0;
}

.staff-section h2 .underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    display: block;
    margin: auto;
    margin-top: 5px;
    animation: slideW 2s infinite alternate;
}

@keyframes slideW {
    from { width: 40px; }
    to { width: 100px; }
}

.staff-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 260px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.staff-top {
    background: #eef3f9;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.staff-top img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: 0.3s;
}

.staff-card:hover .staff-top img {
    transform: scale(1.08);
}

.staff-info {
    text-align: center;
    padding: 12px 10px 20px;
}

.staff-info h5 {
    font-weight: 700;
    color: #003f7f;
}

.staff-info p {
    color: #666;
    margin: 0;
}

/* Sliding bottom info */
.staff-slide {
    position: absolute;
    left: 0;
    bottom: -120px;
    width: 100%;
    padding: 15px;
    background: #003f7f;
    color: #fff;
    text-align: center;
    transition: 0.35s ease;
}

.staff-slide p {
    margin: 3px 0;
    font-size: 0.9rem;
}

.staff-card:hover .staff-slide {
    bottom: 0;
}


/* =========================================
   DOWNLOAD SECTION — PREMIUM GOVT UI
========================================= */
.download-section {
    background: #f4f7fb;
    padding: 80px 0;
}

/* Card Base */
.form-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.10);
    transition: .35s ease;
    backdrop-filter: blur(8px);
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Icon with ring */
.icon-ring {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg,#0d2a4d,#f4c542);
    padding: 4px;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.icon-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-inner i {
    font-size: 42px;
    color: #0d2a4d;
}

.form-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0d2a4d;
}

/* Slide-up bottom panel */
.download-panel {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    background: #0d2a4d;
    padding: 12px 0;
    transition: .35s ease;
}

.form-card:hover .download-panel {
    bottom: 0;
}

.download-panel a {
    color: #f4c542;
    font-weight: 600;
    text-decoration: none;
}

.download-panel a i {
    margin-right: 6px;
}


/* =========================================
   FEEDBACK FORM — PREMIUM DESIGN
========================================= */
.feedback-premium {
    background: linear-gradient(135deg, #eef3ff, #f6faff);
    padding: 70px 0;
}

.feedback-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeUp 0.7s ease;
}

.top-strip {
    height: 6px;
    background: linear-gradient(90deg, #0D2A4D, #F4C542);
}

#feedback h2 {
    font-size: 28px;
    color: #0D2A4D;
}

/* Inputs */
.modern-input {
    background: #f8faff;
    border: 1px solid #d7dbe6;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.modern-input:focus {
    border-color: #0D2A4D;
    box-shadow: 0 0 8px rgba(13,42,77,0.25);
}

/* Submit */
.send-btn {
    background: linear-gradient(135deg, #0D2A4D, #174f80);
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(13,42,77,0.2);
}

.send-btn:hover {
    transform: translateY(-3px);
}

/* Feedback Right image */
.feedback-image-card {
    background: #fff;
    border-radius: 20px;
    animation: fadeRight 0.8s ease;
}

.feedback-image-card img {
    height: 290px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}


/* =========================================
   CONTACT SECTION — PREMIUM MODERN
========================================= */
.contact-section-new {
    background: linear-gradient(135deg, #eef2f7, #f9fbff);
    padding: 80px 0;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0D2A4D;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #F4C542;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-sub {
    color: #6c7a90;
}

/* Contact cards */
.contact-card-new {
    padding: 22px 25px;
    display: flex;
    gap: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(14px);
    transition: 0.35s;
    align-items: center;
}

.contact-card-new:hover {
    transform: translateY(-6px);
}

/* Icons */
.icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #fff;
}

.bg-blue { background: linear-gradient(135deg, #0056d6, #3e8bfd); }
.bg-green { background: linear-gradient(135deg, #1e9d4c, #42d77d); }
.bg-gold { background: linear-gradient(135deg, #f0a500, #ffcb4c); }

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 380px;
    border: none;
}




/* Wrapper */
.tax-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-left: 5px solid #ff8800;
}

/* Title */
.tax-title {
    font-size: 20px;
    font-weight: 700;
    color: #0D2A4D;
    margin-bottom: 20px;
}

/* Tabs */
.tax-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* MOBILE SAFE */
}

.tax-tab {
    padding: 10px 18px;
    background: #f7f7f7;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    color: #444;
    transition: 0.3s;
}

.tax-tab.active {
    background: #ff8800;
    color: white;
    border-color: #ff8800;
}

/* Form boxes */
.tax-form {
    background: #fff7ee;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #ffe1c4;
}

/* Buttons */
.btn-tax {
    width: 150px;
    font-weight: 600;
}

.btn-search {
    background: #ff8800;
    color: white;
}
.btn-search:hover {
    background: #e67300;
}

.btn-reset {
    background: #333;
    color: white;
}
.btn-reset:hover {
    background: #111;
}

/* Table */
.tax-table {
    margin-top: 15px;
}

.tax-table th {
    background: #0D2A4D;
    color: #fff;
    font-weight: 600;
}

.tax-table td {
    background: #f9f9f9;
    font-size: 14px;
}

/* MOBILE FIX — Tabs column */
@media(max-width: 600px){
    .tax-tabs {
        flex-direction: column;
    }
    .btn-tax { width: 100%; }
}


/* =========================================
   FOOTER — PREMIUM GOVT STYLE
========================================= */
.footer-gov {
    background: #0D2A4D;
    color: #dce8f7;
    padding: 60px 0 25px;
    position: relative;
}

.footer-gov::before {
    content: "";
    width: 250px;
    height: 250px;
    background: #F4C542;
    position: absolute;
    top: -40px;
    left: -40px;
    border-radius: 50%;
    opacity: .2;
    filter: blur(80px);
}

.footer-gov::after {
    content: "";
    width: 300px;
    height: 300px;
    background: #1a3c70;
    position: absolute;
    bottom: 0;
    right: -30px;
    border-radius: 50%;
    opacity: .2;
    filter: blur(50px);
}

/* Footer titles */
.footer-title {
    color: #F4C542;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    margin-bottom: 18px;
}

.footer-title::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #F4C542;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

/* Lists */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-list li i {
    color: #F4C542;
    margin-right: 8px;
}

.footer-list li a {
    color: #dce8f7;
    text-decoration: none;
}

.footer-list li a:hover {
    padding-left: 6px;
    color: #F4C542;
    transition: 0.3s;
}

/* Social Icons */
.footer-social a {
    width: 38px;
    height: 38px;
    background: #113862;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 6px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #F4C542;
    color: #0D2A4D;
}

/* Map in footer */
.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: none;
}

/* Bottom area */
.footer-bottom p {
    font-size: 13px;
    color: #b7c8df;
}

.footer-bottom span {
    color: #F4C542;
    font-weight: 700;
}
