/* CSS Variables for Theme Management */
:root {
    /* Light Theme - Corrected Color Scheme */
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --text-primary: #1e1e1e;
    --text-secondary: #666666;
    --primary-color: #003366;  /* Primary brand color */
    --secondary-color: #418FDE;  /* Secondary brand color */
    --accent-primary: #418FDE;
    --accent-secondary: #003366;
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-text: #1e1e1e;
    --top-header-bg: rgba(0, 51, 102, 0.9);
    --top-header-text: #ffffff;
}

[data-theme="dark"] {
    /* Dark Theme - Corrected Color Scheme */
    --bg-primary: #0b0c10;
    --bg-secondary: #1a1a1a;
    --text-primary: #f5f7fa;
    --text-secondary: #cccccc;
    --primary-color: #418FDE;  /* Use secondary color for headings in dark mode */
    --secondary-color: #418FDE;  /* Secondary brand color */
    --accent-primary: #418FDE;
    --accent-secondary: #003366;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-heavy: rgba(0, 0, 0, 0.6);
    --navbar-bg: rgba(11, 12, 16, 0.95);
    --navbar-text: #f5f7fa;
    --top-header-bg: rgba(0, 51, 102, 0.9);
    --top-header-text: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

/* Modern Top Header */
.top-header-modern {
    background: linear-gradient(135deg, #003366 0%, #184675 50%, #2a5a8a 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 12px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-header-modern .top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.welcome-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.welcome-badge i {
    color: #00d4ff;
    font-size: 14px;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-header-link-modern {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 8px;
}

.top-header-link-modern:hover {
    color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
}

.top-header-link-modern i {
    font-size: 14px;
}

.social-links-modern {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link-modern {
    color: #ffffff;
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-modern:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #418FDE 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
    border-color: transparent;
}

/* Modern Navigation Bar */
.navbar-modern {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme - always solid white background */
body:not([data-theme="dark"]) .navbar-modern {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Dark theme - always solid dark background (same when scrolled or not) */
body[data-theme="dark"] .navbar-modern,
[data-theme="dark"] .navbar-modern {
    background: #0b0c10 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

body[data-theme="dark"] .navbar-modern.scrolled,
[data-theme="dark"] .navbar-modern.scrolled {
    background: #0b0c10 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.nav-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo-modern {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img-modern {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu-modern {
    display: flex;
    gap: 5px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    margin: 0 3px;
    overflow: hidden;
}

/* Light theme - always dark text on white background */
body:not([data-theme="dark"]) .navbar-modern .nav-link-modern {
    color: #4a5568;
}

/* Dark theme - always white text on dark background (same when scrolled or not) */
body[data-theme="dark"] .navbar-modern .nav-link-modern,
[data-theme="dark"] .navbar-modern .nav-link-modern {
    color: #ffffff !important;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(65, 143, 222, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.nav-link-modern:hover::before,
.nav-link-modern.active::before {
    opacity: 1;
}

/* Hover states - Light theme */
body:not([data-theme="dark"]) .navbar-modern .nav-link-modern:hover {
    color: #418FDE;
    transform: translateY(-2px);
}

/* Hover states - Dark theme */
body[data-theme="dark"] .navbar-modern .nav-link-modern:hover,
[data-theme="dark"] .navbar-modern .nav-link-modern:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Active link - always visible with gradient background */
.nav-link-modern.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #418FDE 0%, #003366 100%);
    box-shadow: 0 4px 15px rgba(65, 143, 222, 0.3);
    font-weight: 600;
}

.nav-icon {
    display: flex;
    align-items: center;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.nav-text {
    position: relative;
    z-index: 1;
}

.dropdown-arrow-modern {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.dropdown-modern:hover .dropdown-arrow-modern {
    transform: rotate(180deg);
}

/* Modern Dropdown Menu */
.dropdown-menu-modern {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px;
    overflow: hidden;
}

[data-theme="dark"] .dropdown-menu-modern {
    background: rgba(11, 12, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dropdown-link-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #1e1e1e;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .dropdown-link-modern {
    color: #f5f7fa;
}

.dropdown-link-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #418FDE 100%);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.dropdown-link-modern:hover::before {
    width: 4px;
}

.dropdown-link-modern:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(65, 143, 222, 0.1) 100%);
    color: #418FDE;
    padding-left: 22px;
    transform: translateX(4px);
}

[data-theme="dark"] .dropdown-link-modern:hover {
    color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(65, 143, 222, 0.15) 100%);
}

.dropdown-link-modern i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dropdown-link-modern span {
    position: relative;
    z-index: 1;
}

.nav-controls-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle-modern {
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Light theme - theme toggle */
body:not([data-theme="dark"]) .navbar-modern .theme-toggle-modern {
    background: #ffffff;
    border: 1px solid rgba(65, 143, 222, 0.3);
    color: #418FDE;
}

/* Dark theme - theme toggle (same when scrolled or not) */
body[data-theme="dark"] .navbar-modern .theme-toggle-modern,
[data-theme="dark"] .navbar-modern .theme-toggle-modern {
    background: #003366 !important;
    border: 1px solid rgba(65, 143, 222, 0.5) !important;
    color: #ffffff !important;
    border-radius: 8px;
}

.theme-toggle-modern:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00d4ff 0%, #418FDE 100%);
    color: white;
    border-color: transparent;
}

.theme-toggle-modern .theme-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle-modern:hover .theme-icon {
    transform: rotate(180deg);
}

.nav-toggle-modern {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle-modern span {
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Light theme - hamburger menu */
body:not([data-theme="dark"]) .nav-toggle-modern span {
    background: #1e1e1e;
}

/* Dark theme - hamburger menu */
body[data-theme="dark"] .nav-toggle-modern span,
[data-theme="dark"] .nav-toggle-modern span {
    background: #ffffff;
}

.nav-toggle-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.nav-toggle-modern.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle-modern.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-modern.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #003366 0%, #184675 30%, #2a5a8a 60%, #418FDE 100%);
}

.hero-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(65, 143, 222, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 51, 102, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    animation: floatParticle 20s ease-in-out infinite;
}

.particle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.particle-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.particle-6 {
    width: 110px;
    height: 110px;
    bottom: 30%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translate(30px, -50px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-20px, -80px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translate(40px, -30px) rotate(270deg) scale(1.05);
        opacity: 0.6;
    }
}

.hero-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-modern {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
    font-size: 14px;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: #00d4ff;
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
    letter-spacing: 0.5px;
}

.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle-modern {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 400;
}

.hero-stats-modern {
    display: flex;
    gap: 40px;
    margin: 20px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item-modern {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #418FDE !important; /* Secondary color - same in both themes */
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(65, 143, 222, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff !important; /* White - same in both themes */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #003366;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
}

.btn-hero-primary .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-primary i {
    font-size: 18px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.btn-hero-secondary i,
.btn-hero-secondary span {
    position: relative;
    z-index: 1;
}

.hero-visual-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-cards-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
    max-width: 420px;
}

.feature-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 35px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.feature-card-modern.card-1 {
    animation-delay: 0.3s;
}

.feature-card-modern.card-2 {
    animation-delay: 0.5s;
}

.feature-card-modern.card-3 {
    animation-delay: 0.7s;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-modern:hover .card-glow {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(65, 143, 222, 0.3) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #00d4ff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-modern:hover .card-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5) 0%, rgba(65, 143, 222, 0.5) 100%);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.feature-card-modern p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover .card-decoration {
    opacity: 1;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Hero Section - Keep old styles for compatibility */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 40%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: left;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.hero-tag i {
    color: #00bfa6;
    font-size: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.highlight {
    color: #00bfa6;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary i, .btn-secondary i, .btn-outline i {
    font-size: 14px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

[data-theme="dark"] .btn-outline {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--secondary-color);
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.academic-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.academic-cards .card {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    color: white;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.academic-cards .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 24px;
    color: var(--secondary-color);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    text-align: left;
}

[data-theme="dark"] .section-title {
    color: #418FDE;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    text-align: left;
}

/* Mission Section */
.mission {
    background: var(--bg-secondary);
}

.mission-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 2;
    text-align: left;
}

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

.mission-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-card {
    padding: 40px;
    text-align: center;
    max-width: 300px;
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mission-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

[data-theme="dark"] .mission-card h3 {
    color: #418FDE;
}

.mission-card p {
    color: var(--text-secondary);
}

/* Focus & Scope Section */
.focus-scope {
    background: var(--bg-primary);
}

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

.scope-card {
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.scope-card:hover {
    transform: translateY(-10px);
}

.scope-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.scope-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

[data-theme="dark"] .scope-card h3 {
    color: #418FDE;
}

.scope-card p {
    color: var(--text-secondary);
}

/* What We Offer Section */
.what-we-offer {
    background: var(--bg-secondary);
}

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

.offer-card {
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.offer-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

[data-theme="dark"] .offer-card h3 {
    color: #418FDE;
}

.offer-card p {
    color: var(--text-secondary);
}

/* Editorial Standards Section */
.editorial-standards {
    background: var(--bg-primary);
}

.standards-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.standards-text {
    flex: 2;
    text-align: left;
}

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

.standards-list {
    display: grid;
    gap: 15px;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.standard-icon {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 18px;
}

.standards-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.standards-card {
    padding: 40px;
    text-align: center;
    max-width: 300px;
}

.standards-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.standards-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #003366;
}

[data-theme="dark"] .standards-card h3 {
    color: #418FDE;
}

.standards-card p {
    color: var(--text-secondary);
}

/* Join Us Section */
.join-us {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-content .section-title {
    color: white;
    margin-bottom: 20px;
}

.join-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #003366;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #418FDE;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Journal Cards */
.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.journal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.journal-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .journal-card h3 {
    color: #418FDE;
}

.journal-card .meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.journal-card .btn {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0f3a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 70, 117, 0.3);
}

.btn-secondary {
    background: var(--text-secondary);
}

.btn-secondary:hover {
    background: #555;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .team-member h3 {
    color: #418FDE;
}

.team-member .title {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

/* PDF Viewer */
.pdf-viewer-container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.pdf-viewer {
    width: 100%;
    height: 800px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

/* Modern PDF Viewer */
.pdf-viewer-container-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .pdf-viewer-container-modern {
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pdf-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(65, 143, 222, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

[data-theme="dark"] .pdf-viewer-header {
    background: rgba(65, 143, 222, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-viewer-header h2,
.pdf-viewer-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

[data-theme="dark"] .pdf-viewer-header h2,
[data-theme="dark"] .pdf-viewer-header h3 {
    color: #418FDE;
}

.pdf-viewer-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pdf-viewer-wrapper {
    position: relative;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .pdf-viewer-wrapper {
    background: rgba(0, 0, 0, 0.2);
}

.pdf-viewer-modern {
    width: 100%;
    height: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pdf-viewer-modern object,
.pdf-viewer-modern embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    display: block;
}

[data-theme="dark"] .pdf-viewer-modern {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-viewer-container-modern {
        border-radius: 15px;
        margin: 1.5rem 0;
    }
    
    .pdf-viewer-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pdf-viewer-header h2,
    .pdf-viewer-header h3 {
        font-size: 1.25rem;
    }
    
    .pdf-viewer-wrapper {
        padding: 1rem;
    }
    
    .pdf-viewer-modern {
        height: 600px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .pdf-viewer-modern {
        height: 500px;
    }
    
    .pdf-viewer-controls {
        width: 100%;
    }
    
    .pdf-viewer-controls .btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 140px 0 80px;
    position: relative;
    color: white;
}

.page-header-content {
    text-align: left;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #00bfa6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .navbar {
        background: transparent;
        border-bottom: 1px solid transparent;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 4px 20px var(--shadow-medium);
    }
    
    .nav-menu .nav-link {
        color: var(--text-primary);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 30px;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-link {
        padding: 10px 50px;
        font-size: 14px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: left;
        height: auto;
    }
    
    .hero-visual {
        justify-content: center;
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mission-content,
    .standards-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .section-header {
        text-align: left;
    }

    .join-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .scope-grid,
    .offer-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Additional styles for articles, journals, etc. */
.article-card {
    padding: 30px;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.4;
}

[data-theme="dark"] .article-title {
    color: #418FDE;
}

.article-authors {
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-abstract {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Editorial Team Styles */
.editorial-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.editor-chief-section {
    margin-bottom: 80px;
}

.editor-chief-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
}

.editor-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
}

.editor-info h3 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 10px;
}

[data-theme="dark"] .editor-info h3 {
    color: #418FDE;
}

.editor-title {
    font-size: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.editor-affiliation {
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.editor-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.editor-contact .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(65, 143, 222, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.editor-contact .contact-link:hover {
    background: var(--accent-primary);
    color: white;
}

.editors-section {
    margin-bottom: 80px;
}

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

.editor-card {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.editor-card:hover {
    transform: translateY(-5px);
}

.editor-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    margin: 0 auto 20px;
}

.editor-card h4 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 10px;
}

[data-theme="dark"] .editor-card h4 {
    color: #418FDE;
}

.editor-role {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.editor-institution {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.editor-expertise {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.editor-email {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-primary);
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(65, 143, 222, 0.1);
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.editor-email:hover {
    background: var(--accent-primary);
    color: white;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro .section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #003366;
}

[data-theme="dark"] .about-intro .section-title {
    color: #418FDE;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    margin-bottom: 40px;
    padding: 40px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.about-card h3 {
    font-size: 1.8rem;
    color: #003366;
    margin: 0;
}

[data-theme="dark"] .about-card h3 {
    color: #418FDE;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.scope-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.scope-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

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

.scope-list li i {
    color: var(--accent-primary);
    font-size: 18px;
    width: 20px;
}

.offer-list {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.offer-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.offer-content h4 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 10px;
}

[data-theme="dark"] .offer-content h4 {
    color: #418FDE;
}

.offer-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.join-us-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    margin-top: 40px;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.join-us-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.join-us-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Submissions Page Styles */
.submissions-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.submission-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 40px;
}

.submission-intro .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003366;
}

[data-theme="dark"] .submission-intro .section-title {
    color: #418FDE;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quick-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.submission-process {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

[data-theme="dark"] .step-content h3 {
    color: #418FDE;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-content li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.step-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.requirements-section {
    margin-bottom: 80px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.req-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 20px;
}

[data-theme="dark"] .requirement-card h3 {
    color: #418FDE;
}

.requirement-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.requirement-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.requirement-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.timeline-section {
    margin-bottom: 80px;
}

.timeline {
    padding: 40px;
    margin-top: 40px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-primary);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 10px;
}

[data-theme="dark"] .timeline-content h4 {
    color: #418FDE;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.timeline-duration {
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.submission-contact {
    text-align: center;
    padding: 50px 40px;
}

.submission-contact .section-title {
    margin-bottom: 20px;
}

.submission-contact p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 5px;
}

[data-theme="dark"] .contact-item h4 {
    color: #418FDE;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Current Issues Page Styles */
.current-issues-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-left .section-title {
    margin-bottom: 0;
}

.filter-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 20px;
    gap: 10px;
}

.search-box i {
    color: var(--text-secondary);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    width: 200px;
}

.filter-select {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 20px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
}

.volume-section {
    margin-bottom: 60px;
}

.volume-header {
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.volume-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin: 10px 0;
}

[data-theme="dark"] .volume-info h3 {
    color: #418FDE;
}

.volume-badge {
    background: var(--accent-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.volume-date {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.stat-item i {
    font-size: 20px;
    color: var(--accent-primary);
}

.articles-grid {
    display: grid;
    gap: 30px;
}

/* Responsive Submissions */
@media (max-width: 768px) {
    .submission-intro {
        padding: 30px 20px;
    }
    
    .submission-intro .section-title {
        font-size: 2rem;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-right: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .editor-chief-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .editor-image {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
    
    .editor-affiliation {
        justify-content: center;
    }
    
    .editors-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro .section-title {
        font-size: 2.2rem;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .about-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-right {
        width: 100%;
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .volume-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .volume-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .article-actions button {
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(0, 0, 0, 0.3);
    }

    [data-theme="dark"] {
        --glass-bg: rgba(0, 0, 0, 0.8);
        --glass-border: rgba(255, 255, 255, 0.3);
    }
}

/* Modern Page Header - For all pages */
.page-header-modern {
    background: linear-gradient(135deg, #003366 0%, #184675 30%, #2a5a8a 60%, #418FDE 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(65, 143, 222, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Modern Section Styling */
.section-modern {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-modern-alt {
    background: var(--bg-secondary);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

[data-theme="dark"] .section-title-modern {
    color: #418FDE;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Modern Glass Cards - Enhanced */
.glass-card-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

[data-theme="dark"] .glass-card-modern {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(65, 143, 222, 0.4);
}

.glass-card-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

[data-theme="dark"] .glass-card-modern h2 {
    color: #418FDE;
}

.glass-card-modern h2::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(135deg, #418FDE 0%, #003366 100%);
    border-radius: 2px;
}

.glass-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003366;
    margin-top: 25px;
    margin-bottom: 12px;
}

[data-theme="dark"] .glass-card-modern h3 {
    color: #418FDE;
}

.glass-card-modern p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Modern Journal Cards */
.journal-card-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

[data-theme="dark"] .journal-card-modern {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journal-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #418FDE 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.journal-card-modern:hover::before {
    transform: scaleX(1);
}

.journal-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(65, 143, 222, 0.5);
}

.journal-card-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.journal-card-modern:hover img {
    transform: scale(1.05);
}

.journal-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

[data-theme="dark"] .journal-card-modern h3 {
    color: #418FDE;
}

.journal-card-modern .meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.journal-card-modern .meta i {
    color: #418FDE;
    font-size: 14px;
}

/* Modern Team Cards */
.team-member-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .team-member-modern {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(65, 143, 222, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-modern:hover::before {
    opacity: 1;
}

.team-member-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(65, 143, 222, 0.5);
}

.team-member-modern img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(65, 143, 222, 0.2);
    transition: all 0.4s ease;
}

.team-member-modern:hover img {
    border-color: rgba(65, 143, 222, 0.6);
    transform: scale(1.05);
}

.team-member-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}

[data-theme="dark"] .team-member-modern h3 {
    color: #418FDE;
}

.team-member-modern .title {
    color: #418FDE;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.team-member-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Modern Form Styling */
.form-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
}

[data-theme="dark"] .form-modern {
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    margin-bottom: 10px;
    color: #003366;
    font-weight: 600;
    font-size: 0.95rem;
}

[data-theme="dark"] .form-group-modern label {
    color: #418FDE;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(65, 143, 222, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

[data-theme="dark"] .form-group-modern input,
[data-theme="dark"] .form-group-modern textarea,
[data-theme="dark"] .form-group-modern select {
    background: rgba(11, 12, 16, 0.8);
    border-color: rgba(65, 143, 222, 0.3);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: #418FDE;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(65, 143, 222, 0.1);
}

[data-theme="dark"] .form-group-modern input:focus,
[data-theme="dark"] .form-group-modern textarea:focus,
[data-theme="dark"] .form-group-modern select:focus {
    background: rgba(11, 12, 16, 0.95);
    box-shadow: 0 0 0 4px rgba(65, 143, 222, 0.2);
}

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

/* Modern Button Styles */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #418FDE 0%, #003366 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(65, 143, 222, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 143, 222, 0.4);
}

.btn-modern-secondary {
    background: transparent;
    color: #418FDE;
    border: 2px solid #418FDE;
    box-shadow: none;
}

.btn-modern-secondary:hover {
    background: #418FDE;
    color: white;
}

.btn-modern-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Modern Grid Layouts */
.grid-modern {
    display: grid;
    gap: 30px;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Responsive Styles for Modern Header and Hero */
@media (max-width: 1024px) {
    .hero-container-modern {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content-modern {
        align-items: center;
    }
    
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .hero-stats-modern {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Modern Top Header - Mobile */
    .top-header-modern {
        padding: 10px 0;
    }
    
    .top-header-modern .top-header-container {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .top-header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .welcome-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .top-header-link-modern span {
        display: none;
    }
    
    /* Modern Navbar - Mobile */
    .nav-container-modern {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-menu-modern {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 10px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    [data-theme="dark"] .nav-menu-modern {
        background: rgba(11, 12, 16, 0.98);
    }
    
    .nav-menu-modern.active {
        left: 0;
    }
    
    .nav-item-modern {
        width: 100%;
    }
    
    .nav-link-modern {
        width: 100%;
        padding: 15px 20px;
        color: #1e1e1e;
        border-radius: 12px;
        margin: 0;
    }
    
    [data-theme="dark"] .nav-link-modern {
        color: #ffffff;
    }
    
    body:not([data-theme="dark"]) .navbar-modern.scrolled .nav-link-modern {
        color: #1e1e1e;
    }
    
    [data-theme="dark"] .navbar-modern.scrolled .nav-link-modern {
        color: #ffffff;
    }
    
    .dropdown-menu-modern {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 10px 0 10px 30px;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-modern.active .dropdown-menu-modern {
        max-height: 300px;
    }
    
    .nav-toggle-modern {
        display: flex;
        z-index: 1001;
    }
    
    /* Modern Hero - Mobile */
    .hero-modern {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container-modern {
        padding: 0 20px;
        gap: 40px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item-modern {
        text-align: center;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .feature-cards-modern {
        max-width: 100%;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card-modern {
        padding: 25px;
    }
    
    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Modern Page Header - Mobile */
    .page-header-modern {
        padding: 100px 0 50px;
    }
    
    .page-title-modern {
        font-size: 2.2rem;
    }
    
    .page-subtitle-modern {
        font-size: 1.1rem;
    }
    
    /* Modern Sections - Mobile */
    .section-modern {
        padding: 50px 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    /* Modern Glass Cards - Mobile */
    .glass-card-modern {
        padding: 25px;
        border-radius: 16px;
    }
    
    .glass-card-modern h2 {
        font-size: 1.6rem;
    }
    
    .glass-card-modern h3 {
        font-size: 1.2rem;
    }
    
    /* Modern Journal Cards - Mobile */
    .journal-card-modern {
        padding: 20px;
    }
    
    .journal-card-modern h3 {
        font-size: 1.3rem;
    }
    
    /* Modern Team Cards - Mobile */
    .team-member-modern {
        padding: 25px;
    }
    
    .team-member-modern img {
        width: 120px;
        height: 120px;
    }
    
    /* Modern Forms - Mobile */
    .form-modern {
        padding: 25px;
    }
    
    .form-group-modern input,
    .form-group-modern textarea,
    .form-group-modern select {
        padding: 12px 15px;
    }
    
    /* Modern Buttons - Mobile */
    .btn-modern {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Modern Grids - Mobile */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Responsive for Modern Pages */
@media (max-width: 768px) {
    .page-header-modern {
        padding: 120px 0 60px;
    }
    
    .page-title-modern {
        font-size: 2.8rem;
    }
    
    .page-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .section-modern {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 2.4rem;
    }
    
    .glass-card-modern {
        padding: 30px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ============================================
   VIP DESIGN STYLES - Articles, Blog, Journals
   ============================================ */

/* Breadcrumbs */
.article-breadcrumb,
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.article-breadcrumb a,
.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover,
.blog-breadcrumb a:hover {
    color: #ffffff;
}

.article-breadcrumb i,
.blog-breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.article-breadcrumb span,
.blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* VIP Article Title */
.article-title-vip {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Article Meta VIP */
.article-meta-vip {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.article-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-meta-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.article-meta-badge i {
    font-size: 0.9rem;
}

/* Article Info Card */
.article-info-card {
    margin-bottom: 30px;
    padding: 30px;
}

.article-stats-vip {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(65, 143, 222, 0.1);
}

.article-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 143, 222, 0.1);
    border-radius: 12px;
}

.article-stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Article Keywords */
.article-keywords {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(65, 143, 222, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.article-keywords i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 143, 222, 0.3);
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(65, 143, 222, 0.05);
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.article-meta-row i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Article Abstract Card */
.article-abstract-card {
    margin-bottom: 30px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(65, 143, 222, 0.05) 0%, rgba(0, 51, 102, 0.05) 100%);
    border: 2px solid rgba(65, 143, 222, 0.15);
}

.abstract-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-top: 20px;
}

/* Article PDF Actions */
.article-pdf-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Custom PDF Viewer */
.custom-pdf-viewer-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

[data-theme="dark"] .custom-pdf-viewer-container {
    background: rgba(11, 12, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.custom-pdf-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: rgba(65, 143, 222, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

[data-theme="dark"] .custom-pdf-viewer-header {
    background: rgba(65, 143, 222, 0.15);
}

.pdf-viewer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

[data-theme="dark"] .pdf-viewer-title {
    color: #418FDE;
}

.pdf-viewer-title i {
    font-size: 1.4rem;
}

.pdf-viewer-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-toolbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

[data-theme="dark"] .pdf-toolbar-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #418FDE;
}

.pdf-toolbar-btn:hover {
    background: rgba(65, 143, 222, 0.2);
    border-color: rgba(65, 143, 222, 0.4);
    transform: translateY(-2px);
}

.pdf-toolbar-btn:active {
    transform: translateY(0);
}

.pdf-download-btn {
    background: rgba(65, 143, 222, 0.2) !important;
    border-color: rgba(65, 143, 222, 0.4) !important;
}

.pdf-zoom-level {
    padding: 0 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

.custom-pdf-viewer-content {
    position: relative;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    overflow: auto;
    max-height: 900px;
}

[data-theme="dark"] .custom-pdf-viewer-content {
    background: rgba(0, 0, 0, 0.2);
}

.custom-pdf-iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

[data-theme="dark"] .custom-pdf-iframe {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Blog Grid */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card VIP */
.blog-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .blog-card-modern {
    background: rgba(11, 12, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(65, 143, 222, 0.3);
}

[data-theme="dark"] .blog-card-modern:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-card-overlay i {
    transform: scale(1);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #418FDE 0%, #003366 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 4rem;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-item i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.blog-card-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Blog Post VIP */
.blog-post-header {
    padding: 160px 0 100px;
}

.blog-post-title-vip {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-post-meta-vip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-author-info i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-author-info div {
    display: flex;
    flex-direction: column;
}

.blog-author-info strong {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.blog-author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 3px;
}

.blog-stats {
    display: flex;
    gap: 20px;
}

.blog-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.blog-stat-item i {
    font-size: 1.1rem;
}

.blog-featured-image-container {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.blog-featured-image-container:hover .blog-featured-image {
    transform: scale(1.02);
}

.blog-excerpt-card {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(65, 143, 222, 0.05) 0%, rgba(0, 51, 102, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
}

.blog-excerpt-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
}

.blog-post-content-vip {
    margin-bottom: 50px;
}

.blog-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.blog-content-wrapper h1,
.blog-content-wrapper h2,
.blog-content-wrapper h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.blog-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-post-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(65, 143, 222, 0.1);
}

/* Pagination */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 30px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: rgba(65, 143, 222, 0.2);
    border-color: rgba(65, 143, 222, 0.4);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.pagination-info {
    padding: 12px 24px;
    background: rgba(65, 143, 222, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Blog & Article */
@media (max-width: 768px) {
    .article-title-vip,
    .blog-post-title-vip {
        font-size: 2rem;
    }
    
    .article-meta-vip {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-stats-vip {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .blog-post-meta-vip {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .custom-pdf-viewer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .custom-pdf-iframe {
        height: 600px;
    }
}
