/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*  Default Light Theme Variables */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --header-bg: #ffffff;
    --card-bg: #f9f9f9;
    --secondary-color: #d40000; /* RED */
    --shadow: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 6px 14px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    
    /* Legacy variable names for compatibility */
    --primary-color: #000000;
    --text-primary: #000000;
    --text-secondary: #746f6f;
    --text-light: #666666;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-hover: #e8e8e8;
    --border-color: #dddddd;
    
    /* Typography */
    --font-serif:  'Merriweather', Georgia, serif;
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
}

body.dark-theme {
    /* ===== Core Backgrounds ===== */
    --bg-color: #121010;            
    --header-bg: #161313;              
    --card-bg: #1c1818;                
    --bg-primary: #151212;
    --bg-secondary: #1f1a1a;
    --bg-hover: #262020;

    /* ===== Text Colors ===== */
    --text-color: #f5f5f5;             
    --text-primary: #ffffff;
    --text-secondary: #c9c2c2;
    --text-light: #9b8f8f;

    /* ===== Accent (Red) ===== */
    --secondary-color: #e50914;        
    --accent-soft: #ff3b3b;            
    --accent-muted: #a83232;           

    /* ===== Borders & Dividers ===== */
    --border-color: #2e2626;

    /* ===== Shadows (Soft, Premium) ===== */
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.6);

    /* ===== Legacy Compatibility ===== */
    --primary-color: #ffffff;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* APPLY VARIABLES */
body {
    font-family: var(--font-sans);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition);
  
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 90%;
    /* max-width: var(--container-width); */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ===================================
   THEME TOGGLE BUTTON
   =================================== */
/* 🌞 LIGHT THEME (default) */
:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --header-bg: #ffffff;
  --card-bg: #f9f9f9;
  --secondary-color: #e60000; /* your red color */
}

/* 🌙 DARK THEME (activated by JS) */
body.dark-theme {
  --bg-color: #201919;
  --text-color: #ffffff;
  --header-bg: #1b1212;
  --card-bg: #242121;
  --secondary-color: #ff1a1a;
}

/* APPLY VARIABLES */
body {
  background: var(--bg-color);
  color: var(--text-color);
}

header,
.navbar,
.footer {
  background: var(--header-bg);
  color: var(--text-color);
}

.card,
.article-box,
.news-container {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

a {
  color: var(--secondary-color);
}


/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===================================
    NAVBAR & NAV RIBBON
    =================================== */
.header-sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.navbar {
    background: var(--header-bg);
    color: var(--text-color);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    gap: var(--spacing-md);
}

/* .logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    color: var(--text-color);
    font-family: var(--font-serif);
    letter-spacing: -1px;
} */

.logo {
    margin-left: 0;
    padding-left: 0;
    flex-shrink: 0;
}

.logo img {
    margin-left: 0;
    padding-left: 0;
    width: auto;
    height: 80px;
    border-radius: 20px;
    /* flex-shrink: 0; */
}

.logo .tagline {
    font-size: 0.7rem;
    font-family: var(--font-sans);
    color: var(--text-light);
    font-weight: 400;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none; 
    gap: 12px !important;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;

  transition: var(--transition);
  display: block;
}

.nav-menu li a:hover {
    background-color: var(--bg-hover);
    color: var(--text-color);
}

.nav-menu li a.active {
    border-bottom: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.7em;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 0.875rem;
    text-transform: none;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-color);
}

/* Mega Dropdown */
.mega-dropdown {
    position: relative;
}

.mega-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mega-dropdown-toggle i {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.mega-dropdown:hover .mega-dropdown-toggle i {
    transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  width: 900px;
  max-width: 95vw;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
}

.mega-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-menu .mega-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.mega-dropdown-menu .mega-dropdown-section:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-dropdown-menu .mega-dropdown-section h4 {
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.mega-dropdown-menu .mega-dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-dropdown-menu .mega-dropdown-section ul li {
    margin-bottom: 5px;
}

.mega-dropdown-menu .mega-dropdown-section .state-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text-color);
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
}

.mega-dropdown-menu .mega-dropdown-section .state-card:hover {
  background: var(--bg-hover);
  border-color: var(--secondary-color);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(212, 0, 0, 0.1);
}

.mega-dropdown-menu .mega-dropdown-section .state-card:hover .state-info h4 {
  color: var(--secondary-color);
}

.mega-dropdown-menu .mega-dropdown-section .state-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.mega-dropdown-menu .mega-dropdown-section .state-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-dropdown-menu .mega-dropdown-section .state-info {
  flex: 1;
  min-width: 0;
}

.mega-dropdown-menu .mega-dropdown-section .state-info h4 {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
  border: none;
  padding: 0;
}

.mega-dropdown-menu .mega-dropdown-section .state-info p {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Custom Scrollbar for Mega Dropdown */
.mega-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.mega-dropdown-menu::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 10px;
}

.mega-dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

.mega-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Bottom Navigation Ribbon */
.nav-bottom-ribbon {
    background: var(--header-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    position: relative;
}

.bottom-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: var(--card-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.nav-block:hover {
    background: var(--bg-hover);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-block.active {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.nav-block i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    display: block;
}

.nav-block span {
    display: block;
    text-align: center;
}

.contact-btn {
    display: inline-block;
    padding: 6px 8px;
    background-color: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

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

.theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

body.dark-theme .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    background-color: var(--bg-hover);
    color: var(--secondary-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Nav Links Ribbon */
.nav-ribbon {
    background: var(--header-bg);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 99;
}

.nav-ribbon .nav-menu {
    display: flex;
    justify-content: start;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0px 1rem;
}

.search-container {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.search-form {
    display: flex;
    align-items: center;
}

.search-form input {
    padding: 10px 15px;
   border: none;
    font-size: 0.9rem;
    width: 200px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.search-form button {
    padding: 10px 15px;
    border: none;
    color: var(--secondary-color);
    background-color: transparent;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===================================
   BREAKING NEWS TICKER
   =================================== */
.breaking-news {
    background-color: var(--secondary-color);
    color: #ffffff;
    
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0px;
}

.breaking-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 8px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-top: 0px; */
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: ticker-scroll 20s linear infinite;
    will-change: transform;
}

.ticker-item a {
    color: #ffffff;
    white-space: nowrap;
    font-weight: 500;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.ticker-item a:hover {
    opacity: 0.8;
    /* text-decoration: underline; */
}

.ticker-separator {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: ticker-scroll 20s linear infinite;
    will-change: transform;
}

/* Pause animation on hover */
.breaking-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    
    background-color: var(--bg-color);
}

.hero-grid {
    display: grid;
    padding-top: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 700px;
}

.hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
}

.hero-card .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    color: #ffffff;
}

.hero-card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.hero-card-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.hero-card-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.hero-card-4 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.hero-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-image-container {
    height: 400px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hero-link:hover .hero-image-container img {
    transform: scale(1.05);
}

.hero-content {
    padding: var(--spacing-lg);
}
.breadcrumb{
    background: var(--bg-color);
    border-bottom : 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.breadcrumb a,
.breadcrumb span {
    white-space: nowrap;
}

.hero-category {
    display: inline-block;
    padding: 5px 12px;
    background-color : white;
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.hero-card-1 .hero-title {
    font-size: 2rem;
}

.hero-card-2 .hero-title {
    font-size: 1.5rem;
}

.hero-card-3 .hero-title,
.hero-card-4 .hero-title {
    font-size: 1.2rem;
}

.hero-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
}

.hero-content .hero-title,
.hero-content .hero-excerpt,
.hero-content .hero-meta,
.hero-content .hero-meta span {
    color: #ffffff;
}

.hero-content .hero-excerpt {
    color: rgba(255,255,255,0.9);
}

/* Hero Secondary Articles */
.hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-small {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.hero-small-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-small-image {
    height: 150px;
    overflow: hidden;
}

.hero-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hero-small-link:hover .hero-small-image img {
    transform: scale(1.05);
}

.hero-small-content {
    padding: var(--spacing-md);
}

.hero-small-category {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: var(--spacing-xs);
}

.hero-small-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.hero-small-meta {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.hero-small-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
}

/* ===================================
   MAIN CONTENT LAYOUT
   =================================== */
.main-content {
    padding: var(--spacing-xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-lg);
}

.main-column {
    min-width: 0;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--border-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    /* margin-top: 50px; */
    color: var(--text-color);
}

.section-title i {
    color: var(--secondary-color);
}

.section-divider {
    height: 3px;
    background-color: var(--secondary-color);
    width: 60px;
    margin-top: 5px;
}

.view-all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    gap: 10px;
}

/* ===================================
   NEWS GRID (Latest News)
   =================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.news-card {
    background: var(--card-bg);
    color: var(--text-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.news-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    background-color: white;

    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.news-content {
    padding: var(--spacing-md);
}

.news-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    color: var(--text-color);
}

.news-title a {
    color: var(--text-color);
}

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

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
}

/* ===================================
   CATEGORY SECTIONS
   =================================== */
.category-section {
    margin-bottom: var(--spacing-xl);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.category-card {
    background: var(--card-bg);
    color: var(--text-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    box-shadow: var(--shadow);
}

.category-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.card-image {
    display: block;
    height: 150px;
    overflow: hidden;
}

.category-card.featured .card-image {
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--spacing-md);
}

.category-card.featured .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
    color: var(--text-color);
}

.category-card.featured .card-title {
    font-size: 1.5rem;
}

.card-title a {
    color: var(--text-color);
}

.card-title a:hover {
    color: var(--secondary-color);
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.card-time {
    font-size: 0.8rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   SIDEBAR WIDGETS
   =================================== */
.sidebar {
    position: sticky;
    top: 130px;
    height: fit-content;
}

.widget {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: (var(--text-color));
}

.widget-title i {
    /* color: var(--t); */
}

/* Trending Widget */
.trending-widget {
    background: var(--card-bg);
    border-radius: 12px;
    padding-top: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.trending-widget .widget-title {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    color: white;
    padding: 15px 20px;
    margin: 0;
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 10px;
}

.trending-widget .widget-title i {
 
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
}

.trending-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    background: var(--card-bg);
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
}

.trending-item:hover {
    /* background: var(--bg-hover); */
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.trending-item:last-child {
    margin-bottom: 0;
}

.trending-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}

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

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

.trending-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff0000 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    font-family: var(--font-serif);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 2;
}

.trending-content {
    flex: 1;
    min-width: 0;
}

.trending-content h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.trending-content h4 a {
    color: var(--text-color);
    display: block;
    line-height: 1.4;
}

.trending-content h4 a:hover {
    color: var(--secondary-color);
}

.trending-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.trending-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trending-meta i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.trending-time,
.trending-views {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.category-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--border-color);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.views {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: var(--spacing-xs);
}

.categories-list li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.categories-list li a:hover {
    background-color: var(--bg-hover);
    color: var(--secondary-color);
}

.categories-list li a i {
    width: 20px;
    color: var(--secondary-color);
}

/* Ad Widget */
.ad-placeholder {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--card-bg);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.ad-placeholder span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-bottom: var(--spacing-sm);
}

.ad-content {
    background-color: var(--border-color);
    padding: 60px 20px;
    color: var(--text-light);
    font-weight: 600;
    border-radius: 4px;
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.newsletter-form-sidebar input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
    background-color: var(--card-bg);
    color: var(--text-color);
}

.newsletter-form-sidebar button {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-sidebar button:hover {
    background-color: #a00000;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(rgba(99, 0, 0, 0.8), rgba(31, 0, 0, 0.8)), url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #d40000; /* Red fallback */
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
 .footer-logo{
        width: auto;
        height: 80px;
    }
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: var(--font-heading);
}

.footer-col p {
    line-height: 1.7;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 15px;
    padding-top: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    opacity: 1;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffffff;
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    color: #000000;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 12px 20px;
     background: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
 
      background: #ffffff;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: 25px;
}

.footer-bottom-content {

    border-radius: 5px;
    /* box-shadow: rgb(red, green, blue); */
    padding: 0px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    /* opacity: 0.8; */
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links span,p{
    font-size: 0.9rem;
    color: white;
}
.footer-links span a {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links span a:hover {
    font-weight: 800;
    /* color: #000000; */
}
.footer-links a:hover {
    /* color: var(--text-color); */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #a00000;
    transform: translateY(-3px);
}

/* Additional Responsive Updates for Hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    /* Main Content Grid Fix */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .main-column {
        width: 100%;
    }
    
    .sidebar-column {
        width: 100%;
    }

    .hero-card-1,
    .hero-card-2,
    .hero-card-3,
    .hero-card-4 {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }

    .hero-card .hero-image-container {
        height: 200px;
        flex: none;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 250px;
    }

    .hero-title {
        font-size: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
    }

    .hero-secondary {
        flex-direction: column;
    }
    
    /* Card titles truncation in mobile */
    .card-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .category-card.featured .card-title {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    /* CRITICAL - Article Page Layout Fix */
    .article-wrapper {
        display: block !important;
        width: 100% !important;
    }
    
    .article-main {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .article-header {
        width: 100% !important;
        padding: 15px;
    }
    
    .article-header h1 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        font-size: 1.5rem !important;
    }
    
    .article-content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    
    .article-content p,
    .article-content h2,
    .article-content h3,
    .article-content div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .article-sidebar {
        width: 100% !important;
        position: static !important;
        margin-top: 30px;
    }
    
    .widget {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .trending-item-content h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Share Buttons Mobile */
    .share-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .share-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Content Grid */
    .content-grid {
        grid-template-columns: 1fr !important;
    }
    
    .main-column,
    .sidebar-column {
        width: 100% !important;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.85rem;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-col:nth-child(3) ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-col p {
        font-size: 0.9rem;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .newsletter-form button {
        border-radius: 5px;
        width: 100%;
    }

    .social-links {
        justify-content: flex-start;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .footer-links span,
    .footer-links a {
        white-space: nowrap;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--bg-hover);
        padding: 0;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin-top: 5px;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active .dropdown-menu {
        display: block;
    }
    
    /* 404 Page Mobile */
    .error-code {
        font-size: 80px;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .error-actions {
        flex-direction: column;
    }
    
    /* Static Pages Mobile */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Contact Page Mobile */
    .contact-page {
        grid-template-columns: 1fr;
    }

    .method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-section {
        padding: 25px 20px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100% !important;
        font-size: 16px !important;
        padding: 12px !important;
        box-sizing: border-box;
    }
    
    .contact-form button {
        width: 100%;
    }
    
    /* Author Page Mobile */
    .author-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-profile-image {
        width: 150px;
        height: 150px;
    }

    .author-profile-info h1 {
        font-size: 2rem;
    }
    
    /* Category Article Mobile */
    .category-article-item {
        grid-template-columns: 1fr;
    }
    
    .category-article-image {
        height: 200px;
    }
    
    .category-article-content {
        padding: 20px;
    }
    
    .category-article-title {
        font-size: 1.4rem;
    }
    
    /* Article Page Mobile */
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .comment-form input,
    .comment-form textarea {
        width: 100% !important;
        max-width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .comment-form-wrapper {
        padding: 20px 15px;
    }
    
    .author-bio-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .share-buttons {
        justify-content: flex-start;
    }
    
    .article-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
    
    /* Video Container Mobile Fix */
    .video-container {
        position: relative !important;
        padding-bottom: 56.25% !important;
        padding-top: 0 !important;
        height: 0 !important;
        overflow: hidden;
    }
    
    .video-container iframe,
    .video-container video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 200px;
    }

    .hero-title {
        font-size: 1.25rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
    }

    .hero-small-image {
        height: 120px;
    }

    .hero-small-title {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }
    
    /* Mobile Header Adjustments */
    .logo img {
        height: 50px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .contact-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .search-form input {
        width: 80px;
        font-size: 13px;
        padding: 5px 8px;
    }
    .search-header h1{
        padding-top: 20px;
    }
    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    /* Contact Page Mobile */
    .contact-page {
        padding: 20px 0;
    }
    
    .contact-info-section h1 {
        font-size: 1.75rem;
    }
    
    .contact-info-section > p {
        font-size: 0.95rem;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .method-card {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
    }
    
    .method-card i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .method-card h3 {
        font-size: 1.1rem;
    }
    
    .method-card p {
        font-size: 0.9rem;
    }
    
    .social-links-large {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links-large a {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 12px;
    }
    
    .contact-form button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .footer {
        padding: 30px 0 15px;
        margin-top: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .footer-col p {
        font-size: 0.85rem;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        font-size: 14px;
        padding: 10px 15px;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Video Container for Small Mobile */
    .video-container {
        position: relative !important;
        padding-bottom: 56.25% !important;
        padding-top: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        border-radius: 6px;
        margin: 15px 0 !important;
        width: 100% !important;
        max-width: 100%;
    }
    
    .video-container iframe,
    .video-container video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border: none;
        border-radius: 6px;
    }
    
    .article-video {
        margin: 15px 0 !important;
        width: 100% !important;
        max-width: 100%;
        overflow: hidden;
    }
    
    .article-content .video-container {
        margin: 15px 0 !important;
        width: 100% !important;
    }
    
    .article-featured-image {
        margin-bottom: 15px;
    }
}

/* ===================================
   ADMIN BUTTON STYLES
   =================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}


.btn-secondary:hover {
    /* background: #5a6268; */
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

/* ===================================
   ARTICLE PAGE IMPROVEMENTS
   =================================== */
.article-header {
    margin-bottom: 30px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
}

.article-header h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.article-category-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--secondary-color);
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: var(--font-heading);
}
.article-excerpt{
        color: var(--text-color);
        /* background-color: red; */
    }

.article-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.article-featured-image img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-color) !important;
    white-space: pre-wrap;
}

.article-content p span,
.article-content p font {
    color: var(--text-color) !important;
}

.article-content h2,
.article-content h3 {
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-color) !important;
    font-family: var(--font-heading);
}
.nxt-heading {
    color: var(--text-color);
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: var(--text-color);
}

[data-theme="dark"] .article-content strong,
[data-theme="dark"] .article-content b {
    color: #ffffff;
}

.article-content em,
.article-content i {
    font-style: italic;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-content blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    border-left: 4px solid var(--secondary-color);
    background: var(--bg-secondary);
    font-style: italic;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 8px;
    display: block;
}

.article-content .video-container {
    margin: 25px 0;
}

/* Article Page Layout */
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.article-main {
    min-width: 0;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Share Buttons */
.share-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.share-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.copy {
    background: var(--secondary-color);
}

.share-btn.copy:hover {
    background: #c0392b;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.comments-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.comment-form {
    background: var(--card-bg  );
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-submit {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-submit:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.comment-list {
    list-style: none;
}

.comment-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s;
}

.comment-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.comment-author {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.comment-date {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.comment-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Author Bio Card */
.author-bio {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border-color);
}

.author-bio h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.author-info {
    display: flex;
    gap: 20px;
    align-items: start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.author-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   CATEGORY PAGE STYLES
   =================================== */
.category-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.category-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: #ffffff !important;
}

.category-description {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff !important;
}

.category-article-list {
    display: grid;
    gap: 30px;
}

.category-article-item {
    background: var(--header-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;
    border: 1px solid var(--border-color);
}

.category-article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-article-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-article-image a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.category-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border-radius: 5px;
}

.category-article-item:hover .category-article-image img {
    transform: scale(1.1);
}

.category-article-content {
    padding: 25px 25px 25px 0;
    display: flex;
    flex-direction: column;
    background-color: var(--header-bg);
}

.category-article-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-color);
    padding: 5px;
}

.category-article-title a {
    color: var(--text-color);
    transition: color 0.3s;
}

.category-article-title a:hover {
    color: var(--secondary-color);
}

.category-article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.category-article-meta {
    display: flex;
    gap: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.category-article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    font-weight: 600;
}

.pagination a:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination .active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination .dots {
    border: none;
    background: transparent;
}

/* Mobile Responsive for Categories */
/* ===================================
   VIDEO EMBED STYLES
   =================================== */
.article-video {
    margin: 30px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ===================================
   RELATED ARTICLES IMPROVEMENTS
   =================================== */
.related-articles {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.related-articles .section-title {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--text-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.related-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 20px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.related-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 15px;
    margin-bottom: 12px;
}

.related-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-content h3 a {
    color: var(--text-color);
    transition: color 0.3s;
}

.related-content h3 a:hover {
    color: var(--secondary-color);
}

.related-time {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===================================
   SHARE BUTTONS IMPROVEMENTS
   =================================== */
.share-section {
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-hover) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.share-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.share-buttons span {
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #145dbf;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0c85d0;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #005582;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1da851;
}

.share-btn.copy-link {
    background: var(--secondary-color);
}

.share-btn.copy-link:hover {
    background: #a00000;
}

.share-btn.native-share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-btn.native-share:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* ===================================
   COMMENT FORM IMPROVEMENTS
   =================================== */
.comment-form-wrapper {
    background: var(--card-bg);
    padding: 30px;
    margin-top: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.comment-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form .form-group {
    margin-bottom: 0;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s;
    line-height: 1.5;
    word-wrap: break-word;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 15px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.btn-submit {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===================================
   AUTHOR BIO IMPROVEMENTS
   =================================== */
.author-bio-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid var(--border-color);
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-bio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.author-bio-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-bio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.author-bio-link:hover {
    gap: 12px;
}

/* ===================================
   ADMIN PAGINATION STYLES
   =================================== */
.admin-table .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.admin-table .pagination .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-table .pagination .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
    border: none;
}

.admin-table .pagination .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.admin-table .pagination .pagination-info {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   VIDEO BADGE OVERLAY
   =================================== */
.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 2;
}

.card-image:hover .video-badge,
.news-image:hover .video-badge,
.hero-image-container:hover .video-badge,
.hero-small-image:hover .video-badge {
    background: rgba(139, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-image-container,
.hero-small-image,
.news-image,
.card-image {
    position: relative;
}

/* ===================================
   404 ERROR PAGE STYLES
   =================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-secondary {
    padding: 12px 30px;
    /* background-color: var(--bg-secondary); */
    background-color: white !important;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.error-search p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.search-form-404 {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.search-form-404 input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.search-form-404 button {
    padding: 15px 25px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-form-404 button:hover {
    background-color: #a00000;
}

.contact-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    /* margin-bottom: var(--spacing-xl); */
}

.contact-hero h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-desc {
    font-size: 1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--card-bg);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 90%;
}

.contact-form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-form-header .header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.3);
}

.contact-form-header .header-icon i {
    font-size: 1.3rem;
    color: white;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.contact-form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Modern Contact Form */
.contact-form-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-form-modern .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form-modern label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.contact-form-modern label i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 18px;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.1);
}

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

.btn-submit-modern {
    width: 35%;
    background: linear-gradient(135deg, var(--secondary-color), #ff4444);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(212, 0, 0, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 0, 0, 0.4);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card2 {
    background: var(--card-bg);
    border-radius: 16px;
    padding: var(--spacing-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);  
    border-bottom: 2px solid var(--border-color);
}

.info-card-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-content p {
    margin: 2px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.info-time {
    font-size: 0.85rem !important;
    font-style: italic;
    color: var(--text-light) !important;
}

/* Social Links Grid */
.social-card .social-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    border-color: #fd1d1d;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

/* Office Hours */
.office-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-color);
}

.hours-item .time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert i {
    font-size: 1.3rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

.contact-info-section h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info-section > p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.method-card {
    background-color: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    border: 1px solid var(--border-color);
}

.method-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 50px;
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.social-connect h3 {
    margin-bottom: var(--spacing-md);
}

.social-links-large {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.social-links-large a {
    padding: 10px 20px;
    background-color: var(--card-bg);
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.contact-form-section {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.contact-form button {
    background: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
}

.contact-form button:hover {
    background: #a00000;
    transform: translateY(-2px);
} */

/* ===================================
   AUTHOR PAGE STYLES
   =================================== */
.author-page {
    padding: var(--spacing-xl) 0;
}

.author-profile-header {
    display: flex;
    gap: var(--spacing-xl);
    background-color: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: 8px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid var(--border-color);
}

.author-profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.author-profile-info {
    flex: 1;
}

.author-profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

.author-role {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.author-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm);
    background-color: var(--bg-primary);
    border-radius: 8px;
    min-width: 100px;
    border: 1px solid var(--border-color);
}

.stat strong {
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: var(--font-serif);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.author-articles h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--border-color);
}

/* Follow Section */
.follow-section {
    background: white;
    padding:30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 30px;
    height: 200px;
    border: 1px solid var(--border-color);
}

.social-icons-new {
    display: flex;
    flex-direction: row-reverse;
    /* gap: var(--spacing-md); */
    margin-top: var(--spacing-xl);
}

.social-icon-new {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.social-icon-new:hover {
    /* background: linear-gradient(135deg, #ff8c42 0%, #ff6b2b 100%); */
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    color: white;
}

.social-icon-new i {
    font-size: 1.5rem;
}

/* Alert Messages */
.alert {
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* search page styles */

.search-page {
    padding: var(--spacing-2xl) 0;
}

.search-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-lg);
    /* border-bottom: 2px solid var(--border-color); */
}

.search-header h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.search-header h1 span {
    color: var(--secondary-color);
    font-style: italic;
}

.search-count {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Search Result Item */
.search-result-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

/* .search-result-item:hover {
    transform: translateY(-1.5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
} */

.article-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
}

.article-list-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.article-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-list-item:hover .article-list-image img {
    transform: scale(1.05);
}

.article-list-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-list-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.article-list-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.article-list-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.article-list-title a:hover {
    color: var(--secondary-color);
}

.article-list-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.article-list-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.article-author {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-author i {
    margin-right: var(--spacing-xs);
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: #b30000;
}

.read-more i {
    margin-left: var(--spacing-xs);
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--bg-secondary);
    border-radius: 12px;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.no-results h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.no-results p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--spacing-md);
    transition: var(--transition);
}

.btn-primary:hover {
    background: #b30000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* newsletter popup style  */

.newsletter-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 350px;
    max-width: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.3s ease;
}

.newsletter-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.newsletter-popup.success {
    border-left: 5px solid #28a745;
}

.newsletter-popup.warning {
    border-left: 5px solid #ffc107;
}

.newsletter-popup.error {
    border-left: 5px solid #dc3545;
}

.popup-content {
    padding: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    position: relative;
}

.popup-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.newsletter-popup.success .popup-icon {
    color: #28a745;
}

.newsletter-popup.warning .popup-icon {
    color: #ffc107;
}

.newsletter-popup.error .popup-icon {
    color: #dc3545;
}

.popup-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: var(--transition);
}

.popup-close:hover {
    color: #333;
}

.newsletter-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.newsletter-message.warning {
    background: #fff3cd;
    color: #856404;
    display: block;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* about page css  */

.section-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}


.about-content {
    padding: var(--spacing-2xl) 0;
}

.about-section {
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl) var(--spacing-xl);
    /* background: var(--bg-secondary); */
    border-radius: 12px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-2xl);
    color: var(--text-primary);
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-lg);
}

.mission-list li {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: var(--bg-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.05rem;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.mission-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.mission-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-card {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-info-card {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.contact-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-section-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-xl);
    /* background: var(--card-bg); */
    border-radius: 16px;
    /* border: 1px solid var(--border-color); */
    /* box-shadow: var(--shadow); */
}

.about-section-enhanced.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-section-enhanced.reverse .section-content-side {
    order: 2;
}

.about-section-enhanced.reverse .section-image-side {
    order: 1;
}

.section-content-side {
    padding: var(--spacing-md);
}

.section-header-enhanced {
    margin-bottom: var(--spacing-lg);
}

.section-icon-large {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #ff4444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.3);
}

.section-icon-large i {
    font-size: 1.2rem;
    color: white;
}

.section-header-enhanced h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-weight: 700;
    text-align: left;
}

.section-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Highlights List */
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;

}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary-color);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Mission List Enhanced */
.mission-list-enhanced {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-lg);
}

.mission-list-enhanced li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: var(--bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-list-enhanced li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.mission-list-enhanced i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-list-enhanced span {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--bg-color);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Image Side */
.section-image-side {
    padding: var(--spacing-sm);
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    color: white;
}
