/* Premium UI Overhaul - Gramsetu Portal */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --premium-indigo: #1e2a5e;
    --premium-teal: #16a085;
    --premium-ember: #A65108;
    --premium-orange: #e67e22;
    --shadow-premium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --header-bg: #ffffff;
    --base-font-size: 0.95rem;
    /* Standard medium font size */
}

/* Global Typography Standardization */
body {
    font-family: 'Outfit', sans-serif !important;
    font-size: var(--base-font-size);
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--premium-indigo);
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Header & Navigation - SVAMITVA Inspired */
.header-premium {
    background: var(--header-bg) !important;
    box-shadow: var(--shadow-premium);
    height: 90px;
    transition: all 0.3s ease;
}

.nav-link-premium {
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    align-items: center;
    color: #444 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 10px !important;
    transition: 0.3s;
    text-transform: capitalize;
    /* More friendly than all caps */
    gap: 10px;
}

.nav-link-premium i {
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background: #f0f2f5;
    margin-right: 0;
    margin-bottom: 0;
}

/* Hover to open dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-link-premium:hover {
    color: var(--premium-ember) !important;
}

.nav-link-premium:hover i {
    background: var(--premium-ember);
    color: #fff;
    transform: rotate(10deg);
}

.login-btn-premium {
    background: var(--premium-ember);
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(166, 81, 8, 0.3);
    margin-left: 10px;
}

.login-btn-premium:hover {
    background: var(--premium-orange);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Transparent Glass Dropdown */
.dropdown-menu-premium {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7) !important;
    /* Higher transparency */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 200px;
}

.dropdown-item-premium {
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-item-premium:hover {
    background: var(--premium-indigo);
    color: #fff;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(90deg, var(--premium-ember), #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* News Ticker Premium */
.news-ticker-premium {
    background: #f8f9fa;
    border-bottom: 2px solid var(--premium-ember);
    height: 45px;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.news-ticker-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.news-label {
    background: var(--premium-indigo);
    color: #fff;
    padding: 0 20px;
    height: 45px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.news-marquee {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.news-scroll {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-news 30s linear infinite;
}

.news-scroll span {
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
    margin-right: 50px;
}

@keyframes marquee-news {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* About Card Refinement */
.about-card-gradient {
    /* border-left: 5px solid var(--premium-ember) !important; */
    background: linear-gradient(to right, #ffffff, #fafafa) !important;
}

.btn-read-more-premium {
    background: var(--premium-ember);
    color: white !important;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    border-radius: 50px;
}

.btn-read-more-premium:hover {
    background: var(--premium-orange);
    transform: translateX(5px);
}

.btn-read-more-premium span {
    transition: 0.3s;
    display: inline-block;
}

.btn-read-more-premium:hover span {
    transform: translateX(3px);
}

/* Notice Hub (Modern Replacement for Marquee) */
.notice-hub {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-premium);
    height: 100%;
}

.notice-hub h4 {
    border-bottom: 2px solid var(--premium-ember);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-date {
    background: var(--premium-indigo);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 15px;
    white-space: nowrap;
}

/* Dignitary Cards - Premium */
.dignitary-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dignitary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.dignitary-img {
    width: 100px !important;
    height: 100px !important;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.dignitary-card:hover .dignitary-img {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--premium-ember);
}

/* Harris-Style Dribbble Cards (Feature Cards UI) */
.progress-section-premium {
    background: #ffffff;
    padding: 80px 0;
}

.harris-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    z-index: 1;
}

.harris-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    transition: width 0.4s ease;
    z-index: 2;
}

.harris-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.harris-card:hover::before {
    width: 10px;
}


.harris-pill {
    width: fit-content;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 1px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.harris-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    z-index: 2;
    position: relative;
    text-align: start;
}

.harris-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.harris-card:hover::after {
    opacity: 0.3;
    top: -20%;
    right: -20%;
}

.harris-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    max-width: 90%;
    z-index: 2;
    position: relative;
    text-align: start;
}

.harris-icon-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.harris-card:hover .harris-icon-circle {
    transform: translateY(-4px) scale(1.15);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.harris-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: 0.3s;
    z-index: 2;
}

.harris-link:hover {
    gap: 12px;
}

/* Luminous Variants */
.harris-card-orange::before {
    background: linear-gradient(to bottom, #fd7e14, #ff922b);
}

.harris-card-orange:hover {
    border-color: rgba(253, 126, 20, 0.2);
    box-shadow: 0 25px 50px rgba(253, 126, 20, 0.15);
}

.harris-card-purple::before {
    background: linear-gradient(to bottom, #7950f2, #845ef7);
}

.harris-card-purple:hover {
    border-color: rgba(121, 80, 242, 0.2);
    box-shadow: 0 25px 50px rgba(121, 80, 242, 0.15);
}

.harris-card-green::before {
    background: linear-gradient(to bottom, #40c057, #51cf66);
}

.harris-card-green:hover {
    border-color: rgba(64, 192, 87, 0.2);
    box-shadow: 0 25px 50px rgba(64, 192, 87, 0.15);
}

.harris-card-pink::before {
    background: linear-gradient(to bottom, #f06595, #f783ac);
}

.harris-card-pink:hover {
    border-color: rgba(240, 101, 149, 0.2);
    box-shadow: 0 25px 50px rgba(240, 101, 149, 0.15);
}

.harris-card-blue::before {
    background: linear-gradient(to bottom, #228be6, #339af0);
}

.harris-card-blue:hover {
    border-color: rgba(34, 139, 230, 0.2);
    box-shadow: 0 25px 50px rgba(34, 139, 230, 0.15);
}

.harris-card-yellow::before {
    background: linear-gradient(to bottom, #fab005, #fcc419);
}

.harris-card-yellow:hover {
    border-color: rgba(250, 176, 5, 0.2);
    box-shadow: 0 25px 50px rgba(250, 176, 5, 0.15);
}

.harris-card-teal::before {
    background: linear-gradient(to bottom, #0ca678, #12b886);
}

.harris-card-teal:hover {
    border-color: rgba(12, 166, 120, 0.2);
    box-shadow: 0 25px 50px rgba(12, 166, 120, 0.15);
}

.harris-card-indigo::before {
    background: linear-gradient(to bottom, #4c6ef5, #5c7cfa);
}

.harris-card-indigo:hover {
    border-color: rgba(76, 110, 245, 0.2);
    box-shadow: 0 25px 50px rgba(76, 110, 245, 0.15);
}

.harris-card-orange .harris-icon-circle i {
    color: #fd7e14;
}

.harris-card-purple .harris-icon-circle i {
    color: #7950f2;
}

.harris-card-green .harris-icon-circle i {
    color: #40c057;
}

.harris-card-pink .harris-icon-circle i {
    color: #f06595;
}

.harris-card-blue .harris-icon-circle i {
    color: #228be6;
}

.harris-card-yellow .harris-icon-circle i {
    color: #fab005;
}

.harris-card-teal .harris-icon-circle i {
    color: #0ca678;
}

.harris-card-indigo .harris-icon-circle i {
    color: #4c6ef5;
}

.harris-card-orange .harris-pill {
    color: #fd7e14;
}

.harris-card-purple .harris-pill {
    color: #7950f2;
}

.harris-card-green .harris-pill {
    color: #40c057;
}

.harris-card-pink .harris-pill {
    color: #f06595;
}

.harris-card-blue .harris-pill {
    color: #228be6;
}

.harris-card-yellow .harris-pill {
    color: #fab005;
}

.harris-card-teal .harris-pill {
    color: #0ca678;
}

.harris-card-indigo .harris-pill {
    color: #4c6ef5;
}


/* ============================================
   Metric Stat Cards (Attractive Redesign - No Progress Bars)
   ============================================ */
.metric-stat-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.metric-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent, #4c6ef5);
    opacity: 0.8;
}

.metric-stat-card.bronze {
    --accent: #a65108;
    --accent-light: #fff4eb;
}

.metric-stat-card.silver {
    --accent: #64748b;
    --accent-light: #f1f5f9;
}

.metric-stat-card.gold {
    --accent: #b45309;
    --accent-light: #fff7ed;
}

.metric-stat-card.platinum {
    --accent: #1e3a8a;
    --accent-light: #eff6ff;
}

.metric-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent, #4c6ef5);
}

.metric-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--accent-light, #f0f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent, #4c6ef5);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-stat-card:hover .metric-icon-wrap {
    background: var(--accent, #4c6ef5);
    color: #fff;
    transform: rotate(10deg);
}

.metric-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--premium-indigo);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 12px;
}

.metric-footer {
    font-size: 0.75rem;
    color: #555;
    background: #f8f9fa;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Premium Tabs Styling - Minimalist */
.gramsetu-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 10px;
}

.gramsetu-tab {
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid transparent;
    background: #f8f9fa;
    color: #495057;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.gramsetu-tab.active {
    background: #ffffff;
    border-color: #dee2e6;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gramsetu-tab:hover:not(.active) {
    background: #e9ecef;
}

/* Redesigned Video Cards Background Style */
.video-card-dribbble {
    position: relative;
    border-radius: 28px;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.video-card-dribbble:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.video-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.8s ease;
    filter: brightness(0.85);
}

.video-card-dribbble:hover .video-card-bg {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.video-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 50%;
}

.video-pill-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.video-indicator-arrow {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(10px);
}

.video-card-dribbble:hover .video-indicator-arrow {
    opacity: 1;
    transform: translateY(0);
}

.video-title-dribbble {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    color: #fff !important;
}

.video-meta-dribbble {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Premium Tabs Styling */
.gramsetu-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.gramsetu-tab {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    background: #f3f4f6;
    color: #4b5563;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.gramsetu-tab.active {
    background: var(--premium-ember);
    color: #fff;
}

.gramsetu-tab:hover:not(.active) {
    background: #e5e7eb;
    color: #1f2937;
}

/* End of Premium Styles */



/* Phase 2: Bottom Overhaul */
.premium-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
    border-left: 2px dashed rgba(249, 171, 27, 0.3);
    padding-left: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--premium-ember);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

.timeline-date {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--premium-ember);
    display: block;
    margin-bottom: 5px;
}

.media-tile {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    text-align: center;
}

.media-tile-overlay h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.3;
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.media-tile:hover img {
    transform: scale(1.08);
}

.buzz-board {
    background: var(--premium-indigo);
    border-radius: 15px;
    padding: 20px;
    color: white;
}

.buzz-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Phase 3: Gallery & Personalization */
.gallery-glass-arrow {
    width: 50px;
    height: 50px;
    background: #d18a15 !important;
    border: none !important;
    border-radius: 50%;
    color: #fffefc !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
    left: -60px;
}

.gallery-next {
    right: -60px;
}

.gallery-glass-arrow:hover {
    background: var(--premium-ember) !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.video-section .gallery-prev {
    left: -20px;
}

.video-section .gallery-next {
    right: -20px;
}

/* .btn-view-all-premium {
    background: linear-gradient(135deg, #F9AB1B, var(--premium-ember));
    color: white !important;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(166, 81, 8, 0.2);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: -20px;
    z-index: 1;
} */

.btn-view-all-premium {
    background: linear-gradient(135deg, var(--premium-orange), var(--premium-ember));
    color: white !important;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 20px rgba(166, 81, 8, 0.2);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* margin-top: -20px; */
    z-index: 1;
}

.btn-view-all-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(166, 81, 8, 0.4);
    background: linear-gradient(135deg, var(--premium-ember), var(--premium-orange));
}

.gramsetu-branding {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}


.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
}

.bg-orange {
    background-color: var(--premium-ember) !important;
}

.main-nav {
    border-bottom: 3px solid var(--premium-ember);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-carousel-img {
    height: 550px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 6s ease-in-out;
}

/* Full Image Hero Carousel */
.hero-carousel-item {
    height: 480px;
    /* Reduced height as requested */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Ensure last slide image is visible/contained better if it's cutting */
.carousel-item:last-child .hero-carousel-item {
    background-size: cover;
    /* Changed from potentially cutting to cover, or specific position */
    background-position: top center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    display: flex;
    align-items: center;
}

.hero-content-premium {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-left: 60px;
    /* Increased padding to avoid left arrow overlap */
    padding-right: 60px;
}

.hero-content-premium h1,
.hero-content-premium p,
.hero-content-premium .badge {
    color: #fff !important;
}

.hero-content-premium .btn-premium-white {
    background: #fff;
    color: var(--premium-indigo);
    border: none;
    font-weight: 700;
}

.hero-content-premium .btn-premium-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 700;
}

.cluster-circle:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
}

.carousel-indicators-premium button {
    width: 30px !important;
    height: 6px !important;
    border-radius: 3px !important;
    background-color: #fff !important;
    opacity: 0.5;
    transition: 0.3s;
}

.carousel-indicators-premium button.active {
    width: 50px !important;
    background-color: var(--premium-orange) !important;
    opacity: 1;
}

.hero-carousel-caption {
    background: rgba(30, 42, 94, 0.7);
    /* Premium indigo glass */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 40px;
    bottom: 20%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-carousel-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-carousel-subtitle {
    color: #F9AB1B;
    /* Ember/gold accent */
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(166, 81, 8, 0.8);
    /* Ember button */
    border-radius: 50%;
    background-size: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--premium-ember);
    transform: scale(1.1);
}

.news-section {
    background: #f1f3f5;
    color: #333;
    display: flex;
    align-items: center;
    height: 45px;
    border-bottom: 2px solid var(--premium-ember);
    position: relative;
    z-index: 100;
    /* overflow: hidden; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.news-label {
    background: #2c3e50;
    color: white;
    padding: 10px 25px 10px 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.news-label::after {
    content: "";
    position: absolute;
    left: 100%;
    top: auto;
    width: 0;
    height: 0;
    border-top: 12.5px solid transparent;
    border-bottom: 12.5px solid transparent;
    border-left: 15px solid #2c3e50;
}


.about-section {
    padding: 60px 0;
    background-color: #fff;
}

.about-title {
    color: var(--premium-ember);
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-read-more {
    background-color: var(--premium-ember);
    color: white;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-read-more:hover {
    background-color: var(--premium-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-premium {
    background-color: var(--premium-ember);
    color: white !important;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-premium:hover {
    background-color: var(--premium-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(166, 81, 8, 0.3);
}

.pm-designation {
    color: var(--premium-ember);
    font-weight: bold;
    font-size: 1.1rem;
}

.dignitary-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-top: 5px solid #28a745;
}

.dignitary-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.dignitary-card:last-child {
    border-right: none;
}

.dignitary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}


.dignitary-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.dignitary-post {
    color: #666;
    font-size: 0.9rem;
}

/* .stat-card {
    border-radius: 10px;
    overflow: hidden;
    color: white;
    display: flex;
    height: 100%;
    position: relative;
} */

.stat-icon-box {
    width: 80px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    padding: 15px;
    flex-grow: 1;
}

.stat-eye {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
}

.h-250 {
    height: 250px;
}

.h-500 {
    height: 500px;
}

.banner-height {
    height: 600px;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.bg-dark-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

/* District Card Premium Styles */
.district-card-premium {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 20px;
}

.district-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.district-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.district-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(166, 81, 8, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-explore-mini {
    background: #fff;
    color: var(--premium-ember);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.district-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(166, 81, 8, 0.2) !important;
}

.district-card-premium:hover .district-img-wrapper img {
    transform: scale(1.1);
}

.district-card-premium:hover .district-overlay-premium {
    opacity: 1;
}

.district-card-premium:hover .btn-explore-mini {
    transform: translateY(0);
}

.district-info-premium {
    padding: 15px;
    background: #fff;
}

.district-info-premium h5 {
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.district-info-premium .small {
    color: #D97706;
    font-weight: 600;
}

/* Block Card Premium Styles */
.block-card-premium {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid var(--premium-ember);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 100%;
    color: #000;
}

.block-card-premium:hover {
    transform: translateX(10px);
    background: var(--premium-ember);
    color: #fff;
}

.block-card-premium h5 {
    margin: 0;
    font-weight: 700;
    color: #000;
}

.block-card-premium:hover h5 {
    color: #fff;
}

/* Card-Based District Grid (Government Portal Style) */
.district-section-title {
    color: var(--premium-ember);
    /* Purple from SS */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.district-section-title::before,
.district-section-title::after {
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--premium-ember);
    flex-shrink: 0;
}

.district-card-link {
    text-decoration: none !important;
    display: block;
    transition: transform 0.3s ease;
}

.district-card-link:hover {
    transform: translateY(-5px);
}

.district-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px 10px 0px 0px;
}

.district-card-link:hover .district-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.district-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    border-radius: 10px 10px 0px 0px;
}

.district-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.district-card-link:hover .district-card-img {
    transform: scale(1.05);
}

.district-card-body {
    padding: 15px 10px;
    text-align: center;
    background: #fff;
}

.district-name-en {
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.district-name-mr {
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .district-section-title {
        font-size: 1.5rem;
        padding: 0 30px;
    }

    .district-section-title::before,
    .district-section-title::after {
        width: 20px;
    }
}

/* District at Glance Styles */
.glance-section {
    padding: 60px 0;
    background: #fff;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.glance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.glance-item:hover {
    transform: translateY(-5px);
}

.glance-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.glance-item p {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.glance-bg-red {
    background-color: #d63031;
}

.glance-bg-green {
    background-color: #27ae60;
}

.glance-bg-orange {
    background-color: #e67e22;
}

.glance-bg-grey {
    background-color: #636e72;
}

.glance-bg-blue {
    background-color: #0984e3;
}

/* Administrative Table Styles (Block Page) */
.admin-setup-section {
    padding: 40px 0;
    background: #fff;
}

.breadcrumb-nav {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 25px;
    text-align: left;
    padding-left: 20px;
}

.breadcrumb-nav a {
    color: var(--premium-ember);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav span {
    margin: 0 8px;
    color: #ccc;
}

.admin-table-container {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.table-admin {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.table-admin thead {
    background-color: var(--premium-ember);
    color: white;
}

.table-admin th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.table-admin td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    color: #333;
    vertical-align: middle;
    font-size: 0.92rem;
}

.table-admin tbody tr:nth-child(even) {
    background-color: #fcfcfc;
}

.table-admin tbody tr:hover {
    background-color: #fff9f9;
}

@media (max-width: 992px) {
    .glance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .glance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Start Media Spotlight Redesign Styles */
.bg-indigo {
    background-color: var(--premium-indigo) !important;
}

.bg-indigo-light {
    background-color: rgba(30, 42, 94, 0.2);
}

.bg-dark-overlay-soft {
    background: rgba(0, 0, 0, 0.5);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Thumbnail highlighting */
.spotlight-thumb {
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
    position: relative;
}

.spotlight-thumb.active {
    border-color: var(--premium-ember) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 81, 8, 0.2);
}

.spotlight-thumb:hover {
    border-color: rgba(166, 81, 8, 0.5) !important;
}

.thumb-label-mini {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    padding: 2px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Nav Dots */
.carousel-nav-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav-dots .dot.active {
    background: var(--premium-orange);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cursor-pointer {
    cursor: pointer;
}

/* End Media Spotlight Redesign Styles */

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

.mobile-header-actions {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 1199px) {
    .mobile-header-actions {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
}

.mobile-header-actions .lang-switcher select {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 5px 10px !important;
    height: 35px;
    font-size: 0.75rem;
}

.mobile-header-actions .mobile-nav-toggle {
    display: flex !important;
    cursor: pointer;
}

/* --- Responsive Header & Mobile Navigation Updates --- */

/* Desktop Header Reset - Handled by standard Bootstrap classes now */
@media (min-width: 1200px) {
    .navmenu-premium {
        display: block !important;
        width: auto !important;
        position: static !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .navmenu-premium ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .navmenu-premium li {
        width: auto !important;
        white-space: nowrap !important;
    }

    /* Desktop Dropdown Visibility Correction */
    .navmenu-premium .dropdown-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        position: absolute;
    }

    .navmenu-premium .dropdown:hover>.dropdown-menu,
    .navmenu-premium .dropdown.show>.dropdown-menu {
        display: block !important;
        /* Force display on desktop hover */
        opacity: 1;
        visibility: visible;
    }

    /* Premium Dropdown Styling (Matching District/Premium Look) */
    .dropdown-menu-premium {
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        padding: 10px !important;
        min-width: 200px !important;
    }

    .dropdown-item-premium {
        border-radius: 8px !important;
        padding: 10px 15px !important;
        font-weight: 500 !important;
        color: var(--premium-indigo) !important;
        transition: 0.2s !important;
    }

    .dropdown-item-premium:hover {
        background: rgba(166, 81, 8, 0.05) !important;
        color: var(--premium-ember) !important;
        transform: translateX(5px);
    }
}

@media (max-width: 1199px) {
    .header-premium {
        height: 65px !important;
        padding: 5px 0 !important;
    }

    .header-premium .logo img {
        width: 100px !important;
        height: auto !important;
        margin-right: 8px !important;
    }

    .header-premium .logo h4,
    .header-premium .logo h5,
    .header-premium .logo h6 {
        font-size: 0.75rem !important;
        line-height: 1.1 !important;
        max-width: 180px;
        margin: 0 !important;
    }

    .header-premium .logo small {
        font-size: 0.65rem !important;
    }

    /* Hero Carousel Responsiveness & Centering */
    .hero-carousel-item {
        height: 70vh !important;
        min-height: 450px;
    }

    .hero-content-premium {
        text-align: center !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }

    .hero-content-premium h1 {
        font-size: 1.75rem !important;
        margin-top: 20px !important;
    }

    .hero-content-premium p {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .hero-content-premium .d-flex {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .hero-content-premium .btn {
        width: 100% !important;
        padding: 12px 25px !important;
    }

    /* Arrow visibility fix for Mobile */
    .gallery-glass-arrow {
        display: flex;
        opacity: 0.9 !important;
        width: 40px !important;
        height: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1000 !important;
    }

    /* Ensure d-none correctly hides elements even if they have gallery-glass-arrow class */
    .d-none.gallery-glass-arrow {
        display: none !important;
    }

    .gallery-prev {
        left: 5px !important;
    }

    .gallery-next {
        right: 5px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
    }

    /* AOS Visibility Fallback - Ensures content is never hidden if JS fails */
    [data-aos] {
        opacity: 1 !important;
        transform: translate(0) !important;
        transition: none !important;
    }

    /* Gallery & Media Responsiveness */
    .gallery-item img, .gallery-item-wrap img {
        height: 250px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
    .media-tile {
        height: 140px !important;
    }

    /* Mobile Nav Toggle Styling */
    /* Mobile Nav Toggle Styling */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 35px !important;
        /* Larger for better touch */
        height: 35px !important;
        background: var(--premium-ember);
        color: #fff !important;
        cursor: pointer;
        z-index: 10005 !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(166, 81, 8, 0.3);
        transition: 0.3s;
        position: relative;
        pointer-events: auto !important;
    }

    /* Side Drawer Navigation */
    .navmenu-premium {
        position: fixed;
        top: 0;
        right: -320px;
        /* Start off-screen */
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 9998;
        padding: 30px 20px 30px;
        display: block !important;
        overflow-y: auto;
    }

    .mobile-nav-active .navmenu-premium {
        right: 0;
        /* Slide in */
    }

    /* Professional Overscroll/Backdrop */
    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active::before {
        content: "";
        position: fixed;
        inset: 0;
        /* background: rgba(18, 25, 59, 0.5); */
        z-index: 9997;
    }

    /* Responsive Menu List */
    .navmenu-premium ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        align-items: flex-start !important;
    }

    .navmenu-premium .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .navmenu-premium .nav-link-premium {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 18px !important;
        border-radius: 12px;
        background: #f8f9fa;
        color: var(--premium-indigo) !important;
        border: 1px solid transparent;
        transition: 0.3s;
    }

    .navmenu-premium .nav-link-premium i {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        width: 38px;
        height: 38px;
        margin-right: 5px;
    }

    .navmenu-premium .nav-link-premium:hover,
    .navmenu-premium .nav-link-premium.active {
        background: #fff;
        border-color: rgba(166, 81, 8, 0.2);
        color: var(--premium-ember) !important;
        transform: translateX(5px);
    }

    /* Drawer Buttons */
    .navmenu-premium .login-btn-premium {
        margin: 25px 0 0 0 !important;
        width: 100%;
        text-align: center;
        display: block;
        padding: 15px !important;
        font-size: 1rem;
    }

    .navmenu-premium .lang-switcher {
        margin-top: 20px;
        width: 100%;
    }

    .navmenu-premium .lang-switcher select {
        width: 100%;
        height: 50px;
        border-radius: 12px;
        background-color: #f0f2f5;
        font-weight: 600;
        padding-left: 15px !important;
    }

    /* Side Drawer Navigation Scrollbar */
    .navmenu-premium::-webkit-scrollbar {
        width: 5px;
    }

    .navmenu-premium::-webkit-scrollbar-thumb {
        background: rgba(166, 81, 8, 0.2);
        border-radius: 10px;
    }

    /* Dropdown Handling in Drawer */
    .navmenu-premium .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        padding: 5px 0 5px 20px !important;
        background: rgba(0, 0, 0, 0.03) !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 12px;
        margin-top: 5px !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .navmenu-premium .dropdown.active>.dropdown-menu,
    .navmenu-premium .dropdown.show>.dropdown-menu {
        display: block !important;
        height: auto !important;
        max-height: 1000px !important;
        /* Ensure it expands */
        overflow: visible !important;
    }

    /* Drawer Footer Flex (Non-survey pages) */
    .navmenu-premium .drawer-footer-flex {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 25px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
    }

    .navmenu-premium .drawer-footer-flex .login-btn-premium {
        margin: 0 !important;
        flex: 1;
        padding: 12px !important;
    }

    .navmenu-premium .drawer-footer-flex .lang-switcher {
        margin: 0 !important;
        width: auto !important;
    }

    .navmenu-premium .drawer-footer-flex .lang-switcher select {
        height: 48px;
        min-width: 80px;
    }

    .main-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-premium .logo div.d-none.d-lg-block {
        display: block !important;
        /* Show but minimize */
    }

    .header-premium .logo h4 {
        font-size: 0.7rem !important;
        max-width: 150px;
    }

    .header-premium .logo small {
        display: none;
        /* Hide subtitle on smallest screens */
    }
}

@media (max-width: 480px) {
    .header-premium .logo img {
        width: 100px !important;
    }

    .header-premium .logo h4 {
        display: none;
        /* Only logo on phone */
    }

    .header-premium {
        height: 70px !important;
    }
}

/* --- Desktop Compact Mode (For 1200px - 1440px) --- */
@media (min-width: 1200px) and (max-width: 1440px) {
    .nav-link-premium {
        font-size: 0.8rem !important;
        padding: 5px 8px !important;
        gap: 5px !important;
    }

    .nav-link-premium i {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem !important;
    }


    .header-premium .logo img {
        width: 130px !important;
    }

    .header-premium .logo h4,
    .header-premium .logo h5 {
        font-size: 0.8rem !important;
    }

    .login-btn-premium {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }
}

/* Global AOS Fallback - Ensures content is never hidden on Desktop if JS or overflow-x breaks scroll listener */
[data-aos] {
    opacity: 1 !important;
    transform: translate(0) !important;
    transition: none !important;
}