:root {
  --primary-color: #002147; /* Deep Navy Blue */
  --secondary-color: #1b4d3e; /* Deep Forest Green */
  --dark-color: #0a0a0a; /* Charcoal Black */
  --accent-color: #D4AF37; /* Metallic Gold */
  --accent-hover: #b5952f;
  --text-light: #ffffff;
  --text-dark: #2c2c2c;
  --bg-light: #f8f9fa;
  --bg-dark: #121212;
  
  --font-heading: 'Merriweather', serif;
  --font-body: 'Roboto', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8f9fa;
  background-color: var(--bg-light);
  color: #2c2c2c;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #002147;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Utility Classes */
.text-primary { color: #002147 !important; color: var(--primary-color) !important; }
.text-secondary { color: #1b4d3e !important; color: var(--secondary-color) !important; }
.text-accent { color: #D4AF37 !important; color: var(--accent-color) !important; }
.bg-primary { background-color: #002147 !important; background-color: var(--primary-color) !important; }
.bg-dark { background-color: #0a0a0a !important; background-color: var(--dark-color) !important; }

.btn-primary {
  background-color: #002147;
  background-color: var(--primary-color);
  border: 2px solid #002147;
  border: 2px solid var(--primary-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.btn-primary:hover {
  background-color: transparent;
  color: #002147;
  color: var(--primary-color);
}

.btn-accent {
  background-color: #D4AF37;
  background-color: var(--accent-color);
  border: 2px solid #D4AF37;
  border: 2px solid var(--accent-color);
  color: #002147;
  color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.btn-accent:hover {
  background-color: transparent;
  color: #D4AF37;
  color: var(--accent-color);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #D4AF37;
  background-color: var(--accent-color);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
    background: var(--primary-color) !important;
    border-bottom: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: var(--text-light);
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 80px;
    margin-right: 15px;
    width: auto; /* Ensure aspect ratio is maintained */
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* Enhanced Dropdown Menu - Classic White Style */
.navbar .dropdown-menu {
    margin-top: 10px;
    border: none;
    border-top: 3px solid var(--accent-color); /* Gold top accent */
    border-radius: 0 0 4px 4px;
    background: #ffffff; /* Classic White Background */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Soft, elegant shadow */
    padding: 8px 0;
    min-width: 260px;
    max-height: 70vh;
    overflow-y: auto;
}

.navbar .dropdown-menu .dropdown-item {
    color: #333333; /* Dark Grey Text for readability */
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-bottom: 1px solid #f0f0f0; /* Very subtle separator */
    transition: all 0.2s ease-in-out;
    position: relative;
}

.navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

/* Classic Hover Effect */
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color); /* Navy Blue on hover */
    background-color: #f8f9fa; /* Very light grey background */
    padding-left: 28px; /* Slight shift for feedback */
}

/* Accent bar on hover (left) */
.navbar .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color); /* Navy bar */
    transition: width 0.2s ease;
}



/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 6px 6px 6px;
    display: none; /* Hidden by default */
}

/* Removed hover effect for click-based toggle */
/* .dropdown-submenu:hover > .dropdown-menu {
    display: block; 
} */
/* .dropdown-submenu:hover > .dropdown-menu {
    display: block;
} */

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #555;
}

@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-menu {
        display: none;
        position: static;
        margin-left: 20px;
        border: none;
        box-shadow: none;
    }
    
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
}
*/
.navbar .dropdown-menu .dropdown-item:hover::before {
    width: 4px;
}

@media (min-width: 992px) {
    .navbar {
        width: 100%;
        padding: 15px 40px; /* Reduced right padding to fit more items */
    }
    
    .navbar.nav-sticky {
        padding: 10px 40px; /* Reduced right padding to fit more items */
    }
    
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
        white-space: nowrap;
    }

    /* Classic Fade Animation */
    .navbar .nav-item > .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 110%; /* Subtle drop distance */
        transition: all 0.3s ease;
        transform: translateY(10px);
    }

    .navbar .nav-item:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100%;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
    }
    
    .navbar .navbar-brand img {
        max-height: 60px;
    }
    
    .navbar-collapse {
        background: var(--primary-color);
        padding: 15px;
        border-top: 1px solid var(--accent-color);
        margin-top: 10px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .navbar .dropdown-menu {
        max-height: 40vh;
        overflow-y: auto;
        background: #ffffff;
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0;
    }
}

/* Fix for small laptops (1024px to 1366px) */
@media (min-width: 992px) and (max-width: 1366px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 8px; /* Reduce padding */
        font-size: 12px;   /* Reduce font size */
    }
    
    .navbar .navbar-brand img {
        max-height: 60px; /* Smaller logo */
    }
}

.video-container {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

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

.typewriter {
  position: absolute;
  top: 90%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.typewriter h2 {
  overflow: hidden;
  border-right: 0.1em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.1em;
  animation: typing 7.5s steps(40) infinite, blink-caret 0.75s infinite;
  color: white;
}

@media (max-width: 767.98px) {
  .typewriter {
    left: 50%;
  }

  .typewriter h2 {
    font-size: 18px;
  }
}

.typewriter {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-10%, -50%);
  color: white;
  z-index: 2;
  max-width: 600px;
}

/* The typing effect */
@keyframes typing {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}

/* New Styles for D.R.Y Website */

.section-title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745; /* Green for Nigeria/Yoruba/Growth */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.state-icon {
  color: #28a745;
  margin-bottom: 15px;
}

.about-dry-section .card {
  border-radius: 15px;
  background: #f8f9fa;
}

.about-dry-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.alert-warning {
    border-left: 5px solid #856404;
    font-weight: 500;
}

/* Official Government Notice Styles - Matched to User Screenshot (Wide & Compact) */
.official-notice-container {
    background-color: #f8f9fa;
    padding: 60px 0; /* Reduced padding slightly */
    position: relative;
}

.official-notice-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px; /* Increased max-width significantly */
    margin: 0 auto;
}

.official-notice-card {
    background: #fff;
    border: 1px solid #eee;
    border-left: 8px solid #d4af37; /* The exact Gold/Mustard Left Border */
    border-radius: 2px; /* Slightly sharper corners */
    padding: 25px 35px; /* Reduced vertical padding for "hight kam" */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    width: 100%; /* Ensure full width */
    margin: 0 auto;
    text-align: left;
}

/* Flex layout for image + content */
.notice-content-flex {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced gap */
}

@media (min-width: 768px) {
    .notice-content-flex.has-image {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .notice-image-col {
        flex: 0 0 300px; /* Fixed width for image column to keep it compact */
        max-width: 300px;
    }
    
    .notice-text-col {
        flex: 1 1;
        padding-top: 5px; /* Align with image top */
    }
}

.notice-image-wrapper {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.notice-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.notice-header {
    margin-bottom: 10px; /* Reduced margin */
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: none; /* No border in screenshot */
    padding-bottom: 0;
}

.notice-icon {
    font-size: 1.8rem; /* Slightly smaller icon */
    color: #dc3545; /* Red Icon */
}

.notice-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #002366; /* Dark Royal Blue */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-size: 1.4rem; /* Adjusted font size */
}

.notice-body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555; /* Dark Grey */
    margin-bottom: 10px; /* Reduced margin */
    position: relative;
    z-index: 2;
}

.notice-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

/* =========================================
   NEW SECTIONS STYLES
   ========================================= */

/* --- Leader Section (Enhanced) --- */
.leader-section-container {
    /* Background moved to ::before for blur effect */
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.leader-section-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/static/media/backgrund-3.c2c041b94acd1dbf883c.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(5px); /* BLUR EFFECT APPLIED */
    transform: scale(1.1); /* Scale up to hide blurred edges */
    z-index: 0;
}

.leader-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly lighter overlay to let blur show through */
    z-index: 1;
}

.position-relative {
    position: relative;
    z-index: 2;
}

.leader-card {
    position: relative;
    background: transparent;
    max-width: 450px; /* Medium size constraint */
    margin: 0 auto;
}

.leader-image-wrapper {
    position: relative;
    border-radius: 12px; /* Softer corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #fff;
    min-height: auto;
    display: block;
    border: 4px solid rgba(255, 255, 255, 0.2); /* Glassy border effect */
    padding: 5px; /* Frame spacing */
}

.leader-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px; /* Inner radius */
}

.leader-image-wrapper:hover .leader-main-image {
    transform: scale(1.05);
}

.leader-name-tag {
    position: absolute;
    bottom: 20px; /* Floating tag */
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-bottom: 4px solid #d4af37; /* Gold accent instead of green */
}

.leader-name-tag h3 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
}

.leader-quote-box {
    background: rgba(255, 255, 255, 0.1); /* Glassmorphism */
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #d4af37; /* Gold accent */
    color: #fff; /* White text for contrast on dark bg */
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.quote-icon {
    font-size: 2rem;
    color: #d4af37; /* Gold icon */
}

.green-highlight-box {
    background: #d4af37; /* Changed to Gold/Mustard to match theme */
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.leader-heading {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: #fff;
}

.leader-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    line-height: 1.8;
    font-weight: 400;
}

/* --- Services Section (Tan/Beige) --- */
.services-section-container {
    background: #f9f5eb; /* Light beige background */
    padding: 80px 0;
}

.services-list-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.services-section-container .row.align-items-center {
    align-items: stretch !important;
}

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

.service-item-clickable {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-item-clickable:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-link {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-icon-active {
    color: #28a745;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-arrow {
    margin-left: auto; /* Pushes arrow to the right */
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Hover Effects for Service List */
.service-item-clickable:hover .service-link {
    background: #f0fdf4; /* Light green bg */
    color: #1e7e34;
    padding-left: 20px; /* Slide text right */
}

.service-item-clickable:hover .service-icon-active {
    transform: scale(1.2);
}

.service-item-clickable:hover .service-arrow {
    color: #28a745;
    transform: translateX(5px); /* Slide arrow right */
}

/* Campaign Poster Image Wrapper */
.campaign-poster-wrapper {
    width: 100%;
    max-width: 450px; /* Reduced max-width for medium size */
    margin: 0 auto; /* Center the image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.campaign-poster-wrapper:hover {
    transform: translateY(-5px);
}

.campaign-poster-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Removed old CSS poster styles */

/* --- Declaration Section --- */
.declaration-section-container {
    padding: 60px 0;
    background: #f0f8ff; /* Alice Blue */
}

.declaration-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.declaration-center-emblem {
    grid-column-start: 1;
    grid-column-end: -1;
    text-align: center;
    margin-bottom: 20px;
}

.declaration-center-emblem img {
    width: 100px;
    height: auto;
}

.emblem-text {
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 5px;
}

.declaration-card {
    padding: 20px;
    color: #fff;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.declaration-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.top-left {
    background: #00bfff; /* Deep Sky Blue */
    grid-column-start: 1;
    grid-column-end: 2;
}

.top-right {
    background: #ffd700; /* Gold */
    color: #000;
    grid-column-start: 2;
    grid-column-end: 3;
}

.bottom-left {
    background: #228b22; /* Forest Green */
    grid-column-start: 1;
    grid-column-end: 2;
}

.bottom-right {
    background: #000080; /* Navy */
    grid-column-start: 2;
    grid-column-end: 3;
}

.declaration-center-text {
    grid-column-start: 1;
    grid-column-end: -1;
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    border: 1px solid #eee;
}

.declaration-center-text h4 {
    color: #000080;
    font-size: 1rem;
    font-weight: 800;
}

.declaration-footer {
    background: #0033a0;
    color: #fff;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .declaration-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .leader-heading {
        font-size: 2rem;
    }
    .leader-image-wrapper, .leader-image-placeholder {
        min-height: 300px;
    }
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    padding-top: 80px;
    background: var(--primary-color);
    border-top: 5px solid var(--accent-color);
    color: #ffffff;
    font-family: var(--font-body);
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: .3s;
    text-decoration: none;
    font-size: 15px;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
}

.footer .footer-link a:hover {
    color: var(--accent-color);
    letter-spacing: 1px;
    padding-left: 5px;
}

.footer .footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
}

.footer .footer-contact i {
    width: 25px;
    color: var(--accent-color);
}

.footer .footer-social {
    position: relative;
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer .footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.footer .footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 15px;
    color: white;
    width: 100%;
    padding: 0 15px;
    transition: all 0.3s;
}

.footer .footer-newsletter input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.footer .footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter .btn-custom {
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: var(--font-heading);
    cursor: pointer;
}

.footer .footer-newsletter .btn-custom:hover {
    background: white;
    color: var(--primary-color);
}

.footer .footer-newsletter h6 {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    font-size: 15px;
}

.footer .copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer .copyright a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.footer .copyright a:hover {
    color: white;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}
/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 0 0 60px 0;
    background: transparent;
}

.contact .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.contact .section-header {
    margin-bottom: 45px;
}

.contact .section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Classic Contact Info Sidebar */
.contact-info-classic {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-top: 5px solid var(--accent-color);
}

.contact-info-classic .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-classic .info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-classic .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 20px;
    margin-top: 5px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-classic .info-item:hover i {
    background: var(--accent-color);
    color: #fff;
}

.contact-info-classic .info-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.contact-info-classic .info-item p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Classic Contact Form */
.contact .contact-form {
    position: relative;
    width: 100%;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--accent-color);
}

.contact .contact-form .sent {
    padding-bottom: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.contact .contact-form .control-group {
    margin-bottom: 20px;
}

.contact .contact-form input,
.contact .contact-form textarea {
    padding: 15px 20px;
    background: #fdfdfd;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: #555;
    transition: all 0.3s;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    border-color: var(--accent-color);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.contact .contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact .contact-form .btn-custom {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact .contact-form .btn-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s;
    z-index: -1;
}

.contact .contact-form .btn-custom:hover {
    color: var(--primary-color);
}

.contact .contact-form .btn-custom:hover::before {
    width: 100%;
}

@media (max-width: 991.98px) {
    .contact .contact-info-classic {
        margin-bottom: 30px;
    }
}
.landing {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background-color: #002147; /* Fallback color */
}

.landing-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05); /* Slight zoom for movement effect */
}

.landing-slide.active {
    opacity: 1;
    transform: scale(1); /* Zoom out effect on active */
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 33, 71, 0.95) 0%,   /* Deep Navy with high opacity */
        rgba(0, 33, 71, 0.85) 50%,
        rgba(0, 33, 71, 0.4) 100%
    );
    z-index: 1;
}

.landing-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    padding: 50px 15px;
}

.official-badge {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.official-badge .line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-right: 15px;
}

.official-badge h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 0;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text .lead {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 0; /* Square buttons for authoritative look */
    transition: all 0.3s ease;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

@media (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .landing {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
    
    .landing-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 33, 71, 0.95) 0%,
            rgba(0, 33, 71, 0.8) 100%
        );
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

.back-to-top {
    position: fixed;
    display: block;
    background: rgba(253, 190, 51, 0.7);
    width: 44px;
    height: 44px;
    text-align: center;
    border-radius: 50px;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    transition: background 0.5s;
    z-index: 10;
  }
  
  .back-to-top i {
    color: #4a4c70;
    padding-top: 11px;
  }
  
  .back-to-top:hover {
    background: rgba(253, 190, 51, 1);;
  }
  
  .back-to-top:hover i {
    color: rgb(1, 24, 54);
    font-size: 22px;
  }
  
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.about-title-wrapper {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.about-heading {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 10px;
}

.about-content {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    cursor: pointer;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--accent-color);
    z-index: -1;
    transition: transform 0.3s ease;
    border-radius: 15px; /* Match video border radius */
}

.about-image-wrapper:hover::before {
    transform: translate(-10px, 10px);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Video Player Styling */
.video-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.2);
    min-height: 250px;
    background: #000;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(253, 200, 0, 0.9); /* Accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(253, 200, 0, 0.3); /* Ripple effect */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-left: 5px; /* Center alignment adjustment */
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    background: #fff;
}

.video-wrapper:hover .play-button i {
    color: var(--accent-color);
}

/* Timeline / Milestones Mini-section */
.milestones-wrapper {
    margin-top: 3rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.milestone-item {
    margin-bottom: 20px;
    position: relative;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 6px;
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

.milestone-date {
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
}

.milestone-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-top: 40px;
        padding-left: 0;
    }
    
    .about-image-wrapper::before {
        left: -10px;
        top: 10px;
    }
}

.states-section {
    position: relative;
    padding: 0;
    margin-bottom: 0;
    background: #ffffff;
}

/* --- Sovereignty Text Section (The Dark Blue Area) --- */

.sovereignty-text-container {
    /* Rich background with image and overlay */
    background: linear-gradient(rgba(0, 33, 71, 0.92), rgba(0, 15, 30, 0.95)), url(/static/media/carousel-1.2b34ba3a5ff4f900749f.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect for "best" feel */
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--accent-color);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.5);
}

/* Decorative watermark logo */
.sovereignty-text-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url(/static/media/logo.dd191e7c54c53a19bfc4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08; /* Slightly more visible than before */
    pointer-events: none;
    z-index: 0;
}

/* The "Plaque" or Framed Text Box */
.sovereignty-text {
    position: relative;
    padding: 60px 50px;
    /* Glassmorphism effect */
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    border: 2px solid var(--accent-color);
    border-radius: 2px; /* Sharp corners for classic look */
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    /* Double border effect using box-shadow */
    box-shadow: 
        0 0 0 8px rgba(0, 33, 71, 0.8), /* Gap */
        0 0 0 10px var(--accent-color), /* Outer gold line */
        0 20px 50px rgba(0,0,0,0.5); /* Deep shadow */
}

/* Decorative Crown Icon at the top of the frame */
.sovereignty-text::after {
    content: "\f521"; /* FontAwesome Crown Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sovereignty-text p {
    font-family: 'Merriweather', serif; /* Explicitly using the serif font */
    font-size: 1.35rem;
    line-height: 2.2;
    color: #f0f0f0;
    margin: 0;
    font-weight: 300;
    text-align: justify;
    text-justify: inter-word;
}

/* Classic Drop Cap */
.sovereignty-text p::first-letter {
    font-size: 4.5rem;
    float: left;
    line-height: 0.75;
    padding-right: 20px;
    padding-top: 5px;
    color: var(--accent-color);
    font-family: 'Merriweather', serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- State Cards (The Top Row) --- */

.state-card-new {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    position: relative;
    cursor: pointer;
    overflow: hidden; /* For hover effects */
}

/* Subtle pattern on card background */
.state-card-new::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    transition: opacity 0.3s;
}

/* Gold line at bottom */
.state-card-new::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

.state-card-new:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
}

.state-card-new:hover::after {
    width: 100%;
}

.state-number {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    color: rgba(0, 33, 71, 0.08); /* Very subtle */
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.4s ease;
}

.state-card-new:hover .state-number {
    color: var(--accent-color);
    transform: scale(1.05) translate(5px, -5px);
    opacity: 0.3;
}

.state-title-new {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.state-card-new:hover .state-title-new {
    color: var(--primary-color); /* Keep it dark, or maybe gold? Let's keep dark for contrast */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .state-card-new {
        min-height: 180px;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .sovereignty-text {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .sovereignty-text p {
        font-size: 1.15rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .sovereignty-text-container {
        padding: 60px 0;
    }
    
    .sovereignty-text {
        padding: 30px 20px;
        border-width: 1px;
        box-shadow: 
            0 0 0 4px rgba(0, 33, 71, 0.8), 
            0 0 0 5px var(--accent-color), 
            0 10px 20px rgba(0,0,0,0.3);
    }
    
    .sovereignty-text p::first-letter {
        font-size: 3.5rem;
        padding-right: 10px;
    }
}

.seven-states-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa; /* Light background to match website theme */
    color: #333;
    overflow: hidden;
}

/* Add a subtle pattern overlay for texture */
.seven-states-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ccc 1px, transparent 1px); /* Darker dots for light bg */
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.seven-states-title {
    font-family: var(--font-heading);
    font-size: 2.8rem; /* Balanced size */
    font-weight: 800;
    color: #003366; /* Deep Navy for title */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* text-shadow: 0 2px 4px rgba(0,0,0,0.1); Removed strong shadow */
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #d4af37, #f2d06b, #d4af37); /* Gold Gradient */
    margin: 0 auto 30px;
    border-radius: 2px;
}

.seven-states-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem; /* Medium readable size */
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: #555; /* Darker grey for subtitle */
}

.seven-state-card {
    background: #ffffff;
    border-radius: 12px; /* Soft rounded corners */
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* Softer shadow */
    position: relative;
    border: 1px solid #eee; /* Light border for definition */
}

/* Green accent line at the top */
.seven-state-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #28a745, #218838); /* Green Gradient */
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.seven-state-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.seven-state-card:hover::after {
    height: 8px; /* Thickens on hover */
}

.card-img-wrapper {
    height: 220px; /* Optimal height */
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid #d4af37; /* Gold separator */
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.seven-state-card:hover .card-img-wrapper img {
    transform: scale(1.15);
}

/* Overlay on image hover */
.card-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.2); /* Subtle blue tint */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.seven-state-card:hover .card-img-wrapper::before {
    opacity: 1;
}

.card-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    color: #003366; /* Deep Navy */
    font-family: var(--font-heading);
    font-size: 1.35rem; /* Medium-Large */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
}

.card-desc {
    color: #555;
    font-family: var(--font-body);
    font-size: 0.95rem; /* Medium size */
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    background: transparent;
    border: 2px solid #003366;
    color: #003366;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 25px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin: auto auto 0; /* Center horizontally */
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #003366;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-read-more:hover {
    color: white;
    border-color: #003366;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

.btn-read-more:hover::before {
    width: 100%;
}

.initiatives-section {
    padding: 80px 0;
    background-color: white;
}

.initiatives-header {
    text-align: center;
    margin-bottom: 60px;
}

.initiatives-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.initiatives-header p {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.initiative-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.initiative-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.initiative-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.initiative-card:hover .initiative-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.initiative-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.initiative-desc {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.news-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.news-header p {
    font-family: var(--font-body);
    color: var(--text-dark);
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-top: 3px solid var(--accent-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
}

.news-content {
    padding: 20px;
}

.news-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-author {
    margin-left: 8px;
}

.news-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-family: var(--font-body);
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt.expanded {
    -webkit-line-clamp: unset;
}

.news-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    cursor: pointer;
}

.news-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.news-link:hover {
    color: var(--accent-color);
}

.news-link:hover i {
    margin-left: 10px;
}

/* Featured News Layout (First item) */
.featured-news {
    margin-bottom: 40px;
}

.featured-news .news-card {
    display: flex;
    flex-direction: row;
    height: 400px;
}

.featured-news .news-img-wrapper {
    width: 60%;
    height: 100%;
}

.featured-news .news-content {
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news .news-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .featured-news .news-card {
        flex-direction: column;
        height: auto;
    }
    
    .featured-news .news-img-wrapper,
    .featured-news .news-content {
        width: 100%;
    }
    
    .featured-news .news-img-wrapper {
        height: 250px;
    }
}

.news-article-page {
    background-color: var(--bg-light);
}

.news-article-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}

.news-article-pill {
    background: var(--primary-color);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.news-article-date i {
    margin-right: 5px;
    color: var(--accent-color);
}

.news-article-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.news-article-subheading {
    font-family: var(--font-body);
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.news-article-hero {
    margin-bottom: 24px;
}

.news-article-hero img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 420px;
}

.news-gallery-section {
    margin: 10px 0 24px;
}

.news-gallery-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.news-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 12px;
    gap: 12px;
}

.news-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

.news-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.news-article-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.news-article-body p {
    margin-bottom: 14px;
}

.content-block {
    margin-bottom: 20px;
}

.content-block.text-block {
    /* Rich text styling */
}

.content-block.text-block h1,
.content-block.text-block h2,
.content-block.text-block h3,
.content-block.text-block h4,
.content-block.text-block h5,
.content-block.text-block h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.content-block.text-block h1 { font-size: 2.2rem; }
.content-block.text-block h2 { font-size: 1.8rem; }
.content-block.text-block h3 { font-size: 1.5rem; }
.content-block.text-block h4 { font-size: 1.3rem; }
.content-block.text-block h5 { font-size: 1.1rem; }
.content-block.text-block h6 { font-size: 1rem; }

.content-block.text-block p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-block.image-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.content-block.video-block {
    margin: 20px 0;
}

.content-block.video-block iframe,
.content-block.video-block video {
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.news-article-author {
    color: #64748b;
}

.news-article-authorised {
    color: #64748b;
    font-style: italic;
}

@media (max-width: 768px) {
    .news-article-card {
        padding: 20px;
    }

    .news-article-title {
        font-size: 1.6rem;
    }

    .news-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .news-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Carousel Styles */
.news-carousel-wrap {
    position: relative;
    margin: 40px 0;
}

.news-carousel-container {
    position: relative;
    overflow: visible;
}

.news-carousel {
    overflow: hidden;
    border-radius: 8px;
}

.news-carousel-track {
    display: flex;
    gap: 20px;
    padding: 0;
}

.news-carousel-item {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.333% - 14px);
    min-width: 0;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -70px;
}

.carousel-btn-next {
    right: -70px;
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c7d2e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--accent-color);
}

/* Responsive Carousel */
@media (max-width: 1199px) {
    .news-carousel-item {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: calc(50% - 10px);
    }

    .carousel-btn-prev {
        left: -60px;
    }

    .carousel-btn-next {
        right: -60px;
    }
}

@media (max-width: 767px) {
    .news-carousel-item {
        flex: 0 0 100%;
    }

    .carousel-btn-prev {
        left: 10px;
        background: rgba(15, 23, 42, 0.7);
    }

    .carousel-btn-next {
        right: 10px;
        background: rgba(15, 23, 42, 0.7);
    }

    .carousel-btn-prev:hover,
    .carousel-btn-next:hover {
        background: rgba(15, 23, 42, 0.95);
    }

    .carousel-dots {
        margin-top: 15px;
    }
}

/* *******************************
******* Page Header CSS *******
******************************* */

.page-header {
    position: relative;
    margin-bottom: 0;
    padding: 150px 0 80px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(10, 10, 10, 0.9)), url(/static/media/page-header.fd3412329174d44dd714.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 5px solid var(--accent-color);
}

.page-header h2 {
    position: relative;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 120px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--accent-color);
}

.page-header a {
    position: relative;
    padding: 0 15px;
    font-size: 18px;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.page-header a::after {
    position: absolute;
    content: ">";
    width: 10px;
    height: 10px;
    top: 0;
    right: -8px;
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
        background-attachment: scroll;
        background-attachment: initial;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}

/* =========================================
   Classic Professional Admin Theme
   Palette: Navy Blue, Gold, White, Slate Gray
   ================================********* */

/* Reset & Base */
.admin-container {
    display: flex;
    height: 100vh;
    background-color: #f1f5f9; /* Slate 100 */
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    color: #334155;
    overflow: hidden;
}

/* =========================================
   Login Screen (Classic & Secure)
   ================================********* */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    top: -25%;
    left: -25%;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 420px;
    z-index: 10;
    border-top: 5px solid #d97706; /* Amber 600 */
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.login-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 1rem;
    background-color: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #d97706;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    background-color: #0f172a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background-color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.error-msg {
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0.75rem;
    background-color: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
}

/* =========================================
   Sidebar (Classic Dark)
   ================================********* */
.sidebar {
    width: 260px;
    background-color: #0f172a; /* Slate 900 */
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 10px rgba(0,0,0,0.05);
    z-index: 20;
    transition: width 0.3s ease;
}

.sidebar-header {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    background-color: #020617; /* Slate 950 */
}

.sidebar-header img {
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.sidebar-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #f1f5f9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar-menu {
    padding: 1.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
}

.menu-item:hover {
    background-color: #1e293b;
    color: white;
}

.menu-item.active {
    background-color: #d97706; /* Amber 600 */
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.menu-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid #1e293b;
    background-color: #020617;
}

.menu-item.logout {
    border: 1px solid #7f1d1d;
    color: #fca5a5;
    justify-content: center;
}

.menu-item.logout:hover {
    background-color: #7f1d1d;
    color: white;
}

/* =========================================
   Main Content Area
   ================================********* */
.main-content {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #f1f5f9;
}

.submission-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.submission-modal {
    background: #ffffff;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.submission-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.submission-modal-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
}

.submission-modal-subtitle {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 0.9rem;
}

.submission-modal-close {
    background: transparent;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #64748b;
    line-height: 1;
}

.submission-modal-close:hover {
    color: #0f172a;
}

.submission-modal-body {
    padding: 1.75rem 2rem 1.75rem;
    overflow-y: auto;
    background: #f9fafb;
}

.submission-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    background: #0f172a;
    color: #e5e7eb;
    margin-bottom: 1.75rem;
}

.submission-summary-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.submission-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
}

.submission-applicant-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.submission-applicant-service {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #e5e7eb;
    opacity: 0.85;
}

.submission-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.submission-summary-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
}

.submission-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    color: #cbd5f5;
}

.submission-meta-value {
    font-weight: 500;
}

.submission-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1rem 1.5rem;
    gap: 1rem 1.5rem;
}

.submission-detail {
    background: #ffffff;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    border: 1px solid #e2e8f0;
}

.submission-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 4px;
}

.submission-detail-value {
    font-size: 0.95rem;
    color: #0f172a;
    word-break: break-word;
}

.submission-modal-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background: #f8fafc;
}

@media (max-width: 768px) {
    .submission-modal {
        width: 96%;
    }

    .submission-modal-header,
    .submission-modal-body,
    .submission-modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .submission-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Header */
.dashboard-header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.header-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.btn-icon:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
}

.user-profile:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.avatar {
    width: 32px;
    height: 32px;
    background-color: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Dashboard Body */
.dashboard-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1 1;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-left: 4px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-card:nth-child(1) { border-left-color: #22c55e; } /* Green */
.stat-card:nth-child(2) { border-left-color: #eab308; } /* Yellow */
.stat-card:nth-child(3) { border-left-color: #f97316; } /* Orange */
.stat-card:nth-child(4) { border-left-color: #3b82f6; } /* Blue */

.stat-info h3 {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bg-green { background: #dcfce7; color: #166534; }
.bg-gold { background: #fef9c3; color: #854d0e; }
.bg-orange { background: #ffedd5; color: #9a3412; }
.bg-blue { background: #dbeafe; color: #1e40af; }

/* Content Cards / Tables */
.content-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.btn-link {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-link:hover {
    text-decoration: underline;
    color: #1d4ed8;
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table th {
    text-align: left;
    padding: 1rem 1.5rem;
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: middle;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background-color: #f8fafc;
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-badge.approved, .status-badge.completed {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-badge.pending {
    background-color: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.status-badge.processing {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.moa-part-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #dbeafe;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-badge.rejected, .status-badge.failed {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    text-align: center;
    color: #94a3b8;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* =========================================
   Modern Video Gallery UI Enhancements
   ================================********* */

/* Video Thumbnail Wrapper */
.video-thumbnail-wrapper {
    position: relative;
    width: 120px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-icon-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.play-icon-overlay i {
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.video-row:hover .play-icon-overlay {
    opacity: 1;
}

.video-row:hover .video-thumbnail {
    transform: scale(1.05);
}

/* Video Info */
.video-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-title {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
}

.video-meta {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    color: #cbd5e1;
}

/* Stats */
.video-stats .stat-pill {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Modern Category Badges */
.category-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    background-color: #e2e8f0;
    color: #475569;
}

.category-badge.event { background-color: #e0e7ff; color: #4338ca; } /* Indigo */
.category-badge.news { background-color: #fee2e2; color: #b91c1c; } /* Red */
.category-badge.culture { background-color: #fef3c7; color: #b45309; } /* Amber */
.category-badge.sports { background-color: #dcfce7; color: #15803d; } /* Green */
.category-badge.technology { background-color: #e0f2fe; color: #0369a1; } /* Sky */

/* Modern Action Buttons */
.action-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    color: #94a3b8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.action-btn.edit:hover {
    background-color: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.action-btn.feature:hover {
    background-color: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.action-btn.delete:hover {
    background-color: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.action-btn i {
    font-size: 0.9rem;
}

.gallery-page {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.gallery-intro h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-intro .lead {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    grid-gap: 20px;
    gap: 20px;
    align-items: start;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: contain;
    background-color: #ffffff;
    padding: 8px;
    box-sizing: border-box;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.gallery-caption p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.collection-caption {
    position: static;
    width: 100%;
    padding: 12px 16px;
    background: white;
    color: var(--text-dark);
    opacity: 1;
    border-top: 1px solid #e2e8f0;
}

.collection-caption h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--primary-color);
}

.collection-caption p {
    font-size: 0.9rem;
    margin: 0;
    color: #64748b;
    opacity: 1;
}

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

.history-page {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.history-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.history-intro h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.history-intro .lead {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.history-section {
    max-width: 900px;
    margin: 0 auto 32px;
}

.history-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.history-section p {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.history-section .dry-text {
    white-space: pre-wrap;
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

.history-section .dry-heading {
    white-space: pre-wrap;
    font-family: 'Merriweather', serif;
    font-family: var(--font-heading, 'Merriweather', serif);
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 800;
    color: #002147;
    color: var(--primary-color, #002147);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 22px;
    margin-bottom: 8px;
}

.dry-gap {
    height: 8px;
}

.history-section ul {
    padding-left: 20px;
    margin: 0;
}

.history-section li {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin-bottom: 4px;
}

.initiative-detail {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.initiative-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.initiative-hero-text {
    flex: 1 1 320px;
}

.initiative-hero-text h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.initiative-hero-text p {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.initiative-pill {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.initiative-hero-image {
    flex: 1 1 260px;
    text-align: right;
}

.initiative-hero-image img {
    max-width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.initiative-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 24px;
    gap: 24px;
    margin-bottom: 40px;
}

.initiative-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.initiative-section-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.initiative-section-card p {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.initiative-section-card li {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin-bottom: 6px;
}

.initiative-highlight-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 20px;
    gap: 20px;
}

.initiative-highlight {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.initiative-highlight span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cbd5f5;
    margin-bottom: 6px;
}

.initiative-highlight h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #f9fafb;
}

.initiative-highlight p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin: 0;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* The vertical line */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* Timeline Item */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Left side */
.timeline-item.left {
    left: 0;
}

/* Right side */
.timeline-item.right {
    left: 50%;
}

/* The circles on the line */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-light);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

/* Content Box */
.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }
    
    /* Full-width containers */
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    /* Make sure all containers are on the right relative to the line */
    .timeline-item.left, .timeline-item.right {
        left: 0;
    }
    
    /* Move the dots to the left */
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item.right::after {
        left: 21px;
    }
}

.landmarks-page {
    background-color: #f8f9fa;
    padding-bottom: 80px;
}

.landmarks-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.landmarks-intro h1 {
    font-family: 'Merriweather', serif;
    font-family: var(--font-heading, 'Merriweather', serif);
    color: #002147;
    color: var(--primary-color, #002147);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landmarks-intro .lead {
    font-family: 'Open Sans', sans-serif;
    font-family: var(--font-body, 'Open Sans', sans-serif);
    color: #555;
    font-size: 1.25rem;
    line-height: 1.8;
}

.landmark-card {
    background: white;
    border-radius: 15px; /* More rounded */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Deeper shadow */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03); /* Subtle border */
    position: relative;
    display: flex;
    flex-direction: column;
}

.landmark-card:hover {
    transform: translateY(-15px); /* Higher lift */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #fdc800;
    border-color: var(--accent-color, #fdc800); /* Accent border on hover */
}

.landmark-img-wrapper {
    position: relative;
    height: 300px; /* Taller images */
    overflow: hidden;
    cursor: pointer; /* Pointer cursor to indicate clickability */
}

.landmark-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* Smoother zoom */
}

.landmark-card:hover .landmark-img-wrapper img {
    transform: scale(1.15);
}

.landmark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 33, 71, 0.1), rgba(0, 33, 71, 0.6)); /* Gradient overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.landmark-overlay i {
    color: #002147;
    color: var(--primary-color, #002147);
    font-size: 1.5rem;
    background: #fdc800;
    background: var(--accent-color, #fdc800);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0) rotate(-180deg); /* Rotate effect */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.landmark-card:hover .landmark-overlay {
    opacity: 1;
}

.landmark-card:hover .landmark-overlay i {
    transform: scale(1) rotate(0deg);
}

.landmark-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.landmark-title {
    font-family: 'Merriweather', serif;
    font-family: var(--font-heading, 'Merriweather', serif);
    color: #002147;
    color: var(--primary-color, #002147);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.landmark-location {
    color: #fdc800;
    color: var(--accent-color, #fdc800);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landmark-location i {
    margin-right: 8px;
}

.landmark-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Lightbox Styles */
.landmark-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
    padding: 2rem;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.landmark-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landmark-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.landmark-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s;
    outline: none;
}

.landmark-lightbox-close:hover {
    transform: scale(1.1);
    color: #fdc800;
    color: var(--accent-color, #fdc800);
}

.landmark-lightbox-caption {
    margin-top: 1rem;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-family: var(--font-heading, 'Merriweather', serif);
}

/* Media Page Custom Styles - Premium UI Overhaul */

/* Animated Gradient Background */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.media-page-body {
    background: linear-gradient(-45deg, #f8f9fa, #e9ecef, #dfe6ed, #f1f3f5);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
}

/* Glassmorphism Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Hero Section Enhancements */
.media-hero {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    margin-bottom: 60px;
}

.media-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.media-hero-content {
    position: relative;
    z-index: 2;
}

.media-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
}

.media-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* AUDIO PAGE STYLES */

/* Featured Track Section */
.featured-track-card {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.featured-track-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.featured-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Audio Playlist Item */
.audio-list-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.audio-list-item:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.audio-index {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ccc;
    width: 40px;
}

.audio-list-item:hover .audio-index {
    color: var(--primary-color);
}

.moa-audio-list {
    row-gap: 15px;
}

.moa-audio-item {
    padding: 12px 16px;
}

.moa-audio-list .audio-index {
    min-width: 88px;
    padding: 6px 12px;
    border-radius: 9999px;
    background: #dbeafe;
    color: #1e3a8a;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-right: 16px;
}

.moa-modal-part-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 9999px;
    background: #dbeafe;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 auto;
    text-transform: uppercase;
}

.audio-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 20px;
    font-size: 1.2rem;
}

.audio-info {
    flex-grow: 1;
}

.audio-title {
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.audio-artist {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.audio-duration {
    font-weight: 500;
    color: #999;
    margin-right: 20px;
}

.btn-play-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play-mini:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Visualizer Bars Animation */
.visualizer {
    display: flex;
    align-items: flex-end;
    height: 20px;
    margin-left: 20px;
}

.bar {
    width: 4px;
    background: var(--primary-color);
    margin: 0 2px;
    border-radius: 2px;
    animation: equalizer 1s infinite;
}

.bar:nth-child(1) { animation-duration: 0.8s; height: 60%; }
.bar:nth-child(2) { animation-duration: 0.9s; height: 90%; }
.bar:nth-child(3) { animation-duration: 1.1s; height: 50%; }
.bar:nth-child(4) { animation-duration: 0.7s; height: 80%; }

@keyframes equalizer {
    0% { height: 20%; }
    50% { height: 100%; }
    100% { height: 20%; }
}

/* VIDEO PAGE STYLES */

/* Trending Section */
.trending-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    cursor: pointer;
}

.trending-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

/* Video Grid Card */
.cinematic-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.cinematic-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.thumbnail-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumbnail-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cinematic-card:hover .thumbnail-wrapper img {
    transform: scale(1.15);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cinematic-card:hover .play-overlay {
    opacity: 1;
}

.trending-video-container:hover .play-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.2);
}

.play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cinematic-card:hover .play-circle,
.trending-video-container:hover .play-circle {
    transform: scale(1);
}

.video-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.video-modal-close:hover {
    color: #ff4757;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.possessions-page {
    background-color: white;
    padding-bottom: 80px;
}

.possessions-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.possessions-intro h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.possessions-intro .lead {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1.8;
}

.possession-card {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.possession-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.possession-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.possession-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.possession-desc {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1rem;
}

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

.possession-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--secondary-color);
    font-weight: 600;
}

.possession-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.declaration-box {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.declaration-box h2 {
    color: var(--accent-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.declaration-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.culture-page {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.culture-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.culture-intro h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.culture-intro .lead {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
    gap: 30px;
}

.culture-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--accent-color);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.culture-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.culture-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.culture-card:hover .culture-img-wrapper img {
    transform: scale(1.1);
}

.culture-content {
    padding: 25px;
}

.culture-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.culture-text {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Icon overlay on image */
.culture-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}


/* State Detail Page Styling */

.state-detail-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 50px;
}

.state-content-wrapper {
    background: transparent;
}

/* Header Section */
.state-header-section {
    padding: 0 20px;
}

.state-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    color: var(--primary-color, #2c3e50);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-divider {
    height: 4px;
    width: 100px;
    background: #d4af37;
    background: var(--accent-color, #d4af37);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.state-sub-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
    font-style: italic;
    font-family: "Georgia", serif;
}

/* Content Area */
.state-text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
}

.state-footer-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    color: var(--primary-color, #2c3e50);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    text-align: center;
}

/* Image Card */
.state-image-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.img-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.state-feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.state-feature-image:hover {
    transform: scale(1.02);
}

.state-info-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.info-title {
    font-weight: 700;
    color: #2c3e50;
    color: var(--primary-color, #2c3e50);
    margin-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    border-bottom: 2px solid var(--accent-color, #d4af37);
    display: inline-block;
    padding-bottom: 5px;
}

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

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Disclaimer */
.state-disclaimer {
    background: #2c3e50;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.disclaimer-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.warning-text {
    font-weight: 500;
}

.copyright-text {
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Navigation */
.state-nav-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.state-nav-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #d4af37;
    border-color: var(--accent-color, #d4af37);
    color: #2c3e50;
    color: var(--primary-color, #2c3e50);
}

.nav-thumb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .state-header-section {
        margin-bottom: 30px;
    }
    
    .state-main-title {
        font-size: 2.5rem;
    }
    
    .state-image-card {
        margin-top: 30px;
        position: static;
    }
}


.service-detail-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.service-content-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-heading {
    font-family: 'Playfair Display', serif;
    color: #002147;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37; /* Gold accent */
}

.service-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
}

.service-list li::before {
    content: '\f00c'; /* FontAwesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #28a745;
}

/* Form Styles */
.service-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    border-top: 5px solid #002147;
}

.form-title {
    font-family: 'Playfair Display', serif;
    color: #002147;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
}

.custom-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.custom-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: #fff;
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, #002147 0%, #00428a 100%);
    border: none;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 33, 71, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    transform: none;
    box-shadow: none;
}


/*# sourceMappingURL=main.8df293bf.css.map*/