/* Global Settings & Variables */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary-color: #6c5ce7;
    /* Soft Purple */
    --secondary-color: #fab1a0;
    /* Soft Coral */
    --accent-color: #a29bfe;
    /* Lavender */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #ffffff;
    --bg-soft: #f8f9fa;
    /* Very light gray/white */
    --bg-beige: #fffbf0;
    /* Light Beige for Dignitaries/Menu */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(108, 92, 231, 0.15);
    --gradient-main: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    --gradient-text: linear-gradient(45deg, #6c5ce7, #ff7675);
    --border-radius-card: 20px;
    --border-radius-btn: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Smooth Scrolling --- */
html {
    scroll-behavior: smooth;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* --- Header / Navbar (Modern Floating Style) --- */
.main-header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
    padding: 0;
    background: #f8f9fd;
    /* Reverted to clean white for header */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.main-header.scrolled {
    top: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* New Menu Bar Container */
.menu-bar-container {
    width: 100%;
    background: rgba(248, 249, 253, 0.97);
    /* Faint white-blue: professional & clean */
    border-top: none;
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0.45rem 1rem;
    box-shadow: 0 2px 12px rgba(108, 92, 231, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .menu-bar-container {
        display: flex;
    }

    .desktop-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        /* Force single row */
        gap: 0.15rem;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: transparent;
    margin: 0;
    border: 1.5px solid transparent;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.3);
}


.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.5rem;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* --- Hero Stats Bar (New Inline Version) --- */
.hero-stats-bar-new {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    color: #333;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(108, 92, 231, 0.25);
    animation: fadeInUp 1.4s ease-out;
    max-width: 95%;
}

.stats-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 1.2rem;
    margin-right: 1.2rem;
    border-right: 2px solid rgba(108, 92, 231, 0.2);
    flex-shrink: 0;
}

.stats-title-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.stats-grid-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 68vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

/* --- Hero Content & Stats --- */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white !important;
    max-width: 1100px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s ease-out;
}

/* Stat Item inline style */
.stat-item {
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0 1rem;
    border-right: 1px solid rgba(108, 92, 231, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* --- Common Section Styles --- */
.section-wrapper {
    padding: 1.5rem 1rem;
    /* Further reduced padding */
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    z-index: 10;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-text);
    border-radius: 2px;
}

/* --- Dignitaries Section (Home) --- */
.dignitaries-grid {
    display: flex;
    flex-wrap: wrap;
    /* Wrap everything */
    justify-content: center;
    /* Center them */
    gap: 2rem;
    padding: 2rem 1rem;
    /* Reset overflowing properties */
    overflow-x: visible;
}

.dignitary-card {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dignitary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.dignitary-img-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    padding: 3px;
    background: white;
}

.dignitary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dignitary-role {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    height: 2.4em;
    /* height for 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.dignitary-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}


/* --- Leadership Section (GP Members) --- */
/* --- Leadership Marquee --- */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure leader cards inside marquee look good */
.marquee-content .leader-card {
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.leaders-grid {
    /* Fallback/Default grid if not marquee */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.leader-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.leader-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-soft);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 50%;
    /* Ensure circularity */
}

.leader-card:hover .leader-img {
    transform: scale(1.1);
}


.leader-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    white-space: normal;
    min-height: 2.5em;
    /* Space for 2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0;
    min-height: 3rem;
    /* Ensure 2 lines height */
    display: flex;
    align-items: start;
    justify-content: center;
}

/* --- Services / Schemes Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-light);
    font-size: 1rem;
    flex-grow: 1;
    /* Pushes button down */
}

/* --- Info/Alerts Section --- */
.info-section {
    background: var(--bg-light);
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

.info-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid;
    background: #fdfdfd;
}

.info-item.alert {
    border-color: #ff7675;
    background: #fff0f0;
}

.info-item.news {
    border-color: #74b9ff;
    background: #f0f8ff;
}

.info-item.notice {
    border-color: #ffeaa7;
    background: #fffdf0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
.main-footer {
    background: #f8f9fd;
    /* Faint purple white */
    /* Light cream background */
    color: #2d3436;
    /* Dark text */
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
    border-top: 5px solid #d4edda;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Forced 3 columns for single row */
    gap: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    color: #2d3436;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid #f1c40f;
    /* Yellow underline */
    padding-bottom: 0.5rem;
    display: inline-block;
    font-weight: 800;
}

.footer-col p,
.footer-col li {
    color: #636e72;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    text-align: left;
    /* Aligned left as per image? or keep center */
    color: #636e72;
    font-size: 0.85rem;
    border-top: none;
    /* Removed border */
}

/* Mobile Nav Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2000;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 1.1rem;
    font-weight: 500;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.open {
    display: block;
    opacity: 1;
}

/* --- Tables (Preserving Format but Styling) --- */
.revenue-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-top: 1.5rem;
}

.revenue-services-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.revenue-services-table th,
.revenue-services-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.revenue-services-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.revenue-services-table tr:hover {
    background-color: #f9f9f9;
}

/* Specific button styles */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-main);
    color: white;
    border-radius: var(--border-radius-btn);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

/* --- About / Content Cards --- */
.about-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.about-text {
    margin-bottom: 1.5rem;
    color: #555;
}

.detail-list {
    list-style: none;
    padding: 0;
}

ul.detail-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

ul.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

ol.detail-list li {
    margin-bottom: 0.8rem;
    margin-left: 0.5rem;
}

/* --- Facts Table --- */
.facts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.facts-table th,
.facts-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.facts-table th {
    width: 40%;
    color: var(--primary-color);
    font-weight: 600;
}

.facts-table tr:last-child td,
.facts-table tr:last-child th {
    border-bottom: none;
}

/* --- Scheme Detail Box --- */
.scheme-detail-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
}

.detail-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bg-soft);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section-wrapper {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-card,
    .service-card,
    .info-section {
        padding: 1.5rem;
    }

    /* Leaders grid mobile */
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Revenue table mobile scroll */
    .revenue-table-container {
        overflow-x: auto;
    }

    /* Video grid mobile */
    .video-grid {
        grid-template-columns: 1fr;
    }

    /* GP member grid mobile */
    .gp-members-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
}

/* --- Contact Us Specific --- */
.contact-section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-officials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.official-card {
    background: white;
    border-radius: var(--border-radius-card);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.official-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.official-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: var(--bg-soft);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.official-role {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.official-name {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.official-phone {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.address-box {
    background: #fff8e1;
    /* Light yellow/gold tint */
    border: 1px solid #ffe082;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    text-align: center;
    font-size: 1.1rem;
    color: #444;
}

.helpline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.helpline-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.helpline-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e74c3c;
    margin-top: 0.5rem;
}

/* Ensure darker shadows on slider text */
.hero-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9) !important;
}

/* Mobile Nav Icons aligned */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Hero Stats Bar Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hero-stats-bar-new {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: 18px;
        padding: 0.8rem 1rem;
        gap: 0;
        max-width: 97%;
    }

    .stats-title-block {
        border-right: none;
        border-bottom: 1.5px solid rgba(108, 92, 231, 0.15);
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        width: 100%;
        align-items: center;
    }

    .stats-grid-block {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 0.6rem 0.5rem;
    }
}

/* --- Dignitary Marquee --- */
.marquee-wrapper-dignitary {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
    /* Soft edges mask */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content-dignitary {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollDignitary 30s linear infinite;
    /* Slower scroll for readability */
}

.marquee-content-dignitary:hover {
    animation-play-state: paused;
}

@keyframes scrollDignitary {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- GP Members Grid --- */
.gp-members-grid {
    display: grid;
    /* 1 row of 4 members - for desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .gp-members-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .gp-members-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.leader-card-grid {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.leader-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.leader-img-wrapper-grid {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.leader-img-grid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Video Grid --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.video-card {
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-card h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.video-card iframe {
    pointer-events: auto !important;
}