/* =========================================================
   🎨 THEME COLOR VARIABLES (CHANGE ENTIRE WEBSITE COLORS HERE)
   ========================================================= */
/* :root { */
    /* DEFAULT THEME: BLUE */
    /* --primary-color: #0a4ea3; */
    /* Main header, buttons, accents */
    /* --primary-dark: #003566; */
    /* Hover states, footer base */
    /* --primary-light: #f8fbff; */
    /* Card backgrounds, light sections */
    /* --primary-border: #e4eef7; */
    /* Section borders */

    /* --text-primary: #1d1d1d; */
    /* Main headings & text */
    /* --text-muted: #555555; */
    /* Paragraph text */
    /* --text-light: #ffffff; */
    /* Text on dark backgrounds */

    /* --accent-red: #e63946; */
    /* PDF buttons & alert tags */
    /* --accent-red-hover: #d00000; */
    /* Hover for red elements */

    /* --shadow-color: rgba(0, 0, 0, 0.08); */
    /* Card drop shadows */
/* } */

:root {
    /* DEFAULT THEME: BLUE */
    --primary-color: #038619;
    --secondary-color: yellow;
    /* Main header, buttons, accents */
    --primary-dark: #024102;
    /* Hover states, footer base */
    --primary-light: #f8fbff;
    /* Card backgrounds, light sections */
    --primary-border: #e4eef7;
    /* Section borders */
    --theme-yellow: #ffcc00;
    --text-primary: #1d1d1d;
    /* Main headings & text */
    --text-muted: #555555;
    /* Paragraph text */
    --text-light: #ffffff;
    /* Text on dark backgrounds */

    --accent-red: #e63946;
    /* PDF buttons & alert tags */
    --accent-red-hover: #d00000;
    /* Hover for red elements */

    --shadow-color: rgba(0, 0, 0, 0.08);
    /* Card drop shadows */
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* HEADER STYLES */
.header {
    background: var(--primary-color);
    padding: 12px 0;
}

.flag-box {
    width: 100px;
    overflow: hidden;
}

.flag-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.text-yel {
    color: var(--theme-yellow);
}

.slogan {
    font-weight: 600;
    margin-bottom: 3px;
    /* font-size: 0.95rem; */
}

.title-np {
    /* font-size: 1.6rem; */
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.title-en {
    /* font-size: 1rem; */
    font-weight: 600;
    margin-bottom: 0;
}

/* WHITE NAVIGATION BAR */
.nav-bar-container {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.desktop-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.desktop-nav .nav-list>li {
    position: relative;
}

.desktop-nav .nav-list>li>a {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.25s ease;
}

.desktop-nav .nav-list>li:hover>a {
    background-color: #f4f6f8;
    color: var(--primary-color) !important;
}

/* Desktop Submenu */
.desktop-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 210px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding: 6px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--primary-color);
}

.desktop-nav .submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .submenu li a {
    color: var(--text-dark) !important;
    padding: 10px 18px;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav .submenu li a:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

.desktop-nav .nav-list>li:hover .submenu {
    display: block;
}

/* LANGUAGE SWITCHER BUTTON (YELLOW PRESERVED) */
.lang-toggle-btn {
    background: var(--theme-yellow);
    color: var(--text-dark);
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.lang-toggle-btn:hover {
    background: var(--theme-yellow-hover);
    color: var(--text-dark);
}

/* Mobile Drawer Sidebar */
.mobile-drawer {
    background-color: #ffffff;
    width: 280px !important;
}

.mobile-drawer .offcanvas-header {
    background-color: var(--primary-dark);
    color: var(--theme-yellow);
    border-bottom: 2px solid var(--theme-yellow);
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-nav-list a:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    padding-left: 22px;
}

/* Hide Google Translate Bar */
.goog-te-banner-frame,
.skiptranslate,
.goog-te-spinner-pos,
#goog-gt-tt {
    display: none !important;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .title-np {
        font-size: 1.1rem;
    }

    .title-en {
        font-size: 0.78rem;
    }

    .slogan {
        font-size: 0.75rem;
    }

    .flag-box {
        width: 48px;
    }
}

/* =========================================================
   HERO CAROUSEL / SLIDER
   ========================================================= */
.carousel-item {
    height: 60vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
    top: 0;
    left: 0;
}

.carousel-caption {
    bottom: 28%;
    z-index: 2;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideDown 1s ease;
    color:var(--secondary-color);
}

.carousel-caption p {
    font-size: 24px;
    line-height: 1.8;
    max-width: 700px;
    animation: fadeIn 2s ease;
    color: var(--secondary-color);
}

.hero-btn {
    margin-top: 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 18px;
    transition: 0.4s;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    padding: 28px;
    backdrop-filter: blur(5px);
}

.carousel-indicators button {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
    margin: 0 8px !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media(max-width:768px) {
    .carousel-item {
        height: 85vh;
    }

    .carousel-caption {
        bottom: 20%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 36px;
    }

    .carousel-caption p {
        font-size: 18px;
    }
}

/* =========================================================
   CHAIRMAN & OFFICERS PROFILE
   ========================================================= */
.main-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-color);
}

.profile-side {
    padding: 40px;
}

.chairman-box {
    display: flex;
    gap: 25px;
    align-items: center;
    background: var(--primary-light);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--primary-border);
}

.chairman-img {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.chairman-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-info h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.chairman-info .designation {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.chairman-info p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.officer-side {
    background: var(--primary-light);
    padding: 35px;
    border-left: 1px solid var(--primary-border);
    max-height: 420px;
    overflow-y: auto;
}
.officer-side h4 {
    color: var(--primary-color);
}


.officer-side::-webkit-scrollbar {
    width: 6px;
}

.officer-side::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.officer-card {
    background: white;
    border-radius: 18px;
    padding: 15px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.officer-card:hover {
    transform: translateX(5px);
}

.officer-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.officer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.officer-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.officer-info p {
    margin: 3px 0;
    font-size: 14px;
    color: #666;
}

.level-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

@media(max-width:991px) {
    .chairman-box {
        flex-direction: column;
        text-align: center;
    }

    .officer-side {
        border-left: none;
        border-top: 1px solid var(--primary-border);
        max-height: 300px;
    }
}

/* =========================================================
   OBJECTIVES SECTION
   ========================================================= */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.section-title p {
    color: #666;
}

.objective-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 6px solid var(--primary-color);
    transition: 0.3s;
}

.objective-card:hover {
    transform: translateY(-5px);
}

.objective-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.objective-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.num {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    margin-right: 10px;
}

@media(max-width:768px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/*  this is short member section */
        .team-section {
            padding: 40px 20px;
            background-color: #f8fafc;
            font-family: system-ui, -apple-system, sans-serif;
        }
    
        /* 3-Column CSS Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }
    
        /* Base Card Styling */
        .team-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
        }
    
        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #22c55e;
        }
    
        .member-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
    
        .member-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            background-color: #f8fafc;
        }
    
        /* Specific Highlight for Chairman */
        .member-item.highlight {
            flex-direction: column;
            text-align: center;
            background-color: transparent;
            padding: 16px 0;
        }
    
        .member-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
    
        .member-item.highlight .member-avatar {
            width: 90px;
            height: 90px;
        }
    
        .member-avatar.small {
            width: 44px;
            height: 44px;
        }
    
        .member-info {
            flex: 1;
        }
    
        .member-name {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: #0f172a;
        }
    
        .member-role {
            margin: 4px 0 0 0;
            font-size: 0.875rem;
            color: #16a34a;
            font-weight: 500;
        }
    
        .member-bio {
            margin: 12px 0 0 0;
            font-size: 0.875rem;
            color: #64748b;
            line-height: 1.4;
        }
    
        /* Responsive view for smaller screens */
        @media (max-width: 900px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
        /* end */



/* =========================================================
   NEWS & NOTICES
   ========================================================= */
.tab-header {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.tab-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
}

.notice-wrapper {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 35px var(--shadow-color);
    overflow: hidden;
}

.notice-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
}

.notice-list::-webkit-scrollbar {
    width: 6px;
}

.notice-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.notice-item {
    padding: 15px;
    border-bottom: 1px solid #eef3f8;
    transition: 0.3s;
}

.notice-item:hover {
    background: var(--primary-light);
}

.notice-org {
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.notice-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.notice-date {
    font-size: 13px;
    color: #777;
}

.pdf-btn {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(45deg, var(--accent-red-hover), var(--accent-red));
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(224, 57, 70, 0.3);
}

.news-side {
    background: var(--primary-light);
    padding: 20px;
    border-left: 1px solid var(--primary-border);
    max-height: 500px;
    overflow-y: auto;
}

.news-side::-webkit-scrollbar {
    width: 6px;
}

.news-side::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.news-card {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    background: white;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateX(4px);
}

.news-img {
    width: 100px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}


/* News Ticker Container Styles */
.news-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0);
    border-radius: 4px;
    padding: 6px 12px;
    margin: 0 15px;
   
}
.bg_yellow{
background-color: var(--theme-yellow);
}

.marquee-wrapper {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 18s linear infinite;
    font-weight: 600;
}

/* Pause marquee movement on hover */
.news-ticker:hover .marquee-content {
    animation-play-state: paused;
    cursor: pointer;
}

/* Smooth Infinite Horizontal Scrolling Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* end slider */

@media(max-width:768px) {
    .news-side {
        border-left: none;
        border-top: 1px solid var(--primary-border);
    }

    .tab-btn {
        font-size: 16px;
    }
}

/* =========================================================
   PHOTO GALLERY
   ========================================================= */
.photo-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.photo-row::-webkit-scrollbar {
    height: 6px;
}

.photo-row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.photo-card {
    position: relative;
    min-width: 220px;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-color);
    flex: 1;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
}

.photo-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.photo-tag {
    font-size: 12px;
    background: var(--primary-color);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

@media(max-width:768px) {
    .photo-card {
        min-width: 180px;
        height: 240px;
    }
}

/* =========================================================
   VIDEO GALLERY
   ========================================================= */
.video-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.video-row::-webkit-scrollbar {
    height: 6px;
}

.video-row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

.video-card {
    position: relative;
    min-width: 240px;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: black;
    box-shadow: 0 8px 25px var(--shadow-color);
    flex: 1;
}

.video-card video,
.video-card iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--text-light);
}

.video-tag {
    font-size: 12px;
    background: var(--accent-red);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.video-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--text-light);
    opacity: 0.8;
    pointer-events: none;
}

.video-card:hover .play-icon {
    opacity: 1;
}

@media(max-width:768px) {
    .video-card {
        min-width: 200px;
        height: 240px;
    }
}

/*  pdf view */

.pdf-frame-container {
    width: 100% !important;
    height: 1000px !important;
    /* Adjust height as needed (e.g., 900px, 1000px, or 90vh) */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #525659;
}

/* Force iframe to expand 100% inside container */
.pdf-frame-container iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 1000px !important;
    border: none !important;
    display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 50px 20px 20px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #dbe9ff;
}

.footer a {
    display: block;
    font-size: 14px;
    color: #dbe9ff;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.footer-section {
    margin-bottom: 25px;
}

.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 25px 0 15px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #cfe3ff;
}

.time-box p {
    margin: 3px 0;
}

@media(max-width:768px) {
    .footer h4 {
        font-size: 16px;
    }
}


/* pagination */

 .sidebar-notice-card {
     transition: all 0.25s ease-in-out;
     border: 1px solid #e9ecef;
     border-left: 4px solid #198754;
 }

 .sidebar-notice-card:hover {
     background-color: #f0fdf4 !important;
     border-left-color: #ffc107;
     transform: translateX(4px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .sidebar-notice-card:hover .notice-title {
     color: #198754 !important;
 }

 .text-truncate-2 {
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 /* PROFESSIONAL PAGINATION STYLING */
 .custom-pagination .page-link {
     color: #198754;
     border: 1px solid #dee2e6;
     margin: 0 3px;
     border-radius: 8px !important;
     font-weight: 600;
     padding: 8px 14px;
     transition: all 0.2s ease;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
 }

 .custom-pagination .page-link:hover {
     background-color: #198754;
     color: #ffffff;
     border-color: #198754;
     transform: translateY(-2px);
 }

 .custom-pagination .page-item.active .page-link {
     background-color: #198754;
     border-color: #198754;
     color: #ffffff;
     box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
 }

 .custom-pagination .page-item.disabled .page-link {
     color: #6c757d;
     background-color: #f8f9fa;
     border-color: #e9ecef;
 }

                 /* ================= CONTACT SECTION ================= */
                 .page-title {
                     text-align: center;
                     margin-bottom: 40px;
                 }
        
                 .page-title h2 {
                     font-size: 36px;
                     font-weight: 700;
                     color: var(--primary-color);
                 }
        
                 .page-title p {
                     color: #666;
                     font-size: 18px;
                 }
        
                 .contact-info-card {
                     background: #ffffff;
                     border-radius: 15px;
                     padding: 25px;
                     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
                     border: 1px solid #eef3f8;
                     height: 100%;
                 }
        
                 .info-item {
                     display: flex;
                     align-items: flex-start;
                     gap: 15px;
                     margin-bottom: 20px;
                 }
        
                 .info-item:last-child {
                     margin-bottom: 0;
                 }
        
                 .info-icon {
                     width: 45px;
                     height: 45px;
                     background: #eef3f8;
                     color: var(--primary-dark);
                     border-radius: 50%;
                     display: flex;
                     align-items: center;
                     justify-content: center;
                     font-size: 20px;
                     flex-shrink: 0;
                 }
        
                 .info-text h5 {
                     font-size: 18px;
                     font-weight: 700;
                     color: var(--primary-dark);
                     margin-bottom: 4px;
                 }
        
                 .info-text p {
                     margin: 0;
                     color: #555;
                     font-size: 15px;
                 }
        
                 .contact-form-card {
                     background: #ffffff;
                     border-radius: 15px;
                     padding: 30px;
                     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
                     border: 1px solid #eef3f8;
                 }
        
                 .contact-form-card h3 {
                     font-size: 22px;
                     font-weight: 700;
                     color: var(--primary-dark);
                     margin-bottom: 20px;
                 }
        
                 .form-control {
                     padding: 12px 15px;
                     border-radius: 8px;
                     border: 1px solid #ddd;
                     margin-bottom: 15px;
                 }
        
                 .form-control:focus {
                     border-color: var(--primary-color);
                     box-shadow: 0 0 0 0.2rem rgba(10, 78, 163, 0.15);
                 }
        
                 .btn-submit {
                     background: var(--primary-dark);
                     color: white;
                     padding: 12px 30px;
                     border-radius: 25px;
                     border: none;
                     font-weight: 600;
                     transition: 0.3s;
                     width: 100%;
                 }
        
                 .btn-submit:hover {
                     background: var(--primary-color);
                     color: white;
                 }
        
                 .map-container {
                     border-radius: 15px;
                     overflow: hidden;
                     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
                     border: 1px solid #eef3f8;
                     margin-top: 30px;
                 }
/* language toggle */

  .right-box {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .lang-toggle-btn {
      background: rgba(255, 255, 255, 0.2);
      color:var(--primary-color);
      border: 1px solid rgba(255, 255, 255, 0.4);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
  }

  .lang-toggle-btn:hover {
      background: #ffffff;
      color: var(--primary-dark);
  }

  /* Prevent top banner displacement from Google Translate */
  body {
      top: 0px !important;
      position: static !important;
  }

  .goog-te-banner-frame,
  .skiptranslate,
  .goog-te-spinner-pos {
      display: none !important;
  }

  #goog-gt-tt {
      display: none !important;
  }