/*
Theme Name: Vedigrace
Theme URI: https://vedigrace.com
Description: Custom theme for Vedigrace with custom header
Author: Vedigrace
Author URI: https://vedigrace.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vedigrace
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-bottom: 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Header Bar Styles */
.top-header {
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
    border-bottom: none;
    padding: 12px 0;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.header-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.header-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.header-link:hover::after {
    width: 100%;
}

.header-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.cart-link {
    font-weight: 500;
}

/* Currency Switcher Styles */
.currency-switcher {
    position: relative;
    z-index: 10000;
}

.currency-btn {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.currency-btn .dropdown-arrow {
    transition: transform 0.3s ease;
}

.currency-switcher.active .dropdown-arrow {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    overflow: hidden;
}

.currency-switcher.active .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.currency-option.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.currency-code {
    font-weight: 700;
    color: #667eea;
    font-size: 14px;
}

.currency-name {
    font-size: 12px;
    color: #666;
}

.currency-option.active .currency-code {
    color: #764ba2;
}

/* User Profile Dropdown Styles */
.user-profile-dropdown {
    position: relative;
    z-index: 10000;
}

.user-profile-dropdown .profile-toggle {
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.user-profile-dropdown .profile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.user-profile-dropdown .dropdown-icon {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.user-profile-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    overflow: hidden;
}

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

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

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

.profile-menu-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    color: #667eea;
}

.profile-menu-item svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.profile-menu-item.logout-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    color: #ef4444;
}

/* Main Header Styles */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: none;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

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

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

.site-logo a {
    display: block;
}

.site-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

/* Header Search Styles */
.header-search {
    flex: 1;
    max-width: 600px;
    display: flex;
    gap: 0;
}

.search-dropdown-wrapper {
    position: relative;
}

.courses-dropdown-btn {
    padding: 12px 18px;
    border: 2px solid #e8e8e8;
    border-right: none;
    border-radius: 25px 0 0 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    font-size: 14px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.courses-dropdown-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #ff6b35;
    color: #ff6b35;
}

.search-dropdown-wrapper.active .courses-dropdown-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: #ff6b35;
    color: #ff6b35;
}

.search-dropdown-wrapper.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: transform 0.2s;
}

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

.courses-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-dropdown-wrapper.active .courses-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.courses-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.courses-dropdown-menu a:last-child {
    border-bottom: none;
}

.courses-dropdown-menu a:hover {
    background-color: #f8f8f8;
}

.search-form {
    flex: 1;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 0 25px 25px 0;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-field:focus {
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-field::placeholder {
    color: #999;
}

.search-submit {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.2s;
}

.search-submit:hover {
    color: #333;
}

.search-submit svg {
    display: block;
}

.main-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-navigation .nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.main-navigation .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8555);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.main-navigation .nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.main-navigation .nav-link:hover::before {
    width: 80%;
}

.main-navigation .nav-dropdown {
    position: relative;
}

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

.dropdown-icon {
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #ff8555);
}

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

.dropdown-item {
    display: block;
    padding: 14px 24px;
    padding-left: 28px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    color: #ff6b35;
    padding-left: 32px;
}

.dropdown-item:hover::before {
    opacity: 1;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.main-navigation a:hover {
    color: #ff6b35;
}

.main-navigation .dropdown {
    position: relative;
}

/* Reset WordPress defaults */
#site-header {
    margin: 0;
    padding: 0;
}

/* Admin Bar Offset */
.admin-bar #site-header {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #site-header {
        margin-top: 46px;
    }
}

body {
    margin: 0;
    padding: 0;
}

#site-content {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header-container,
    .main-header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-header-left,
    .top-header-right,
    .main-navigation {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hero Section */
.hero-section {
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(45, 20, 60, 0.65) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.indicator.active {
    background: #ff6b35;
    width: 50px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    transform: scaleY(1.3);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    padding: 20px 0;
}

.hero-badges {
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.badge-green {
    background: rgba(212, 244, 221, 0.95);
    color: #0d5c2c;
    box-shadow: 0 4px 15px rgba(13, 92, 44, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.badge-pink {
    background: rgba(255, 229, 229, 0.95);
    color: #d63031;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease-out;
}

.badge-purple {
    background: rgba(230, 230, 250, 0.95);
    color: #8b00b3;
    box-shadow: 0 4px 15px rgba(139, 0, 179, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInLeft 0.8s ease-out;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: none;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin: 0 0 35px 0;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: fadeInUp 1s ease-out;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
}

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

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

.hero-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.hero-image {
    position: relative;
    padding: 20px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Showcase Container */
.visual-showcase {
    position: relative;
    width: 100%;
    height: 350px;
    perspective: 1000px;
}

/* Floating Geometric Shapes */
.shape-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
    animation: floatRotate 15s infinite ease-in-out;
}

.shape-1 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 2s;
}

.shape-3 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    left: 20%;
    border-radius: 10px;
    animation-delay: 4s;
}

.shape-4 {
    width: 45px;
    height: 45px;
    top: 30%;
    right: 25%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 1s;
}

.shape-5 {
    width: 38px;
    height: 38px;
    bottom: 30%;
    right: 10%;
    border-radius: 50% 0;
    animation-delay: 3s;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Holographic Display */
.holographic-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.holo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: ringPulse 3s infinite ease-in-out;
}

.ring-1 {
    width: 150px;
    height: 150px;
    border-color: rgba(255, 215, 0, 0.4);
    animation-delay: 0s;
}

.ring-2 {
    width: 115px;
    height: 115px;
    border-color: rgba(255, 107, 53, 0.4);
    animation-delay: 1s;
}

.ring-3 {
    width: 80px;
    height: 80px;
    border-color: rgba(255, 215, 0, 0.6);
    animation-delay: 2s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.holo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 107, 53, 0.4);
    animation: holoPulse 2s infinite ease-in-out;
}

.holo-center svg {
    width: 45px;
    height: 45px;
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes holoPulse {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.6), inset 0 0 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.9), inset 0 0 50px rgba(255, 107, 53, 0.6);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Particle Field */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 50%; left: 10%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 20%; left: 50%; animation-delay: 1.5s; }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: 2.5s; }
.particle:nth-child(7) { top: 40%; left: 60%; animation-delay: 0.5s; }
.particle:nth-child(8) { top: 60%; left: 40%; animation-delay: 3.5s; }
.particle:nth-child(9) { top: 25%; left: 90%; animation-delay: 1.8s; }
.particle:nth-child(10) { top: 85%; left: 15%; animation-delay: 2.8s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translate(50px, -80px) scale(1.5);
        opacity: 0.8;
    }
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin-left: -150px;
    margin-top: -150px;
    border: 2px solid;
    border-radius: 50%;
    opacity: 0;
    animation: waveExpand 4s infinite ease-out;
}

.wave-1 {
    border-color: rgba(255, 215, 0, 0.4);
    animation-delay: 0s;
}

.wave-2 {
    border-color: rgba(255, 107, 53, 0.4);
    animation-delay: 1.3s;
}

.wave-3 {
    border-color: rgba(255, 215, 0, 0.4);
    animation-delay: 2.6s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Mini Stat Cards */
.mini-stat-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 15;
}

.stat-card-1 {
    top: 15%;
    right: 8%;
}

.stat-card-2 {
    bottom: 15%;
    left: 8%;
}

.mini-stat-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.mini-stat-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Floating Badge Enhancements */
.floating-badge {
    position: absolute;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(15px);
}

.badge-top-right {
    top: 8%;
    right: 15%;
}

.badge-middle-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

/* Animation Variations */
.animate-float-1 {
    animation: float1 4s ease-in-out infinite;
}

.animate-float-2 {
    animation: float2 5s ease-in-out infinite;
}

.animate-float-3 {
    animation: float3 6s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Zodiac Circle Animation for Slide 2 */
.zodiac-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
}

.zodiac-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: zodiacSpin 20s linear infinite;
}

.zodiac-ring-1 {
    width: 210px;
    height: 210px;
    border-color: rgba(147, 112, 219, 0.4);
}

.zodiac-ring-2 {
    width: 160px;
    height: 160px;
    border-color: rgba(255, 215, 0, 0.4);
    animation-direction: reverse;
}

@keyframes zodiacSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.zodiac-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(147, 112, 219, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.4);
    animation: holoPulse 2s infinite ease-in-out;
}

.zodiac-center svg {
    width: 60px;
    height: 60px;
    animation: iconFloat 3s infinite ease-in-out;
}

/* Zodiac Symbols */
.zodiac-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.zodiac-symbol {
    position: absolute;
    font-size: 32px;
    color: rgba(255, 215, 0, 0.8);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: symbolFloat 6s infinite ease-in-out;
}

.symbol-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.symbol-3 {
    top: 45%;
    left: 5%;
    animation-delay: 2s;
}

.symbol-4 {
    top: 45%;
    right: 5%;
    animation-delay: 3s;
}

.symbol-5 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.symbol-6 {
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.badge-top-right {
    top: 30px;
    right: 40px;
}

.badge-bottom {
    bottom: 100px;
    left: 40px;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Add glow effect to hero section */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b47 50%, #1a1a1a 100%);
    color: #fff;
    padding: 4px 10px;
    position: relative;
    overflow: visible;
}

.mission-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.mission-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: missionGlowPulse 4s ease-in-out infinite;
}

.mission-glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
    top: -150px;
    left: 10%;
}

.mission-glow-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
    bottom: -125px;
    right: 15%;
    animation-delay: 2s;
}

.mission-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.mission-particle:nth-child(3) {
    top: 20%;
    left: 20%;
    animation: floatParticle 8s ease-in-out infinite;
}

.mission-particle:nth-child(4) {
    top: 60%;
    right: 25%;
    animation: floatParticle 10s ease-in-out infinite 2s;
}

.mission-particle:nth-child(5) {
    bottom: 30%;
    left: 70%;
    animation: floatParticle 12s ease-in-out infinite 4s;
}

@keyframes missionGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(1);
        opacity: 1;
    }
    75% {
        transform: translate(-40px, -30px) scale(0.8);
        opacity: 0.8;
    }
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mission-icon {
    color: #ff6b35;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.icon-ring,
.icon-ring-2 {
    position: absolute;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.icon-ring {
    width: 100%;
    height: 100%;
}

.icon-ring-2 {
    width: 100%;
    height: 100%;
    animation-delay: 1.5s;
}

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

@keyframes ringExpand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

.mission-text {
    flex: 1;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mission-highlight {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.mission-number {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ffd700, #ff6b35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    display: inline-block;
}

.mission-year {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.mission-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-avatars {
    display: flex;
    margin-left: -10px;
}

.stat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    margin-left: -12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.stat-avatar:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: #ff6b35;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.stat-counter {
    display: flex;
    gap: 6px;
}

.counter-item {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #1a1a1a;
    width: 36px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: counterFlip 0.6s ease-out;
    animation-fill-mode: backwards;
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    animation: counterShine 3s ease-in-out infinite;
}

@keyframes counterFlip {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(0);
        opacity: 1;
    }
}

@keyframes counterShine {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.counter-item:nth-child(1) { animation-delay: 0.1s; }
.counter-item:nth-child(2) { animation-delay: 0.2s; }
.counter-item:nth-child(3) { animation-delay: 0.3s; }
.counter-item:nth-child(4) { animation-delay: 0.4s; }
.counter-item:nth-child(5) { animation-delay: 0.5s; }

.stat-label {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Courses Category Section */
.courses-category-section {
    padding: 80px 20px;
    background-color: #1a1a2e;
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(44, 44, 74, 0.88) 100%),
        url('images/Our Services & Products.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.courses-category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.courses-category-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.courses-category-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 60px 0;
    color: #ffffff;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.category-icon {
    color: #667eea;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    color: #ffd700;
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-name {
    color: #764ba2;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #2d1b47 50%, #0f0f0f 100%);
    padding: 60px 20px;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff6b35, #ffd700, #ff6b35) 1;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: statGlow 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes statGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    white-space: nowrap;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .mission-container {
        flex-direction: column;
        text-align: center;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .courses-category-section {
        padding: 60px 15px;
        background-position: center center;
        background-size: cover;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .courses-category-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .category-card {
        padding: 25px 15px;
        gap: 12px;
    }
    
    .category-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .category-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-category-section {
        padding: 40px 12px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Discover In-demand Courses Section */
.courses-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.courses-section .section-title {
    color: #1a1a2e;
    text-shadow: none;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
}

.course-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.course-tab {
    padding: 14px 35px;
    border: 2px solid #e8e8e8;
    background: #ffffff;
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.course-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.course-tab:hover::before {
    width: 300px;
    height: 300px;
}

.course-tab.active {
    background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
    color: #fff;
    border-color: #e63946;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.course-tab:hover:not(.active) {
    background: #f8f9fa;
    color: #e63946;
    border-color: #e63946;
    transform: translateY(-2px);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.course-card:hover::after {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
}

.course-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.course-card-image:hover {
    transform: scale(1.02);
}

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

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

.course-bg-gradient-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.course-bg-gradient-2 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.course-bg-gradient-3 {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
}

.course-bg-gradient-4 {
    background: linear-gradient(135deg, #4b134f 0%, #c94b4b 100%);
}

.course-bg-gradient-5 {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.course-bg-gradient-6 {
    background: linear-gradient(135deg, #360033 0%, #0b8793 100%);
}

.course-bg-gradient-7 {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
}

.course-bg-gradient-8 {
    background: linear-gradient(135deg, #ad5389 0%, #3c1053 100%);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.course-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.course-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.6;
    min-height: 48px;
    transition: color 0.3s ease;
}

.course-card:hover .course-title {
    color: #ff6b35;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
    flex: 1;
}

.course-duration,
.course-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5a6c7d;
    font-weight: 500;
    padding: 8px 0;
    border-left: 3px solid #e63946;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.course-card:hover .course-duration,
.course-card:hover .course-type {
    border-left-color: #ff6b35;
    padding-left: 16px;
}

.course-duration svg,
.course-type svg {
    color: #e63946;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.course-card:hover .course-duration svg,
.course-card:hover .course-type svg {
    transform: scale(1.2);
}

.course-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8e8e8;
    color: #4a5568;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.course-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.course-btn:hover::before {
    width: 400px;
    height: 400px;
}

.course-btn:hover {
    color: #fff;
    border-color: #e63946;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
    transform: translateY(-2px);
}

.course-btn span {
    position: relative;
    z-index: 2;
}

/* Loading State for Courses */
.courses-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.courses-loading p {
    margin-top: 20px;
    font-size: 16px;
    color: #64748b;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f4f6;
    border-top-color: #e63946;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.no-courses-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.no-courses-message p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Responsive Courses Section */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .course-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .course-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

/* Why Choose VedicGrace Section */
.why-choose-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section .section-title {
    color: #1a1a2e;
    text-shadow: none;
}

.why-choose-section::before,
.why-choose-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.why-choose-section::before {
    top: -300px;
    left: -200px;
}

.why-choose-section::after {
    bottom: -300px;
    right: -200px;
    animation-delay: 7.5s;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.7s ease;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b6b 50%, #ff8555 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ff6b35;
    opacity: 0;
    animation: iconRing 2s ease-out infinite;
}

@keyframes iconRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.why-choose-card:hover .why-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.why-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-title {
    color: #ff6b35;
}

.why-description {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Why Choose Section */
@media (max-width: 1200px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-choose-section {
        padding: 60px 20px;
    }
    
    .why-choose-card {
        padding: 30px 25px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 600px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-section {
        padding: 50px 20px;
    }
    
    .why-title {
        font-size: 16px;
    }
    
    .why-description {
        font-size: 13px;
    }
}

/* Latest Articles Section */
.latest-articles-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.latest-articles-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 107, 53, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.latest-articles-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.latest-articles-section h2 {
    color: #fff;
    text-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Articles Header with Controls */
.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.scroll-controls {
    display: flex;
    gap: 12px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-btn:hover {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.8), rgba(255, 107, 53, 0.8));
    border-color: rgba(255, 107, 53, 0.8);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Horizontal Scroll Wrapper */
.articles-scroll-wrapper {
    position: relative;
    width: 100%;
}

/* Latest Articles Grid - Horizontal Scroller */
.latest-articles-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

/* Hide scrollbar completely */
.latest-articles-grid::-webkit-scrollbar {
    height: 0;
    display: none;
}

.latest-articles-grid::-webkit-scrollbar-track {
    background: transparent;
}

.latest-articles-grid::-webkit-scrollbar-thumb {
    background: transparent;
}

/* For Firefox */
.latest-articles-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.9), rgba(255, 107, 53, 0.9));
    border-radius: 2px;
    width: 25%;
    transition: width 0.3s ease;
}

.article-card {
    background: #ffffff;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(230, 57, 70, 0.9), rgba(255, 107, 53, 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

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

.article-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.article-date {
    color: rgba(255, 107, 53, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    padding: 0 30px;
    margin-top: 25px;
}

.article-title {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 75px;
    padding: 0 30px;
}

.article-categories {
    color: #333333;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 0 30px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-author {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    padding: 0 30px;
    margin-bottom: 20px;
}

.article-read-more {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 30px;
    margin: 0 30px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, #e63946, #ff6b35);
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.article-read-more:hover {
    background: linear-gradient(135deg, #e63946, #ff6b35);
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .article-card {
        min-width: 320px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .articles-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .scroll-controls {
        align-self: flex-end;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
    }
    
    .article-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .latest-articles-section {
        padding: 60px 20px;
    }
}

.articles-table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    margin-top: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: none;
    overflow: hidden;
}

.articles-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.articles-table thead {
    background: transparent;
    position: relative;
}

.articles-table thead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    border-radius: 19px 19px 0 0;
    z-index: 0;
}

.articles-table thead tr th:first-child {
    border-top-left-radius: 19px;
}

.articles-table thead tr th:last-child {
    border-top-right-radius: 19px;
}

.articles-table thead th {
    padding: 25px 40px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.articles-table tbody tr {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.articles-table tbody tr::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e63946, #ff6b35);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.articles-table tbody tr:hover::before {
    transform: scaleY(1);
}

.articles-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(8px);
    box-shadow: -4px 0 15px rgba(255, 107, 53, 0.2);
}

.articles-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.articles-table tbody tr:nth-child(even):hover {
    background: rgba(255, 107, 53, 0.08);
}

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

.articles-table tbody td {
    padding: 22px 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    transition: color 0.3s ease;
}

.articles-table tbody tr:first-child td {
    padding-top: 30px;
}

.articles-table tbody tr:last-child td {
    padding-bottom: 40px;
}

.articles-table tbody tr:hover td {
    color: #ffffff;
}

.articles-table tbody td:first-child {
    font-weight: 600;
    color: #ff8555;
}

.latest-articles-table thead th:nth-child(1),
.latest-articles-table tbody td:nth-child(1) {
    width: 150px;
}

.latest-articles-table thead th:nth-child(2),
.latest-articles-table tbody td:nth-child(2) {
    width: auto;
}

.latest-articles-table thead th:nth-child(3),
.latest-articles-table tbody td:nth-child(3) {
    width: 300px;
}

.latest-articles-table thead th:nth-child(4),
.latest-articles-table tbody td:nth-child(4) {
    width: 200px;
}

.latest-articles-table tbody td:nth-child(1) {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.latest-articles-table tbody td:nth-child(3) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.latest-articles-table tbody td:nth-child(4) {
    color: #fff;
    font-weight: 500;
}

.latest-articles-table tbody td:nth-child(4) {
    color: #fff;
    font-weight: 500;
}

/* Other Articles Section */
.other-articles-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.other-articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.other-articles-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
    color: #333;
}

.simple-table-wrapper {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.simple-articles-table {
    width: 100%;
    border-collapse: collapse;
}

.simple-articles-table thead {
    background: linear-gradient(90deg, #f04e30 0%, #ff7849 100%);
}

.simple-articles-table thead th {
    padding: 18px 25px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.simple-articles-table thead th:first-child {
    width: 100px;
}

.simple-articles-table thead th:last-child {
    width: 180px;
    text-align: center;
}

.simple-articles-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.simple-articles-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.simple-articles-table tbody tr:hover {
    background: #f0f0f0;
}

.simple-articles-table tbody tr:last-child {
    border-bottom: none;
}

.simple-articles-table tbody td {
    padding: 16px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.simple-articles-table tbody td:first-child {
    width: 100px;
    font-weight: 600;
    color: #333;
}

.simple-articles-table tbody td:last-child {
    width: 180px;
    text-align: center;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.simple-articles-table tbody td:last-child:hover {
    color: #ff6b35;
}

/* Responsive */
@media (max-width: 900px) {
    .other-articles-section {
        padding: 60px 15px;
    }
    
    .other-articles-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .simple-table-wrapper {
        overflow-x: auto;
    }
    
    .simple-articles-table {
        min-width: 600px;
    }
    
    .simple-articles-table thead th,
    .simple-articles-table tbody td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .other-articles-section {
        padding: 40px 10px;
    }
    
    .section-title-dark {
        font-size: 22px;
    }
    
    .articles-table {
        min-width: 500px;
    }
    
    .articles-table thead th,
    .articles-table tbody td {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Testimonials Section - Words Have Power */
.testimonials-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: #1a1a2e;
    text-shadow: none;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    padding: 20px 80px 30px;
}

.testimonials-track {
    display: flex;
    gap: 35px;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: visible;
}

.testimonial-card {
    flex: 0 0 calc(25% - 26.25px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 180px;
    font-family: Georgia, serif;
    color: rgba(255, 107, 53, 0.06);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #e63946, #ff6b35) border-box;
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    border-radius: 50%;
    border: 2px dashed #ff6b35;
    animation: rotate 10s linear infinite;
}

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

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    position: relative;
    display: inline-block;
}

.testimonial-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 2px;
}

.testimonial-location {
    font-size: 13px;
    color: #666;
    margin: 0 0 25px 0;
    font-style: italic;
}

.testimonial-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    flex: 1;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #ff6b35);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.slider-arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, #d63031, #e63946);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.5);
}

.slider-arrow:disabled {
    background: linear-gradient(135deg, #ccc, #ddd);
    cursor: not-allowed;
    opacity: 0.5;
    transform: translateY(-50%);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

/* Responsive Testimonials */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-height: 320px;
    }
    
    .testimonials-slider {
        padding: 0 50px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        min-height: 300px;
    }
    
    .testimonials-slider {
        padding: 0 45px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-slider {
        padding: 0 40px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        min-height: 280px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
}

/* Footer Styles */
.site-footer {
    background: #2c2c2c;
    color: #fff;
}

.footer-main {
    background: #2c2c2c;
    padding: 50px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff5722;
    transform: translateY(-3px);
}

/* Join Button */
.join-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.join-button:hover {
    background: linear-gradient(90deg, #ff8c5a 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #4a4a4a;
    border-radius: 4px;
    background: #3a3a3a;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    border-color: #ff5722;
}

.newsletter-submit {
    width: 45px;
    height: 45px;
    background: #ff5722;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.newsletter-submit:hover {
    background: #e64a19;
}

/* Footer Links Section */
.footer-links {
    background: #1f1f1f;
    padding: 40px 20px;
    padding-bottom: 60px;
}

.footer-links .footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-links-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-links-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.8;
    color: #999;
    font-size: 13px;
}

.footer-links-inline a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links-inline a:hover {
    color: #ff5722;
}

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

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

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ff5722;
    padding-left: 5px;
}

.footer-courses-menu {
    column-gap: 30px;
}

.footer-courses-menu li {
    break-inside: avoid;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a1a;
    padding: 5px 20px;
    border-top: 1px solid #333;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-contact-item:hover {
    color: #ff5722;
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.footer-copyright {
    color: #999;
    font-size: 12px;
    width: 100%;
    text-align: center;
    display: block;
}

.footer-copyright p {
    margin: 0;
    text-align: center;
    display: block;
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-links .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-courses-column {
        grid-column: span 2;
    }
    
    .footer-courses-menu {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-main {
        padding: 40px 20px;
    }
    
    .footer-links {
        padding: 30px 20px;
    }
    
    .footer-links .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-courses-column {
        grid-column: span 1;
    }
    
    .footer-courses-menu {
        column-count: 1;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 15px;
    }
    
    .footer-links {
        padding: 25px 15px;
    }
    
    .footer-bottom {
        padding: 15px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .join-button {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   MOBILE RESPONSIVE HEADER STYLES
   ==================================== */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Tablet & Mobile Responsive Styles */
@media (max-width: 1200px) {
    .top-header-container,
    .main-header-container {
        padding: 0 20px;
    }
    
    .header-search {
        max-width: 400px;
    }
    
    .main-navigation {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .top-header {
        padding: 10px 0;
    }
    
    .top-header-left,
    .top-header-right {
        gap: 15px;
    }
    
    .header-link {
        font-size: 12px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .header-search {
        max-width: 300px;
    }
    
    .courses-dropdown-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .search-field {
        padding: 10px 40px 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    /* Hide desktop navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        right: 0;
        pointer-events: auto !important;
    }
    
    .main-navigation .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        margin-bottom: 0;
        font-size: 16px;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .main-navigation .nav-link::before {
        display: none;
    }
    
    .main-navigation .nav-link:hover {
        background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
        padding-left: 30px;
        color: #ff6b35;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Overlay when menu is open - separate element */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
        pointer-events: none;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .header-search {
        flex: 1;
        max-width: none;
        min-width: 0;
    }
    
    .search-form {
        width: 100%;
    }
    
    .search-field {
        border-radius: 25px;
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .top-header {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .top-header-container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 10px;
    }
    
    .top-header-left,
    .top-header-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .header-link,
    .currency-switcher {
        font-size: 9px;
        gap: 3px;
        justify-content: center;
        text-align: center;
    }
    
    .header-icon {
        width: 11px;
        height: 11px;
    }
    
    .main-header {
        padding: 12px 0;
    }
    
    .main-header-container {
        padding: 0 15px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .site-logo img {
        max-height: 40px;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .search-dropdown-wrapper {
        width: 100%;
    }
    
    .courses-dropdown-btn {
        width: 100%;
        border-radius: 25px;
        border-right: 2px solid #e8e8e8;
    }
    
    .search-form {
        width: 100%;
    }
    
    .search-field {
        border-radius: 25px;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .main-navigation {
        width: 280px;
        padding: 70px 20px 20px;
        background: #ffffff;
    }
}

@media (max-width: 480px) {
    .top-header-left,
    .top-header-right {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .header-link {
        font-size: 10px;
    }
    
    .site-logo img {
        max-height: 35px;
    }
    
    .search-field {
        font-size: 12px;
        padding: 8px 35px 8px 12px;
    }
    
    .search-submit {
        right: 3px;
    }
    
    .search-submit svg {
        width: 16px;
        height: 16px;
    }
    
    .main-navigation {
        width: 100%;
        padding: 60px 15px 15px;
        background: #ffffff;
    }
    
    .main-navigation .nav-link {
        padding: 12px 15px;
        font-size: 15px;
        background: transparent;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .mobile-menu-toggle span {
        height: 2.5px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure menu is above other content */
#site-header {
    position: relative;
    z-index: 999;
}

/* ====================================
   HERO SECTION MOBILE RESPONSIVE
   ==================================== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-badges {
        display: flex;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-image {
        min-height: 400px;
        order: -1;
    }
    
    .visual-showcase {
        height: 400px;
    }
    
    .holographic-display {
        width: 180px;
        height: 180px;
    }
    
    .ring-1 {
        width: 170px;
        height: 170px;
    }
    
    .ring-2 {
        width: 130px;
        height: 130px;
    }
    
    .ring-3 {
        width: 90px;
        height: 90px;
    }
    
    .holo-center {
        width: 70px;
        height: 70px;
    }
    
    .holo-center svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-button {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .hero-badges {
        margin-bottom: 20px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-image {
        min-height: 350px;
        padding: 10px;
    }
    
    .visual-showcase {
        height: 350px;
    }
    
    .holographic-display {
        width: 150px;
        height: 150px;
    }
    
    .ring-1 {
        width: 140px;
        height: 140px;
    }
    
    .ring-2 {
        width: 110px;
        height: 110px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
    }
    
    .holo-center {
        width: 60px;
        height: 60px;
    }
    
    .holo-center svg {
        width: 40px;
        height: 40px;
    }
    
    .floating-shape {
        display: none;
    }
    
    .floating-badge {
        display: none;
    }
    
    .mini-stat-card {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .mini-stat-icon {
        font-size: 16px;
    }
    
    .mini-stat-text {
        font-size: 11px;
    }
    
    .stat-card-1 {
        top: 10%;
        right: 5%;
    }
    
    .stat-card-2 {
        bottom: 10%;
        left: 5%;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 30px;
        height: 5px;
    }
    
    .indicator.active {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 10px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .hero-button {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .badge {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .badge svg {
        width: 12px;
        height: 12px;
    }
    
    .hero-image {
        min-height: 280px;
    }
    
    .visual-showcase {
        height: 280px;
    }
    
    .holographic-display {
        width: 120px;
        height: 120px;
    }
    
    .ring-1 {
        width: 110px;
        height: 110px;
    }
    
    .ring-2 {
        width: 85px;
        height: 85px;
    }
    
    .ring-3 {
        width: 60px;
        height: 60px;
    }
    
    .holo-center {
        width: 50px;
        height: 50px;
    }
    
    .holo-center svg {
        width: 30px;
        height: 30px;
    }
    
    .mini-stat-card {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .mini-stat-icon {
        font-size: 14px;
    }
    
    .mini-stat-text {
        font-size: 10px;
    }
    
    .particle-field,
    .energy-waves {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .indicator {
        width: 25px;
        height: 4px;
    }
    
    .indicator.active {
        width: 35px;
    }
}

/* ====================================
   MISSION SECTION MOBILE RESPONSIVE
   ==================================== */

@media (max-width: 1200px) {
    .mission-container {
        gap: 40px;
    }
    
    .mission-content h2 {
        font-size: 36px;
    }
    
    .mission-content p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .mission-section {
        padding: 60px 20px;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        text-align: center;
    }
    
    .mission-content h2 {
        font-size: 32px;
    }
    
    .mission-content p {
        font-size: 15px;
        line-height: 1.0;
    }
    
    .mission-badges {
        justify-content: center;
    }
    
    .mission-image {
        min-height: 150px;
    }
    
    .tech-showcase {
        height: 150px;
    }
    
    .central-orb {
        width: 160px;
        height: 160px;
    }
    
    .orbit-ring {
        width: 200px;
        height: 200px;
    }
    
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 40px 15px;
    }
    
    .mission-container {
        padding: 8px 15px;
        gap: 20px;
    }
    
    .mission-icon {
        width: 45px;
        height: 45px;
    }
    
    .mission-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .mission-text {
        font-size: 15px;
    }
    
    .mission-number {
        font-size: 18px;
    }
    
    .mission-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .mission-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .mission-badge {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .mission-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .badge-icon {
        width: 32px;
        height: 32px;
    }
    
    .badge-text {
        gap: 2px;
    }
    
    .badge-title {
        font-size: 13px;
    }
    
    .badge-subtitle {
        font-size: 10px;
    }
    
    .mission-image {
        min-height: 300px;
        padding: 10px;
    }
    
    .tech-showcase {
        height: 300px;
    }
    
    .central-orb {
        width: 130px;
        height: 130px;
    }
    
    .orbit-ring {
        width: 170px;
        height: 170px;
    }
    
    .tech-icon {
        width: 42px;
        height: 42px;
    }
    
    .tech-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-particle {
        display: none;
    }
    
    .data-stream {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 30px 10px;
    }
    
    .mission-container {
        padding: 6px 10px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mission-icon {
        width: 40px;
        height: 40px;
    }
    
    .mission-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .mission-text {
        font-size: 13px;
        text-align: center;
        flex: 1 1 100%;
    }
    
    .mission-number {
        font-size: 16px;
    }
    
    .mission-stats {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .mission-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .mission-content p {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.6;
    }
    
    .mission-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .mission-badge {
        padding: 10px 16px;
        font-size: 12px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .badge-icon {
        width: 28px;
        height: 28px;
    }
    
    .mission-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .badge-title {
        font-size: 12px;
    }
    
    .badge-subtitle {
        font-size: 9px;
    }
    
    .mission-image {
        min-height: 250px;
    }
    
    .tech-showcase {
        height: 250px;
    }
    
    .central-orb {
        width: 100px;
        height: 100px;
    }
    
    .orbit-ring {
        width: 140px;
        height: 140px;
    }
    
    .tech-icon {
        width: 36px;
        height: 36px;
    }
    
    .tech-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .data-stream {
        display: none;
    }
}

/* ====================================
   STATISTICS SECTION MOBILE RESPONSIVE
   ==================================== */

@media (max-width: 1200px) {
    .stats-container {
        gap: 30px;
    }
    
    .stat-card {
        padding: 25px;
    }
}

@media (max-width: 1024px) {
    .stats-section {
        padding: 60px 20px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-avatars img {
        width: 35px;
        height: 35px;
    }
    
    .counter-item {
        width: 32px;
        height: 36px;
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 15px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-avatars {
        gap: -8px;
        margin-bottom: 12px;
    }
    
    .stat-avatars img {
        width: 32px;
        height: 32px;
    }
    
    .stat-counter {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .counter-item {
        width: 28px;
        height: 32px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .stat-label {
        font-size: 12px;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        white-space: normal;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 30px 10px;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .stat-avatars {
        margin-bottom: 10px;
    }
    
    .stat-avatars img {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
    
    .stat-counter {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .counter-item {
        width: 24px;
        height: 28px;
        font-size: 12px;
        border-radius: 5px;
    }
    
    .stat-label {
        font-size: 11px;
        letter-spacing: 0.3px;
        word-wrap: break-word;
        white-space: normal;
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* ====================================
   OTHER ARTICLES SECTION - IMPROVED MOBILE RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
    .other-articles-section {
        padding: 60px 20px;
    }
    
    .other-articles-container {
        max-width: 100%;
    }
    
    .other-articles-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .other-articles-section {
        padding: 40px 15px;
    }
    
    .other-articles-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .simple-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .simple-articles-table {
        min-width: 650px;
        font-size: 13px;
    }
    
    .simple-articles-table thead th {
        padding: 14px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .simple-articles-table tbody td {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .simple-articles-table thead th:first-child,
    .simple-articles-table tbody td:first-child {
        width: 70px;
        padding-left: 15px;
    }
    
    .simple-articles-table thead th:last-child,
    .simple-articles-table tbody td:last-child {
        width: 120px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .other-articles-section {
        padding: 30px 10px;
    }
    
    .other-articles-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .simple-table-wrapper {
        border-radius: 6px;
        margin: 0 -10px;
        width: calc(100% + 20px);
    }
    
    .simple-articles-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    .simple-articles-table thead th {
        padding: 12px 12px;
        font-size: 11px;
    }
    
    .simple-articles-table tbody td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .simple-articles-table thead th:first-child,
    .simple-articles-table tbody td:first-child {
        width: 60px;
        padding-left: 12px;
    }
    
    .simple-articles-table thead th:last-child,
    .simple-articles-table tbody td:last-child {
        width: 100px;
        padding-right: 12px;
        font-size: 11px;
    }
}

/* ====================================
   FIX HORIZONTAL SCROLLING ISSUE - PREVENT OVERFLOW
   ==================================== */

/* Prevent horizontal scrolling on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    position: relative;
}

/* Ensure all containers respect viewport width */
@media (max-width: 1024px) {
    * {
        max-width: 100%;
    }
    
    .hero-container,
    .mission-container,
    .stats-container,
    .courses-category-container,
    .courses-section,
    .why-choose-container,
    .testimonials-container,
    .other-articles-container,
    .site-footer {
        overflow-x: hidden;
        max-height: none;
    }
    
    .footer-links {
        max-height: none;
        overflow: visible;
    }
    
    .footer-links-inline {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    /* Fix any containers that extend beyond viewport */
    section {
        overflow-x: hidden;
    }
    
    .hero-section,
    .mission-section,
    .stats-section,
    .courses-category-section,
    .courses-section,
    .why-choose-section,
    .testimonials-section,
    .other-articles-section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure containers have proper padding instead of extending */
    .hero-container,
    .mission-container,
    .courses-category-container,
    .why-choose-container,
    .testimonials-container,
    .other-articles-container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - ensure no horizontal overflow */
    * {
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Specifically target table wrapper to prevent overflow */
    .simple-table-wrapper {
        max-width: 100vw;
    }
}

/* ====================================
   FOOTER COPYRIGHT SECTION
   ==================================== */

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        transform: none !important;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-copyright {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-copyright p {
        font-size: 11px;
    }
}

/* ====================================
   FOOTER MOBILE RESPONSIVE STYLES
   ==================================== */

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-links-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 20px;
    }
    
    .footer-links {
        padding: 40px 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-container {
        gap: 35px;
    }
    
    .footer-title,
    .footer-links-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 15px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-links {
        padding: 30px 15px;
    }
    
    .footer-links .footer-container {
        gap: 25px;
    }
    
    .footer-links-row {
        text-align: left;
        margin-bottom: 8px;
        padding-bottom: 0;
    }
    
    .footer-links-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .footer-links-inline {
        font-size: 12px;
        line-height: 2;
        margin-bottom: 0;
        padding-bottom: 25px;
    }
    
    .footer-links-inline a {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding: 8px 15px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
    }
    
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-copyright {
        margin-top: 5px;
        padding-top: 5px;
        width: 100%;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 10px;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .join-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-input {
        width: 100%;
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .newsletter-submit {
        width: 100%;
        padding: 10px;
        justify-content: center;
    }
    
    .footer-links {
        padding: 25px 10px;
    }
    
    .footer-links-title {
        font-size: 14px;
    }
    
    .footer-links-inline {
        font-size: 11px;
        line-height: 2.2;
    }
    
    .footer-links-inline a {
        font-size: 11px;
    }
    
    .footer-bottom {
        padding: 15px 10px;
    }
    
    .footer-contact-item {
        font-size: 11px;
    }
    
    .footer-contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
}

/* ====================================
   COURSES DROPDOWN IN NAVIGATION
   ==================================== */

/* ====================================
   NAVIGATION COURSES DROPDOWN (SEPARATE FROM SEARCH DROPDOWN)
   ==================================== */

.nav-courses-dropdown {
    position: relative;
}

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

.nav-dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-courses-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    margin-top: 10px;
    pointer-events: auto;
}

.nav-courses-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-courses-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    border-left-color: #ff6b35;
    color: #ff6b35;
    padding-left: 25px;
}

/* Desktop hover */
@media (min-width: 901px) {
    .nav-courses-dropdown:hover .nav-courses-menu,
    .nav-courses-dropdown.active .nav-courses-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-courses-dropdown:hover .nav-dropdown-arrow,
    .nav-courses-dropdown.active .nav-dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile responsive for navigation courses dropdown */
@media (max-width: 900px) {
    .nav-courses-dropdown {
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .nav-courses-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 20px;
        cursor: pointer;
        pointer-events: auto !important;
        background: transparent;
        border: none;
        text-align: left;
        font-family: inherit;
        font-size: inherit;
        color: inherit;
        position: relative;
        z-index: 2;
    }
    
    .nav-courses-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        transform: none;
        background: rgba(255, 107, 53, 0.05);
        border-radius: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-courses-dropdown.active .nav-courses-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        padding: 5px 0;
        pointer-events: auto;
    }
    
    .nav-courses-dropdown.active .nav-dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-courses-item {
        padding: 10px 20px 10px 40px;
        font-size: 14px;
        border-left: none;
        pointer-events: auto;
    }
    
    .nav-courses-item:hover {
        padding-left: 45px;
    }
}

/* ====================================
   OTHER ARTICLES - LIST WITH THUMBNAILS
   ==================================== */

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.article-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b35 0%, #ff8c5a 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.article-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
}

.article-item:hover::before {
    transform: scaleY(1);
}

.article-thumbnail {
    position: relative;
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.article-thumbnail svg {
    width: 35px;
    height: 35px;
    stroke: #fff;
    opacity: 0.9;
}

.article-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.article-item-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-item:hover .article-item-title {
    color: #ff6b35;
}

.article-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-action {
    display: flex;
    align-items: center;
}

.read-now-btn {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 8px 18px;
    border-radius: 6px;
    background: rgba(255, 107, 53, 0.05);
}

.article-item:hover .read-now-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    transform: translateX(3px);
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .article-item {
        gap: 16px;
        padding: 18px;
    }
    
    .article-thumbnail {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
    
    .article-thumbnail svg {
        width: 32px;
        height: 32px;
    }
    
    .article-item-title {
        font-size: 16px;
    }
    
    .article-description {
        font-size: 13px;
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .articles-list {
        gap: 12px;
        margin-top: 25px;
    }
    
    .article-item {
        gap: 14px;
        padding: 15px;
    }
    
    .article-thumbnail {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .article-thumbnail svg {
        width: 28px;
        height: 28px;
    }
    
    .article-num {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .article-item-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .article-description {
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
    
    .read-now-btn {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .article-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-thumbnail {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .article-thumbnail svg {
        width: 26px;
        height: 26px;
    }
    
    .article-action {
        width: 100%;
    }
    
    .read-now-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .article-item:hover {
        transform: translateY(-2px);
    }
}

/* ====================================
   OTHER ARTICLES - CARD GRID LAYOUT
   ==================================== */

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

.card-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-item:hover .card-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    transform: rotate(5deg) scale(1.05);
}

.card-icon svg {
    stroke: #ff6b35;
    transition: stroke 0.3s ease;
}

.card-item:hover .card-icon svg {
    stroke: #fff;
}

.card-number {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.card-item:hover .card-number {
    opacity: 0.5;
}

.card-title {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 52px;
    transition: color 0.3s ease;
}

.card-item:hover .card-title {
    color: #ff6b35;
}

.card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 25px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.05);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    gap: 14px;
}

.card-link:hover svg {
    transform: translateX(3px);
    stroke: #fff;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .card-item {
        padding: 25px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
    }
    
    .card-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .card-item {
        padding: 22px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-number {
        font-size: 22px;
    }
    
    .card-title {
        font-size: 17px;
        min-height: 48px;
    }
    
    .card-excerpt {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .card-link {
        font-size: 13px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .card-item {
        padding: 20px;
    }
    
    .card-link {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   ARTICLE DATE AND AUTHOR STYLING
   ==================================== */

/* List Layout - Date Badge */
.article-date {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    margin-bottom: 8px;
}

/* List Layout - Author */
.article-author {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 600;
    margin: 0 0 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-author::before {
    content: '✍';
    font-size: 13px;
}

/* Card Grid Layout - Date */
.card-date {
    font-size: 13px;
    font-weight: 700;
    color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.card-item:hover .card-date {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: #fff;
}

/* Card Grid Layout - Author */
.card-author {
    font-size: 13px;
    color: #999;
    margin: 0 0 12px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.card-author::before {
    content: '';
    font-size: 14px;
    color: #ff6b35;
}

.card-item:hover .card-author {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-date {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .article-author {
        font-size: 11px;
    }
    
    .card-date {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .card-author {
        font-size: 12px;
    }
}

/* ====================================
   COURSE CARD IMAGES ENHANCEMENT
   ==================================== */

.course-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

/* Ensure gradient overlays still work with images */
.course-bg-gradient-1[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.7) 0%, rgba(147, 51, 234, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-2[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(168, 85, 247, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-3[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.7) 0%, rgba(5, 150, 105, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-4[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.7) 0%, rgba(239, 68, 68, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-5[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.7) 0%, rgba(14, 116, 144, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-6[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.7) 0%, rgba(99, 102, 241, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-7[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7) 0%, rgba(167, 139, 250, 0.7) 100%);
    z-index: 1;
}

.course-bg-gradient-8[style*='background-image']::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7) 0%, rgba(167, 139, 250, 0.7) 100%);
    z-index: 1;
}

/* ====================================
   BLOGS PAGE STYLES
   ==================================== */

/* Blogs Hero Section */
.articles-hero {
    padding: 50px 20px 40px;
     background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 50%, #fff9f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.articles-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.articles-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.articles-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.articles-hero-left {
    padding-right: 20px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-orange {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}

.articles-hero-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff6b35 50%, #e63946 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: none;
}

.articles-hero-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    margin-bottom: 30px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.hero-cta-btn svg {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover svg {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #fef5f1 100%);
    border-radius: 12px;
    border: 1px solid #ffe5dc;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.08);
    transition: all 0.3s ease;
    min-width: 120px;
}

.hero-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff0eb 100%);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    background: linear-gradient(135deg, rgba(255, 107, 53, 1), rgba(230, 57, 70, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Blogs Hero Right - Featured Card */
.articles-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-featured-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hero-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.hero-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-featured-card:hover img {
    transform: scale(1.05);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 30px 25px 25px;
    color: #fff;
}

.hero-card-badge {
    position: absolute;
    top: -60px;
    left: 25px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Filters Section */
.articles-filters-section {
    padding: 25px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #ff6b35;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.filter-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #ff6b35;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.sort-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.sort-select:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.sort-select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.sort-select option {
    background: #ffffff;
    color: #1a1a2e;
    padding: 10px;
}

/* Featured Article Section */
.featured-article-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-align: center;
}

.featured-article-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.featured-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.featured-article-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(255, 107, 53, 0.9));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.featured-category {
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-date,
.featured-read-time {
    color: #64748b;
    font-size: 14px;
}

.featured-article-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.featured-article-excerpt {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.featured-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

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

.author-name {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
}

.author-title {
    color: #64748b;
    font-size: 13px;
}

.featured-read-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
}

.featured-read-btn:hover {
    background: linear-gradient(135deg, #e63946, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* Blogs Grid Section */
.articles-grid-section {
    padding: 80px 20px;
    background: #ffffff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

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

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

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

.article-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(255, 107, 53, 0.9));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
}

.article-read-time {
    color: #ff6b35;
    font-size: 13px;
    font-weight: 600;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 50px;
}

.article-card-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.article-author span {
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.article-read-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-read-link:hover {
    color: #e63946;
    transform: translateX(5px);
}

/* Pagination Section */
.pagination-section {
    margin-top: 60px;
    padding: 30px 0;
}

.pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
    color: #ff6b35;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-number:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
    color: #ff6b35;
}

.page-number.active {
    background: linear-gradient(135deg, #ff6b35, #e63946);
    border-color: #ff6b35;
    color: #ffffff;
}

.page-dots {
    color: #94a3b8;
    font-weight: 600;
    padding: 0 5px;
}

/* Featured Event Section */
.featured-event-section {
    padding: 60px 20px;
    margin-top: 40px;
}

.featured-event-card {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.featured-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.event-card-left {
    position: relative;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.event-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-event-card:hover .event-card-left img {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px;
}

.event-speaker-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
}

.speaker-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.speaker-details p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.event-card-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    width: fit-content;
}

.event-badge svg {
    flex-shrink: 0;
}

.event-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0 0 30px 0;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 16px;
    font-weight: 600;
}

.event-meta-item svg {
    color: #ff6b35;
    flex-shrink: 0;
}

.event-enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #e63946);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.event-enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.event-enroll-btn svg {
    transition: transform 0.3s ease;
}

.event-enroll-btn:hover svg {
    transform: translateX(5px);
}

/* Blog Newsletter Section */
.article-newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    position: relative;
    overflow: hidden;
}

.article-newsletter-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    line-height: 1.6;
}

.newsletter-form-inline {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-email-input {
    flex: 1;
    padding: 16px 25px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #1a1a2e;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-email-input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: #ffffff;
}

.newsletter-email-input::placeholder {
    color: #64748b;
}

.newsletter-subscribe-btn {
    padding: 16px 35px;
    background: #ffffff;
    border: none;
    border-radius: 30px;
    color: #ff6b35;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-subscribe-btn:hover {
    background: #1a1a2e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Blogs */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    
    .featured-article-image {
        min-height: 300px;
    }
    
    .articles-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .articles-hero-right {
        height: 400px;
    }
    
    .articles-hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .featured-event-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .event-card-left {
        border-radius: 20px 20px 0 0;
        min-height: 400px;
    }
    
    .event-card-right {
        padding: 40px 30px;
    }
    
    .event-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .articles-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .articles-hero-title {
        font-size: 36px;
    }
    
    .articles-hero-subtitle {
        font-size: 16px;
    }
    
    .articles-hero-right {
        height: 350px;
    }
    
    .featured-blog-card {
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filters {
        justify-content: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-article-content {
        padding: 30px 25px;
    }
    
    .featured-article-title {
        font-size: 24px;
    }
    
    .featured-article-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .featured-event-section {
        padding: 40px 15px;
        margin-top: 30px;
    }
    
    .event-card-left {
        min-height: 300px;
    }
    
    .event-card-right {
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 24px;
    }
    
    .event-meta {
        gap: 12px;
    }
    
    .event-meta-item {
        font-size: 14px;
    }
    
    .event-enroll-btn {
        padding: 16px 35px;
        font-size: 15px;
        width: 100%;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 26px;
    }
}

/* ================================
   BLOG DETAILS PAGE STYLES
   ================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-container a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
    color: #4a1e7a;
}

.breadcrumb-separator {
    color: #adb5bd;
}

/* Blog Detail Section */
.blog-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

/* DISABLED - Moved to inline CSS in blog-details.html to avoid conflicts
.blog-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

/* DISABLED - Using inline CSS
.blog-sidebar {
    width: 280px;
    flex-shrink: 0;
}
*/

Main Content
.blog-main-content {
    flex: 1;
    min-width: 0;
}
*/

.blog-header {
    margin-bottom: 30px;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #4a1e7a;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}

.publish-date {
    font-size: 13px;
    color: #6c757d;
}

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

.view-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 14px;
}

.view-count svg {
    color: #4a1e7a;
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Content */
.blog-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-content .lead-paragraph {
    font-size: 22px;
    font-weight: 500;
    color: #4a1e7a;
    line-height: 1.6;
    margin-bottom: 30px;
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c1654;
    margin-top: 35px;
    margin-bottom: 20px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #4a1e7a;
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-quote {
    background: linear-gradient(135deg, #f8f3ff 0%, #f0e6ff 100%);
    border-left: 4px solid #4a1e7a;
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 8px;
}

.blog-quote p {
    font-size: 20px;
    font-style: italic;
    color: #2c1654;
    margin: 0;
    font-weight: 500;
}

.info-box {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: #0066cc;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box p {
    margin: 0;
    color: #333;
    font-size: 16px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.tool-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 30, 122, 0.1);
    border-color: #4a1e7a;
}

.tool-card h4 {
    color: #4a1e7a;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.tool-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    color: #ffffff;
}

.cta-box h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Social Share */
.blog-social-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.blog-social-share h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.social-share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.share-facebook:hover {
    background: #0d65d9;
    transform: translateY(-3px);
}

.share-twitter {
    background: #000000;
    color: #ffffff;
}

.share-twitter:hover {
    background: #333333;
    transform: translateY(-3px);
}

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

.share-linkedin:hover {
    background: #006399;
    transform: translateY(-3px);
}

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

.share-whatsapp:hover {
    background: #1fba57;
    transform: translateY(-3px);
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    margin-top: 50px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #4a1e7a;
    flex-shrink: 0;
}

.author-bio-content h3 {
    font-size: 16px;
    color: #6c757d;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 500;
}

.author-bio-content h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 15px;
}

.author-bio-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #4a1e7a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: #2c1654;
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.related-articles h3 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-article-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 30, 122, 0.15);
    border-color: #4a1e7a;
}

.related-article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: 20px;
}

.related-article-date {
    font-size: 13px;
    color: #6c757d;
    display: block;
    margin-bottom: 10px;
}

.related-article-content h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.related-article-author {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Sidebar */
/* DISABLED - Using inline CSS
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
*/

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a1e7a;
}

/* Sidebar Search */
.sidebar-search {
    position: relative;
}

.sidebar-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: #4a1e7a;
    box-shadow: 0 0 0 3px rgba(74, 30, 122, 0.1);
}

.sidebar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4a1e7a;
    color: #ffffff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search-btn:hover {
    background: #2c1654;
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #ffffff;
    color: #4a1e7a;
    padding-left: 20px;
}

.category-list span {
    color: #6c757d;
    font-size: 13px;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popular-post:hover {
    background: #ffffff;
}

.popular-post img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-content h4 {
    font-size: 15px;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.popular-post-date {
    font-size: 13px;
    color: #6c757d;
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: #ffffff;
    color: #4a1e7a;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #4a1e7a;
    color: #ffffff;
    border-color: #4a1e7a;
}

/* Newsletter Widget */
.sidebar-newsletter {
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
    color: #ffffff;
}

.sidebar-newsletter .widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sidebar-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-widget-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-widget-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.newsletter-widget-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-widget-form input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-widget-form button {
    padding: 12px 20px;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-widget-form button:hover {
    background: #ff8555;
    transform: translateY(-2px);
}

/* Responsive Design for Blog Details */
@media (max-width: 1200px) {
    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }
    */

    .blog-title {
        font-size: 36px;
    }

    .blog-featured-image {
        height: 400px;
    }
}

@media (max-width: 992px) {
    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    */

    /* DISABLED - Using inline CSS
    .blog-sidebar {
        position: static;
    }
    */

    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 20px;
        font-size: 13px;
    }

    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        padding: 0 20px;
    }
    */

    .blog-title {
        font-size: 28px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-featured-image {
        height: 300px;
    }

    .blog-content {
        font-size: 16px;
    }

    .blog-content .lead-paragraph {
        font-size: 18px;
    }

    .blog-content h2 {
        font-size: 26px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 24px;
    }

    .blog-featured-image {
        height: 250px;
        border-radius: 8px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 22px;
    }
}

/* ============================================
   TABLE OF CONTENTS & TRENDING BLOG SIDEBAR
   ============================================ */

/* TOC and Trending Blog Sidebar Container */
.toc-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 10px;
}

.toc-sidebar::-webkit-scrollbar {
    width: 6px;
}

.toc-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.toc-sidebar::-webkit-scrollbar-thumb {
    background: #4a1e7a;
    border-radius: 10px;
}

.toc-sidebar::-webkit-scrollbar-thumb:hover {
    background: #2c1654;
}

/* TOC Widget */
.toc-widget {
    background: #fff;
    border: 2px solid #4a1e7a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(74, 30, 122, 0.1);
}

.toc-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c1654;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a1e7a;
}

.toc-nav {
    margin: 0;
}

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

.toc-list li {
    margin-bottom: 12px;
}

.toc-link {
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.toc-link:hover {
    color: #4a1e7a;
    background: #f8f5fc;
    border-left-color: #4a1e7a;
    padding-left: 20px;
}

.toc-link:active,
.toc-link.active {
    color: #fff;
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
    border-left-color: #ff6b35;
    font-weight: 600;
}

/* Trending Blog Widget */
.trending-blog-widget {
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c1654;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff6b35;
}

.trending-nav {
    margin: 0;
}

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

.trending-list li {
    margin-bottom: 12px;
}

.trending-link {
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.trending-link:hover {
    color: #ff6b35;
    background: #fff5f2;
    border-left-color: #ff6b35;
    padding-left: 20px;
}

/* Updated Blog Detail Section Layout */
.blog-detail-section {
    padding: 40px 0 80px;
    background: #f9f9f9;
}

/* DISABLED - Moved to inline CSS in blog-details.html to avoid conflicts
.blog-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

Main Blog Content Adjustments
.blog-main-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
*/

/* Additional Content Styles */
.deployment-types,
.monitoring-tools {
    margin: 30px 0;
}

.deployment-item,
.tool-item {
    background: #f8f5fc;
    border-left: 4px solid #4a1e7a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.deployment-item h3,
.tool-item h3 {
    color: #2c1654;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.deployment-item p,
.tool-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Comparison Table Styles */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
}

.comparison-table thead th {
    color: #fff;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    font-size: 14px;
}

.comparison-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 14px;
}

.comparison-table tbody tr:hover {
    background: #f8f5fc;
}

.table-note {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Security List Styles */
.security-list {
    margin: 20px 0;
    padding-left: 30px;
    list-style: disc;
}

.security-list li {
    padding: 8px 0;
    line-height: 1.8;
    color: #555;
    margin-left: 0;
}

.security-list li::marker {
    color: #4a1e7a;
    font-size: 1.2em;
}

.security-list li strong {
    color: #2c1654;
    font-weight: 600;
}

/* Training Features List */
.training-features {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.training-features li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #f8f5fc;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    line-height: 1.8;
}

.training-features li strong {
    color: #2c1654;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }
    */

    .toc-sidebar {
        top: 80px;
    }
}

@media (max-width: 992px) {
    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    */

    .toc-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        order: -1;
    }

    .toc-widget,
    .trending-blog-widget {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        padding: 0 20px;
    }
    */

    .blog-main-content {
        padding: 25px 20px;
    }

    .toc-widget,
    .trending-blog-widget {
        padding: 20px;
    }

    .comparison-table table {
        font-size: 12px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px;
    }
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS FOR BLOG DETAILS
   ============================================ */

/* Mobile optimizations for all content sections */
@media (max-width: 768px) {
    /* Typography adjustments */
    .blog-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    .blog-content h2 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        margin-top: 30px !important;
    }

    .blog-content h3 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .blog-content h4 {
        font-size: 16px !important;
    }

    .blog-content p,
    .blog-content li {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .lead-paragraph {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    /* Deployment items - stack properly */
    .deployment-types {
        margin: 20px 0 !important;
    }

    .deployment-item,
    .tool-item {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }

    .deployment-item h3,
    .tool-item h3 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .deployment-item p,
    .tool-item p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Comparison tables - make scrollable */
    .comparison-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 20px -20px !important;
        padding: 0 20px !important;
    }

    .comparison-table table {
        font-size: 11px !important;
        min-width: 600px !important;
    }

    .comparison-table thead th {
        padding: 8px 6px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .comparison-table tbody td {
        padding: 8px 6px !important;
        font-size: 11px !important;
    }

    .table-note {
        font-size: 11px !important;
        padding: 0 20px !important;
    }

    /* Security lists */
    .security-list {
        margin: 15px 0 !important;
        padding-left: 25px !important;
    }

    .security-list li {
        padding: 6px 0 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Training features */
    .training-features {
        margin: 20px 0 !important;
    }

    .training-features li {
        padding: 12px 15px !important;
        margin-bottom: 12px !important;
        font-size: 14px !important;
    }

    .training-features li strong {
        font-size: 15px !important;
    }

    /* Info boxes */
    .info-box {
        padding: 15px !important;
        margin: 20px 0 !important;
    }

    .info-box h4 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .info-box p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* CTA box */
    .cta-box {
        padding: 25px 20px !important;
        margin: 30px 0 !important;
    }

    .cta-box h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .cta-box p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .cta-button {
        font-size: 14px !important;
        padding: 12px 24px !important;
    }

    /* Blog meta adjustments */
    .blog-meta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .article-author-info {
        margin-bottom: 10px !important;
    }

    /* Featured image */
    .blog-featured-image {
        margin: 20px -20px !important;
        border-radius: 0 !important;
    }

    /* Monitoring tools grid */
    .monitoring-tools {
        margin: 20px 0 !important;
    }

    /* Tools grid for older content */
    .tools-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .tool-card {
        padding: 15px !important;
    }

    .tool-card h4 {
        font-size: 16px !important;
    }

    .tool-card p {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    /* Extra small screens */
    .blog-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .blog-content h2 {
        font-size: 20px !important;
    }

    .blog-content h3 {
        font-size: 17px !important;
    }

    .blog-main-content {
        padding: 20px 15px !important;
    }

    /* DISABLED - Moved to inline CSS
    .blog-detail-container {
        padding: 0 15px !important;
    }
    */

    .comparison-table {
        margin: 20px -15px !important;
        padding: 0 15px !important;
    }

    .comparison-table table {
        font-size: 10px !important;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 6px 4px !important;
        font-size: 10px !important;
    }

    .toc-title,
    .widget-title {
        font-size: 18px !important;
    }

    .toc-link,
    .trending-link {
        font-size: 13px !important;
        padding: 8px 12px !important;
    }

    .deployment-item,
    .tool-item {
        padding: 12px !important;
    }

    .security-list li {
        padding: 6px 0 !important;
        font-size: 13px !important;
    }

    .training-features li {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
}

/* Ensure tables are scrollable on all mobile devices */
@media (max-width: 992px) {
    .comparison-table {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .comparison-table table {
        width: 100% !important;
    }

    /* Stack deployment items nicely */
    .deployment-types,
    .monitoring-tools {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
}

/* Tablet optimizations */
@media (max-width: 992px) and (min-width: 769px) {
    .blog-title {
        font-size: 30px !important;
    }

    .blog-content h2 {
        font-size: 24px !important;
    }

    .blog-content h3 {
        font-size: 20px !important;
    }

    .deployment-item,
    .tool-item {
        padding: 18px !important;
    }
}

/* Breadcrumb Mobile Responsiveness */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 15px 0 !important;
    }

    .breadcrumb-container {
        padding: 0 20px !important;
        font-size: 13px !important;
        flex-wrap: wrap !important;
    }

    .breadcrumb-container a,
    .breadcrumb-container span {
        font-size: 13px !important;
    }

    .breadcrumb-separator {
        margin: 0 6px !important;
    }
}

@media (max-width: 576px) {
    .breadcrumb-container {
        padding: 0 15px !important;
        font-size: 12px !important;
    }

    .breadcrumb-container a,
    .breadcrumb-container span {
        font-size: 12px !important;
    }

    .breadcrumb-separator {
        margin: 0 4px !important;
    }
}

/* Blog header mobile improvements */
@media (max-width: 768px) {
    .blog-header {
        padding: 0 0 20px 0 !important;
    }

    .author-avatar {
        width: 40px !important;
        height: 40px !important;
    }

    .author-name {
        font-size: 14px !important;
    }

    .publish-date {
        font-size: 13px !important;
    }

    .view-count {
        font-size: 13px !important;
    }
}

/* Blog quote mobile */
@media (max-width: 768px) {
    .blog-quote {
        padding: 15px 20px !important;
        margin: 20px 0 !important;
        font-size: 15px !important;
        border-left-width: 4px !important;
    }

    .blog-quote p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

/* Social share mobile */
@media (max-width: 768px) {
    .blog-social-share {
        padding: 20px 0 !important;
        margin: 30px 0 !important;
    }

    .blog-social-share h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .social-share-buttons {
        gap: 10px !important;
    }

    .share-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .share-btn svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Author bio mobile */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }

    .author-bio-avatar {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 15px !important;
    }

    .author-bio-content {
        padding-left: 0 !important;
    }

    .author-bio h3 {
        font-size: 16px !important;
    }

    .author-bio h4 {
        font-size: 18px !important;
    }

    .author-bio p {
        font-size: 14px !important;
    }

    .author-social {
        justify-content: center !important;
    }
}

/* Related articles mobile */
@media (max-width: 768px) {
    .related-articles {
        margin: 30px 0 !important;
    }

    .related-articles h3 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .related-articles-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .related-article-card {
        max-width: 100% !important;
    }

    .related-article-image {
        height: 200px !important;
    }

    .related-article-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    .related-article-excerpt {
        font-size: 14px !important;
    }
}

/* Sidebar widgets mobile (when they appear above content) */
@media (max-width: 992px) {
    .blog-sidebar {
        margin-bottom: 30px !important;
    }

    .sidebar-widget {
        margin-bottom: 20px !important;
    }

    .widget-title {
        font-size: 18px !important;
    }

    .sidebar-search-input {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }

    .category-list li a {
        font-size: 14px !important;
        padding: 8px 0 !important;
    }

    .popular-post {
        padding: 10px 0 !important;
    }

    .popular-post img {
        width: 60px !important;
        height: 60px !important;
    }

    .popular-post-content h4 {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .tag-cloud a {
        padding: 6px 12px !important;
        font-size: 13px !important;
    }
}

/* Ensure proper spacing on all mobile devices */
@media (max-width: 992px) {
    .blog-content > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .blog-content ul,
    .blog-content ol {
        padding-left: 20px !important;
    }
}

/* Fix any potential width issues */
@media (max-width: 768px) {
    * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    pre, code {
        white-space: pre-wrap !important;
        word-break: break-all !important;
    }
}

/* ============================================
   FIX HEADER MOBILE RESPONSIVENESS
   ============================================ */

/* Reset conflicting styles for header elements */
@media (max-width: 768px) {
    /* Remove min-height from header links that might interfere */
    .header-link,
    .top-header a,
    .main-header a {
        min-height: auto !important;
        display: inline-flex !important;
    }
    
    /* Ensure mobile menu toggle is visible */
    .mobile-menu-toggle {
        display: flex !important;
        min-height: auto !important;
    }
    
    /* Make sure navigation is hidden on mobile by default */
    .main-navigation {
        display: none !important;
    }
    
    .main-navigation.active {
        display: flex !important;
    }
    
    /* Ensure header doesn't get affected by blog page styles */
    #site-header,
    #site-header * {
        box-sizing: border-box;
    }
    
    #site-header .header-link {
        min-height: auto !important;
        height: auto !important;
    }
    
    #site-header button {
        min-height: auto !important;
    }
}

/* Override any conflicting mobile button styles for header only */
@media (max-width: 768px) {
    #site-header a:not(.cta-button),
    #site-header button:not(.cta-button) {
        min-height: auto !important;
        display: inline-flex !important;
    }
}

/* ============================================
   FAQ SECTION STYLING
   ============================================ */

.faq-section {
    margin: 30px 0;
}

.faq-item {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    color: #2c1654;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Vedic Quote Styling */
.vedic-quote {
    background: linear-gradient(135deg, #f5f3ff 0%, #e8e4ff 100%);
    border-left: 5px solid #4a1e7a;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.vedic-quote::before {
    content: '"';
    font-size: 60px;
    color: #4a1e7a;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
}

.vedic-quote p {
    margin: 10px 0;
    color: #2c1654;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.vedic-quote p:first-child {
    font-weight: 600;
    font-size: 18px;
    color: #4a1e7a;
}

.vedic-quote em {
    font-size: 14px;
    color: #666;
}

/* Info Box Enhanced */
.info-box {
    background: linear-gradient(135deg, #fff9f0 0%, #fff4e6 100%);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(255,107,53,0.1);
}

.info-box h4 {
    color: #ff6b35;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.info-box p {
    margin: 10px 0;
    line-height: 1.7;
}

/* CTA Box Enhanced */
.cta-box {
    background: linear-gradient(135deg, #2c1654 0%, #4a1e7a 100%);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 6px 20px rgba(44,22,84,0.3);
}

.cta-box h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.cta-button:hover {
    background: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .faq-item {
        padding: 15px 20px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .vedic-quote {
        padding: 20px 25px;
    }
    
    .vedic-quote::before {
        font-size: 40px;
    }
    
    .vedic-quote p {
        font-size: 14px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box h3 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .faq-item {
        padding: 12px 15px;
    }
    
    .faq-item h3 {
        font-size: 15px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    .vedic-quote {
        padding: 15px 20px;
    }
    
    .vedic-quote p:first-child {
        font-size: 16px;
    }
    
    .cta-box {
        padding: 20px 15px;
    }
}


/* ============================================
   COURSE DETAILS GRID - 4 COLUMN LAYOUT
   ============================================ */

.course-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 0;
}

.detail-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 6px 20px rgba(255,107,53,0.15);
    transform: translateY(-3px);
}

.detail-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #7d8592;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #2c1654;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .course-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .course-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin: 30px 0;
    }

    .detail-card {
        padding: 20px 18px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
    }

    .detail-value {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .course-details-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 25px 0;
    }

    .detail-card {
        padding: 18px 16px;
        gap: 12px;
    }

    .detail-icon {
        width: 38px;
        height: 38px;
    }

    .detail-icon svg {
        width: 18px;
        height: 18px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 13px;
    }
}

