body {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

html , body {
    overflow-x: hidden !important;
    width: 100%;
}

/*nav bar with banner design*/
/* ================= NAVBAR BASE ================= */
.custom-navbar {
    position: relative;
    height: 70px;
    background-color: #4a4a48;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Yellow angled banner (DESKTOP ONLY) */
.custom-navbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 380px;
    height: 100%;
    background-color: #E88200;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 0;
}

/* Nav list positioning */
.navbar-nav {
    /* margin-left: auto; */
    position: relative;
    z-index: 1;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0 15px;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #f2c48b;
}

/* Spacer div */
.ewr {
    width: 60px;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
    .custom-navbar::before {
        width: 260px;
    }

    .navbar-nav .nav-link {
        padding: 0 10px;
        font-size: 14px;
    }
    
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    /* REMOVE yellow banner on mobile */
    .custom-navbar::before {
        display: none;
    }

    .custom-navbar {
        height: auto;
        padding: 10px 0;
    }

    .ewr {
        display: none;
    }

    .navbar-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* ================= EXTRA SMALL DEVICES ================= */
@media (max-width: 480px) {
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 5px 8px;
    }
}


/* ================= NIB BANNER ================= */
/* ================= NIB BANNER GENERAL ================= */
.nib-banner {
    /* Desktop: Gradient Background */
    background: linear-gradient(90deg, #ffffff 40%, #a8f0a8 100%);
    padding: 10px 0;
    overflow: hidden;
}

.nib-logo img {
    max-height: 150px;
    width: auto;
}

.flag img {
    max-height: 150px;
    width: auto;
}

.nib-title {
    font-size: 38px;
    font-weight: 800;
    color: #d30000;
    margin-bottom: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.nib-subtitle {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 1.4;
}

/* ================= DESKTOP LAYOUT (Min-Width: 768px) ================= */
@media (min-width: 768px) {
    /* 1. Make the Row behave like a flexible container */
    .nib-banner .row {
        display: flex;
        align-items: center;
        /* This pushes the last item (flag) to the far right if we use margin-left: auto on it */
        justify-content: flex-start; 
    }

    /* 2. Shrink Logo Column to fit the image exactly (removes extra gap) */
    .nib-banner .col-md-2.nib-logo {
        width: auto !important;
        flex: 0 0 auto;
        padding-right: 20px; /* Small space between logo and text */
    }

    /* 3. Align Text Left and let it sit next to logo */
    .nib-banner .col-md-8 {
        text-align: left !important; /* Force Left Align */
        width: auto !important;      /* Let it take only needed space */
        flex: 0 1 auto;              /* Allow it to grow/shrink if needed */
        padding-left: 0;             /* Remove left padding */
    }

    /* 4. Push Flag to the Far Right */
    .nib-banner .col-md-2.flag {
        width: auto !important;
        flex: 0 0 auto;
        margin-left: auto; /* This pushes the flag to the right edge */
    }
}

/* ================= MOBILE LAYOUT (Max-Width: 767px) ================= */
@media (max-width: 767px) {
    .nib-banner {
        background: #ffffff !important; /* No color on mobile */
        padding: 20px 15px;
    }

    .nib-banner .row {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    /* Reset columns to stack */
    .nib-banner .col-md-2,
    .nib-banner .col-md-8 {
        width: 100% !important;
        text-align: center !important;
        padding: 0;
        margin-bottom: 15px;
    }

    .nib-logo img {
        margin: 0 auto;
        max-height: 100px;
    }

    .flag img {
        margin: 0 auto;
        max-height: 60px;
    }

    .nib-title {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .nib-subtitle {
        font-size: 13px;
    }
}

/* ================= TOP NAVBAR ================= */
.top-nav {
    background-color: #343a97;
}

.top-nav .nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 12px;
}

@media (min-width: 992px) {
    .top-nav .nav-item:not(:last-child)::after {
        content: "|";
        color: #fff;
        position: absolute;
        right: -2px;
        top: 50%;
        transform: translateY(-50%);
    }
    .top-nav .nav-item {
        position: relative;
    }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    background: linear-gradient(to bottom, #ffffff 0%, #d6e0f5 100%);
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-logo {
    max-height: 90px;
}

.hero-title {
    color: #e60000;
    font-size: 32px;
    font-weight: 700;
}

.hero-text1 {
    font-size: 25px;
    line-height: 1.6;
    color: rgb(20, 20, 88);
    font-weight: 700;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
}


/* Section Styling */
.content-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Typography */
.section-subtitle {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 5px;
}

section-title1{
    color: #000;
    /* Or darker navy #0a1f44 */
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 25px;

}

.section-title {
    color: #000;
    /* Or darker navy #0a1f44 */
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 25px;
}

.section-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: justify;
    /* Matches the justified text in your image */
    margin-bottom: 20px;
}

/* Services Area */
.services-header {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #000;
}

.service-card-title {
    color: #2b3595;
    /* The specific blue from your theme */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /* Slight rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.report-section {
    padding-bottom: 60px;
}

/* The thick blue line at the top */
.top-divider {
    height: 3px;
    background-color: #2b3595;
    /* Deep Blue */
    width: 100%;
    margin-bottom: 30px;
}

.report-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 25px;
    /* Placeholder styling to match the cartoon look */
    object-fit: cover;
}

.section-title {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    /* Adjust size as needed */
    margin-bottom: 20px;
}

.section-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* The Deep Red Button */
.btn-report {
    background-color: #df9d4d;
    /* Dark Red */
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 35px;
    border-radius: 50px;
    /* Fully rounded pill shape */
    border: none;
    font-size: 0.9rem;
    margin-top: 15px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-report:hover {
    background-color: #e78a17;
    /* Darker red on hover */
    color: white;
}

.join-section {
    padding-bottom: 60px;
}

/* Top Blue Divider */
.top-divider {
    height: 3px;
    background-color: #2b3595;
    /* Deep Blue Theme Color */
    width: 100%;
    margin-bottom: 30px;
}

/* CCTV Image Styling */
.join-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Adds depth like the photo */
    object-fit: cover;
}

.section-title {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.section-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    /* Aligns text neatly on both sides */
}

/* Deep Red Button */
.btn-join {
    background-color: #df9d4d;
    /* Deep Red */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 40px;
    border-radius: 50px;
    /* Pill shape */
    border: none;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-join:hover {
    background-color: #f09526;
    /* Darker Red on Hover */
    color: white;
}

/*Home gallery secion design*/
.gallery-section1 {
    padding: 60px 0;
    background-color: #333333;
    text-align: center;
}
.gallery-title1 {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 40px;
}
.gallery-item1 {
    /* Ensure the container keeps the rounded corners */
    position: relative;
    border-radius: 8px;
    overflow: hidden; 
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item1 img {
    width: 100%;          /* Fills the carousel slot width */
    height: 250px;        /* FIXED HEIGHT - Change this number to your preference */
    object-fit: cover;    /* Key property: Prevents stretching/squishing */
    transition: transform 0.4s ease;
    display: block;
}


.gallery-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.gallery-title {
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

/* --- GALLERY ITEM --- */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- PLUS ICON OVERLAY --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.plus-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

/* --- OWL NAV BUTTONS --- */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #fff !important;
    color: #000 !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-50%) scale(1.1);
}

.owl-dots {
    display: none;
}

/* --- CENTER POPUP FIX --- */
#lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin-top: 0 !important;
    z-index: 999999 !important;
}
.lightbox-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 10px;
}

.caption-text {
    text-align: center;
    width: 100%;
    margin-top: 10px;
    color: #fff;
}



/* Example for the popup background */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* The actual large image in the popup */
.lightbox-content img {
    max-width: 90%;
    max-height: 80vh;
    border: 5px solid white;
    border-radius: 4px;
}

.stats-section {
    padding: 50px 0;
    background-color: #fff;
}

/* --- Mini Header Area --- */
.mini-header {
    margin-bottom: 40px;
}

.mini-title {
    color: #d70000;
    /* Red Title */
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.mini-title1 {
    color: #d70000;
    /* Red Title */
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
}

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

.mini-subtitle1 {
    font-size: 0.85rem;
    color: #555;
    margin-top: 5px;
    font-weight: 500;
}

.mini-logo {
    height: 50px;
    width: auto;
}

/* --- Custom Search Bar --- */
.search-container {
    max-width: 600px;
    margin: 0 auto 50px auto;
    position: relative;
}

.search-input {
    border-radius: 50px;
    padding: 12px 25px;
    border: 1px solid #ced4da;
    width: 100%;
    height: 50px;
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 42px;
    border-radius: 50px;
    padding: 0 30px;
    background-color: #df9d4d;
    /* Deep Red */
    color: white;
    border: none;
    font-weight: 500;
    transition: background 0.3s;
}

.search-btn:hover {
    background-color: #fa9d2a;
    color: white;
}

/* --- Stats Cards --- */
.stat-card {
    border: 1px solid #e0e0e0;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: #333;
    font-weight: 400;
}

/* Distinct Style for First Card (Blue) */
.stat-card.blue-card {
    background-color: #003B5C;
    /* Deep Blue/Teal */
    color: white;
    border: none;
}

.stat-card.blue-card .stat-label {
    color: white;
    /* Ensure text is white on blue bg */
}

/* --- Disclaimer Footer --- */
.disclaimer-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
}

.disclaimer-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 10px;
}

.disclaimer-sub {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.disclaimer-italic {
    font-style: italic;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- Footer Main Area --- */
.footer-top {
    background-color: #333333;
    /* Dark Gray */
    color: #ffffff;
    padding: 60px 0;
    font-size: 0.9rem;
}

.footer-heading {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Contact Info Styling */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.contact-list i {
    margin-right: 10px;
    margin-top: 4px;
    /* Align icon with text */
    color: #ffffff;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid #777;
    color: #fff;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: #fff;
    color: #333;
    border-color: #fff;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    background-color: #000000;
    /* Pure Black */
    color: #ffffff;
    padding: 15px 0;
    font-size: 0.85rem;
}

.footer-bottom-text {
    margin-bottom: 0;
}

.powered-by {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-top .col-md-4 {
        margin-bottom: 30px;
    }

    .powered-by {
        text-align: center;
        margin-top: 10px;
    }

    .visitor-count {
        text-align: center;
    }
}

/* Slider Background */
.hero-slider {
    background: linear-gradient(to bottom, #ffffff 0%, #d6e0f5 100%);
}

/* Circular Image */
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}


/* Logo */
.hero-logo {
    max-height: 90px;
}

/* Heading */
.hero-title {
    color: #e60000;
    font-size: 32px;
    font-weight: 700;
}

/* Text */
.hero-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Carousel Dots */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }
}

.hero-slider .col-lg-4 {
    padding: 0;
    margin: 0px;
}

/* Section Styling */
.about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Small Label */
.section-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: #9a9a9a;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* Heading */
.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Paragraph */
.section-text {
    font-size: 14px;
    line-height: 1.9;
    color: #000;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}


.report-section {
    padding: 25px 0;
}

.report-btn {
    background-color: #df9d4d;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.report-btn:hover {
    background-color: #e28410;
    color: #fff;
}

.divider {
    height: 4px;
    background-color: #2f2fa2;
    margin-top: 50px;
    border-radius: 4px;
}

.report-section img {
    width: 100%;
    margin-bottom: 20px;
}


.join-section {
    padding: 25px 0;
}

.join-title {
    font-weight: 700;
    margin: 15px 0;
}

.join-text {
    color: #555;
    line-height: 1.7;
}

.join-btn {
    background-color: #df9d4d;
    color: #fff;
    padding: 12px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.join-btn:hover {
    background-color: #e4922d;
    color: #fff;
}

.lightbox-carousel img {
    width: 100%;
    height: auto; /* Allow height to scale naturally on mobile */
    max-height: 70vh; /* Prevents the image from being taller than the screen */
    object-fit: contain; /* Shows the full image without cropping */
    border-radius: 8px;
}
.gallery-section {
    padding: 80px 0;
    background: #f9fafc;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header p {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
}

.gallery-carousel .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-carousel img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Hover Overlay */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item .overlay i {
    color: #fff;
    font-size: 26px;
}

/* Owl Controls */
.gallery-carousel .owl-nav button {
    position: absolute;
    top: 45%;
    background: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-carousel .owl-nav .owl-prev {
    left: -20px;
}

.gallery-carousel .owl-nav .owl-next {
    right: -20px;
}

.owl-carousel .owl-item img {
    border-radius: 15px;
}

.gallery-section h2 {
    padding-bottom: 20px;
}


.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block !important;
}

.nib-section {
    padding: 60px 15px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* join us page-----------------------------------------------------------*/

.info-section {
    padding: 60px 0;
}

/* Headings */
.info-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
}

/* Paragraph Text */
.info-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

/* --- Head Office Contact List --- */
.contact-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* The Icon (Left side) */
.contact-icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: #111;
    /* Black icon */
}

/* The Orange Vertical Line */
.separator-line {
    display: inline-block;
    width: 3px;
    height: 18px;
    background-color: #ff6600;
    /* Orange color from image */
    margin: 0 12px;
    /* Spacing around the line */
}

/* turms secyion */

.terms-section {
    padding: 60px 0;
}

/* Heading Style */
.terms-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 30px;
    text-transform: capitalize;
    /* Matches "Terms & Conditions" */
}

/* List Styling */
.terms-list {
    padding-left: 20px;
    /* Indent for numbers */
    counter-reset: terms-counter;
    /* Ensures correct numbering if needed */
}

.terms-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 25px;
    /* Space between items */
    text-align: justify;
    /* Aligns text edges like the image */
    padding-left: 10px;
}

/* Optional: Make the numbers slightly bolder if desired */
.terms-list li::marker {
    font-weight: 500;
    font-size: 1rem;
}

/* form of registration */

/* --- SECTION STYLING --- */
.registration-section {
    background-color: #f8f9fa;
    /* Light Gray Background for the section */
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* --- FORM CARD STYLING --- */
.register-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 750px;
    /* Width of the form card */
    margin: 0 auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
}

/* --- TYPOGRAPHY --- */
.join-us-subtitle {
    text-align: center;
    color: #888888;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.registration-title {
    text-align: center;
    color: #000000;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

/* --- INPUTS --- */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    background-color: #fdfdfd;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: #8b0000;
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.1);
}

/* --- BUTTON --- */
.btn-submit {
    background-color: #df9d4d;
    /* Deep Red */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #e08d28;
    color: #fff;
}

.form-check-input:checked {
    background-color: #8b0000;
    border-color: #8b0000;
}



/* Apply form */

.form-wrapper {
    background-color: #fff;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* --- Headings --- */
.main-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.top-select {
    max-width: 300px;
    margin: 0 auto 40px auto;
    border: 2px solid #333;
    font-weight: 500;
}

.section-header {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* --- Inputs --- */
.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #8b0000;
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.1);
}


/* --- Submit Button --- */
.btn-register {
    background-color: #8b0000;
    /* Deep Red Theme */
    color: white;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-register:hover {
    background-color: #e2902b;
    color: white;
}

.link-terms {
    color: #009688;
    /* Teal color from image */
    text-decoration: none;
    font-weight: 500;
}

/* --- Login page --- */

.login-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* Animation for Entrance */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

h3 {
    font-weight: 600;
    color: #333;
}

.text-muted-custom {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.15);
    border-color: #5865F2;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
}


.form-check-label {
    font-size: 0.85rem;
    color: #666;
}

.btn-primary {
    background-color: #df9d4d;
    /* Matches the blue in image */
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
    width: 100%;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background-color: #e49331;
    transform: translateY(-2px);
}

.btn-google {
    background-color: white;
    border: 1px solid #eee;
    color: #333;
    border-radius: 10px;
    padding: 12px;
    font-weight: 500;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-google:hover {
    background-color: #f8f9fa;
}

.uid-box {
    position: absolute;
    top: -10px;
    left: 20;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 18px;
}
.uid-box p {
    margin: 0;
    line-height: 1.4;
}
@media(max-width:768px){
    .uid-box{
        position: static;
        margin-bottom: 10px;
        display: inline-block;
    }
}
/*apply-donation page*/

/* SIDEBAR */
.sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sidebar-link {
    display: block;
    padding: 10px 12px;
    margin-bottom: 6px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #0d6efd;
    color: #fff;
}

/* 
.sidebar-link.active {
  background: #0d6efd;
  color: #fff;
} */

/* MOBILE LINKS */
.mobile-link {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-link:hover {
    background: #0d6efd;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR SHOULD ALWAYS STAY ON TOP */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
}

/* HEADER + TOP BAR */
.top-bar,
.main-header {
    position: relative;
    z-index: 1000;
}

/* SIDEBAR STICKY BELOW NAVBAR */
.sidebar-sticky {
    position: sticky;
    top: 90px;
    /* height of navbar */
    z-index: 100;
    /* LOWER than navbar */
}


/* report case form admin */


.status-btn {
    border: none;
    padding: 8px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Processing */
.status-btn.processing {
    background-color: #0d6efd;
}

.status-btn.processing:hover {
    background-color: #084298;
}

/* Pending */
.status-btn.pending {
    background-color: #ffc107;
    color: #000;
}

.status-btn.pending:hover {
    background-color: #d39e00;
}

/* Resolved */
.status-btn.resolved {
    background-color: #198754;
}

.status-btn.resolved:hover {
    background-color: #0f5132;
}


/* admin-panel-user-details */

/* Admin Table */
        .admin-table-wrapper {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow-x: auto;
        }

        .admin-table {
            min-width: 1400px;
        }

        .admin-table th {
            background: #0d6efd;
            color: #fff;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
        }

        .admin-table td {
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
        }

        .action-btn i {
            cursor: pointer;
            font-size: 16px;
            margin: 0 6px;
        }

        .edit {
            color: #198754;
        }

        .delete {
            color: #dc3545;
        }

        .access {
            color: #0d6efd;
        }

        .password {
            color: #fd7e14;
        }

        .badge-status {
            padding: 6px 10px;
            font-size: 12px;
        }


        /*command zone page style*/

        .command-section {
    padding: 60px 0;
    background: #f8f9fc;
}

/* Blue Heading Bar like your image */
.zone-title {
    background: #1e5aa8;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 12px 20px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* Zone Card Design */
.zone-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

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

.zone-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e5aa8;
    margin-bottom: 12px;
    border-bottom: 2px solid #1e5aa8;
    display: inline-block;
    padding-bottom: 4px;
}

.zone-card ul {
    padding-left: 18px;
    margin: 0;
}

.zone-card ul li {
    font-size: 14.5px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .zone-title {
        font-size: 18px;
    }
}


/*services pages style*/

.services-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Heading Style Like Command Zone */
.services-title {
    background: #1e5aa8;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 12px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Service Card Design */
.service-card {
    background: #f8f9fc;
    border: 1px solid #e3e6f0;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    position: relative;
    padding-left: 38px;
}

/* Bullet Icon */
.service-card::before {
    content: "✔";
    position: absolute;
    left: 14px;
    color: #1e5aa8;
    font-size: 16px;
    font-weight: bold;
}

.service-card:hover {
    background: #1e5aa8;
    color: #fff;
    transform: translateY(-5px);
}

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

/* Responsive */
@media (max-width: 768px) {
    .services-title {
        font-size: 18px;
    }
    .service-card {
        font-size: 14px;
    }
}


/*about us page style*/

/* Page Heading Style */
.page-heading {
    width: 100%;
    background: #1f5c9c;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 3px;
    margin-bottom: 25px;
    text-align: center;
}

/* Subtitle */
.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #1f5c9c;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Text */
.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/*low and acts*/

.laws-section {
    padding: 70px 0;
    background: #f4f7fb;
}

.laws-title {
    background: #1e5aa8;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 12px 20px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    border-radius: 4px;
}


.laws-heading {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-top: 22px;
    margin-bottom: 10px;
    border-left: 5px solid #1e5aa8;
    padding-left: 12px;
}

.laws-list {
    padding-left: 22px;
    margin-bottom: 10px;
}

.laws-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .laws-title {
        font-size: 26px;
    }
    .laws-box {
        padding: 20px;
    }
}

/*mission page style*/

.mission-section {
    padding: 70px 0;
    background: #f8f9fc;
}

/* Subtitle */
.mission-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1e5aa8;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

/* Title */
.mission-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
    position: relative;
}

.mission-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #1e5aa8;
    display: block;
    margin: 10px auto 0;
}

/* Paragraph */
.mission-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 15px;
}

/* Box Style */
.mission-box {
    background: #fff;
    padding: 22px 25px;
    border-radius: 12px;
    margin-top: 22px;
    border-left: 5px solid #1e5aa8;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Headings */
.mission-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1e5aa8;
    margin-bottom: 12px;
}

/* Lists */
.mission-list {
    padding-left: 18px;
    margin: 0;
}

.mission-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-title {
        font-size: 26px;
    }
    .mission-box {
        padding: 18px;
    }
}

/*additional director general style*/

.page-heading {
    width: 100%;
    background: #1f5c9c;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 3px;
    margin-bottom: 25px;
}

.section-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

/*home page useful services images*/
.service-img {
    width: 100%;
    max-width: 380px;
    height: 240px;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.service-img:hover {
    transform: scale(1.05);
}

.service-card-title1 {
    font-size: 16px;
    font-weight: 700;
    color: #0f253d;
    text-transform: uppercase;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .service-img {
        max-width: 240px;
        height: 180px;
    }
}


/*public grievance page design*/
/* PAGE HEADING */

.page-heading h2 {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}


.content-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f5fa9;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.content-list {
    padding-left: 20px;
    margin-top: 10px;
}

.content-list li {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-heading h2 {
        font-size: 18px;
    }

    .content-box {
        padding: 20px;
    }
}


/*dropdown nav section*/

.top-nav .dropdown-menu {
    margin-top: 0;
    border-radius: 6px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 9999;
}

.top-nav .nav-link {
    font-weight: 600;
    color: #1f5c9c;
}

.top-bar .nav-link:hover {
    background-color: #1c579e;
}

.top-nav .dropdown-item:hover {
    background-color: #1c579e;
    color: white;
}
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        float: none;
    }
}


/* ================= TOP NAVBAR FIX ================= */
.top-nav .navbar-nav {
    display: flex;
    flex-wrap: nowrap;        /* 🔑 Prevent wrapping */
    white-space: nowrap;      /* 🔑 Keep text in one line */
}

.top-nav .nav-item {
    flex-shrink: 0;           /* 🔑 Prevent items from shrinking */
}

.top-nav .nav-link {
    white-space: nowrap;      /* 🔑 No line breaks inside links */
    padding: 10px 10px;       /* Slightly reduced padding */
    font-size: 13px;          /* Optional: helps fit more items */
}


/*member-conduct-policy page*/

.page-section {
    padding: 20px 0;
    background: #f8fafc;
}

/* PAGE HEADING */
.page-heading {
    text-align: center;
    margin-bottom: 40px;
}

.page-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color:white;
}

.heading-line {
    width: 80px;
    height: 3px;
    background: #1f5c9c;
    display: inline-block;
    margin-top: 8px;
}

/* CONTENT BOX */
.content-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.content-box h4 {
    color: #0d47a1;
    font-size: 20px;
    margin-bottom: 15px;
}

/* LIST STYLES */
.styled-list {
    padding-left: 18px;
}

.styled-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.numbered-list {
    padding-left: 20px;
}

.numbered-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* NOTES */
.note {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.declaration {
    border-left: 5px solid #1f5c9c;
}

.final-note {
    margin-top: 15px;
    font-weight: 600;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-heading h2 {
        font-size: 22px;
    }

    .content-box {
        padding: 18px;
    }
}


/* PAGE SECTION */
.page-section {
    padding: 60px 0;
}

/* PAGE HEADING */
.page-heading {
    text-align: center;
    margin-bottom: 40px;
}

.page-heading h2 {
    font-weight: 700;
    text-transform: uppercase;
}

.heading-line {
    display: inline-block;
    width: 80px;
    height: 3px;
    background: #1f4fa3;
    margin-top: 8px;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: #1f4fa3;
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgb(109, 105, 105);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #fff;
} */

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Removes default browser margins from figure tags */
.gallery-item {
    margin: 0;
    text-align: center; /* Centers the subtitle */
}

/* Styles the subtitle text */
.gallery-item figcaption {
    margin-top: 8px;
    font-size: 14px;
    color: #333; /* Change to your preferred color */
}

/* Ensures the image stays responsive */
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}


/*video gallery page design*/

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* VIDEO CARD */
.video-card {
    text-decoration: none;
    text-align: center;
    border: 2px solid #ccc;
    padding: 12px;
    transition: 0.3s ease;
    background: #fff;
}

.video-card:hover {
    border-color: #1f4fa3;
    transform: translateY(-4px);
}

/* THUMB PLACEHOLDER */
.video-thumb {
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

.play-icon {
    font-size: 48px;
    color: #1f4fa3;
}

/* TITLE */
.video-card h4 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f5c9c;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-thumb {
        height: 180px;
    }
}

.video-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play icon overlay */
.play-icon {
    position: absolute;
    font-size: 48px;
    color: #fff;
    background: rgba(31, 79, 163, 0.85);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    margin: auto;
    transition: 0.3s;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
}


.zonal-director-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.section-heading {
    background: #1f4fa3;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

/* Grid */
.director-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.director-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.director-card:hover {
    transform: translateY(-8px);
    border-color: #1f4fa3;
}



/* Image */
.director-img {
    width: 140px;
    height: 140px;
    border-radius: 10%;
    margin: 0 auto 20px;
    padding: 5px;
    background: linear-gradient(135deg, #1f4fa3, #4f83d1);
}

.director-img img {
    width: 100%;
    height: 100%;
    border-radius: 10%;
    object-fit: cover;
    background: #fff;
}

/* Text */
.director-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.director-role {
    font-size: 14px;
    font-weight: 500;
    color: #1f4fa3;
    margin-bottom: 10px;
}

.director-area {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .director-card {
        padding: 25px 15px;
    }
}


/*contact page design*/

/* --- GENERAL SECTION STYLES --- */
    .contact-section {
        padding: 50px 0;
        background-color: #fff;
        font-family: 'Roboto', sans-serif; /* Or generic sans-serif */
    }



    /* --- FORM STYLES --- */
    .custom-input {
        border-radius: 4px;
        border: 1px solid #ccc;
        padding: 10px 15px;
        font-size: 14px;
        color: #555;
    }
    
    .custom-input::placeholder {
        color: #999;
    }

    .custom-input:focus {
        border-color: #14569d;
        box-shadow: 0 0 5px rgba(20, 86, 157, 0.2);
    }

    .btn-submit {
        background-color: #df9d4d; /* The specific blue color */
        color: white;
        padding: 8px 25px;
        font-size: 14px;
        border: none;
        border-radius: 3px;
        transition: background 0.3s;
    }

    .btn-submit:hover {
        background-color: #df9d4d;
        color: white;
    }

    /* --- HEAD OFFICE DETAILS STYLES --- */
    .office-details {
        color: #444;
        font-size: 14px;
    }

    .org-name {
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 20px;
        color: #333;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .contact-item i {
        margin-right: 12px;
        margin-top: 5px; /* Align icon with first line of text */
        width: 15px;
        text-align: center;
        color: #333;
        font-size: 13px;
    }

    /* --- HELPLINE TEXT --- */
    .helpline-text {
        color: #14569d;
        font-size: 16px;
        font-weight: 500;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    /* --- MAP STYLES --- */
    .map-container {
        border: 1px solid #ddd;
        padding: 5px; /* Optional: creates a small frame around map */
        background: #f9f9f9;
    }


    /* --- SECTION STYLING --- */
    .office-locations-section {
        padding: 50px 0;
        background-color: #fff;
        font-family: 'Roboto', sans-serif;
        color: #333;
    }

    /* --- TYPOGRAPHY --- */
    .location-title {
        font-size: 26px;
        font-weight: 500; /* Medium weight, not too bold */
        color: #333;
        margin-bottom: 15px;
    }

    .org-subtitle {
        font-size: 18px;
        color: #555;
        font-weight: 400;
        margin-bottom: 20px;
    }

    /* --- CONTACT DETAILS LIST --- */
    .contact-details {
        font-size: 15px;
        color: #444;
        line-height: 1.8; /* Good spacing between lines */
    }

    .contact-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    /* --- ICON STYLING --- */
    .contact-row i {
        min-width: 25px; /* Ensures text aligns perfectly even if icons differ in width */
        margin-top: 6px; /* Align icon with the first line of text */
        font-size: 14px;
        color: #333;
    }

    .contact-row span {
        display: inline-block;
    }


    /* gov and rti-documentspage design*/
/* --- GRID LAYOUT --- */
    .gallery-grid1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    /* --- ITEM CONTAINER --- */
    .gallery-item {
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        text-align: center; /* Centers the subtitle */
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* --- IMAGE STYLING --- */
    .gallery-item img {
        width: 100%;
        height: 300px; /* Fixed height for uniformity */
        object-fit: contain; /* Ensures image fills box without stretching */
        cursor: pointer;
        display: block;
    }

    /* --- SUBTITLE STYLING --- */
    .image-subtitle {
        padding: 12px;
        font-size: 16px;
        color: #333;
        font-weight: 600;
        background-color: #f9f9f9;
        border-top: 1px solid #eee;
    }

