/**
 * Aromh Theme Main Stylesheet
 * 
 * @package Aromh
 */

/* ============================================
   Font Face Declarations
   ============================================ */
@font-face {
    font-family: 'Bahij Janna';
    src: url('../aromh-fonts/Bahij_Janna-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bahij Janna';
    src: url('../aromh-fonts/bahij-janna-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Variables - Theme Colors & Fonts
   ============================================ */
:root {
    --primary-color: #3b378b;
    --secondary-color: #a980fd;
    --primary-dark: #2d2969;
    --primary-light: #5a4fa3;
    --secondary-dark: #8a6dfd;
    --secondary-light: #c4a9ff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #3b378b 0%, #a980fd 100%);
    --gradient-secondary: linear-gradient(135deg, #a980fd 0%, #3b378b 100%);
    --shadow-sm: 0 2px 10px rgba(59, 55, 139, 0.1);
    --shadow-md: 0 4px 20px rgba(59, 55, 139, 0.15);
    --shadow-lg: 0 10px 40px rgba(59, 55, 139, 0.2);
    --transition: all 0.3s ease;
    --font-primary: 'Bahij Janna', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Bootstrap Icons - Theme Colors with Transparency
   ============================================ */
.bi {
    transition: all 0.3s ease;
}

/* Override Bootstrap text-primary to use theme color */
.text-primary,
.text-primary .bi,
.bi.text-primary {
    color: var(--primary-color) !important;
}

/* Override Bootstrap text-secondary to use theme color */
.text-secondary,
.text-secondary .bi,
.bi.text-secondary {
    color: var(--secondary-color) !important;
}

/* Icons with gradient background using theme colors */
.bi[class*="gradient"],
.icon-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Icons with transparent theme colors */
.bi[class*="theme-transparent"] {
    color: rgba(59, 55, 139, 0.7);
    transition: all 0.3s ease;
}

.bi[class*="theme-transparent"]:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Check circle icons - theme colors with transparency */
.bi-check-circle.text-primary,
.bi-check-circle[class*="primary"],
.text-primary .bi-check-circle {
    color: rgba(59, 55, 139, 0.9) !important;
    transition: all 0.3s ease;
}

.bi-check-circle.text-primary:hover,
.text-primary .bi-check-circle:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.15);
}

.bi-check-circle.text-secondary,
.bi-check-circle[class*="secondary"],
.text-secondary .bi-check-circle {
    color: rgba(169, 128, 253, 0.9) !important;
}

/* Large icons with theme gradient background */
.bi.fs-1.text-primary,
.fs-1.text-primary .bi {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.15) 0%, rgba(169, 128, 253, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bi.fs-1.text-primary::before,
.fs-1.text-primary .bi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1) 0%, rgba(169, 128, 253, 0.1) 100%);
    z-index: -1;
    transition: all 0.3s ease;
}

.bi.fs-1.text-primary:hover::before,
.fs-1.text-primary .bi:hover::before {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.2) 0%, rgba(169, 128, 253, 0.2) 100%);
    transform: scale(1.1);
}

/* ============================================
   Base Styles
   ============================================ */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow-x: hidden;
    overflow-y: visible;
}

.site-header .navbar {
    padding: 1.6rem 0;
    min-height: 110px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    z-index: 1000;
}

.site-header .navbar .header-container {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

/* Smart responsive breakpoints for optimal width utilization */
@media (min-width: 2560px) {
    .site-header .navbar .header-container {
        max-width: 80%;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .site-header .navbar .header-container {
        max-width: 80%;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    .site-header .navbar .header-container {
        max-width: 80%;
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    .site-header .navbar .header-container {
        max-width: 80%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .site-header .navbar .header-container {
        max-width: 80%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 1199px) {
    .site-header .navbar .header-container {
        max-width: 90%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-header .navbar .header-container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Global Mobile Container Width - Proper Spacing */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Ensure all sections have proper spacing */
    .section .container,
    section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Row adjustments for mobile */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row > [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Course Name Link and View Icon */
.course-name-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.course-name-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.course-name-link strong {
    color: inherit;
}

.course-view-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background: #f0f0f0;
    border-radius: 6px;
    color: var(--primary-color);
    transition: all 0.2s ease;
    text-decoration: none;
}

.course-view-icon:hover {
    background: var(--primary-color);
    color: #fff;
}

.course-view-icon i {
    font-size: 0.9rem;
}

/* RTL Support for course view icon */
[dir="rtl"] .course-view-icon {
    margin-right: 0;
    margin-left: 8px;
}



/* Transparent header state - controlled by JavaScript .transparent class */
.site-header.transparent {
    background: transparent !important;
    box-shadow: none !important;
}

.site-header.transparent .navbar {
    background: transparent !important;
}

.site-header.transparent .navbar.bg-white {
    background: transparent !important;
}

.site-header.transparent .navbar-nav .nav-link {
    color: white !important;
}

.site-header.transparent .navbar-nav .nav-link::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)) !important;
}

.site-header.transparent .navbar-nav .nav-link::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
}

.site-header.transparent .navbar-nav .nav-link:hover,
.site-header.transparent .navbar-nav .nav-link:focus {
    color: white !important;
    transform: translateY(-2px);
}

.site-header.transparent .navbar-nav .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.site-header.transparent .navbar-nav .nav-link:hover::after {
    opacity: 1;
}

.site-header.transparent .navbar-nav .nav-link.active {
    color: white !important;
}

.site-header.transparent .navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)) !important;
}

.site-header.transparent .navbar-nav .nav-link.active::after {
    opacity: 0.15;
}

/* When NOT transparent (scrolled past hero) - ensure solid background and dark colors */
.site-header:not(.transparent) {
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-sm) !important;
}

.site-header:not(.transparent) .navbar {
    background: var(--bg-white) !important;
}

.site-header:not(.transparent) .navbar.bg-white {
    background: var(--bg-white) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link {
    color: var(--text-dark) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link::before {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link::after {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05)) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link:hover,
.site-header:not(.transparent) .navbar-nav .nav-link:focus {
    color: var(--primary-color) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1) !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
}

.site-header:not(.transparent) .navbar-nav .nav-link.active::after {
    opacity: 0.1 !important;
}

.site-header:not(.transparent) .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.site-header:not(.transparent) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.site-header:not(.transparent) .navbar-brand .logo {
    filter: none !important;
}


.site-header.transparent .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.site-header.transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.site-header.transparent .navbar-brand .logo {
    filter: brightness(0) invert(1) !important;
}

/* Ensure content starts below fixed header */
.site-content {
    padding-top: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.navbar-brand-wrapper {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: block;
}

.navbar-brand-wrapper .navbar-brand {
    display: block;
}

/* Social Media Links */
.header-social-media {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-social-media .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.header-social-media .social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.header-social-media .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    opacity: 0.1;
}

.header-social-media .social-link:hover::before {
    width: 100%;
    height: 100%;
}

.header-social-media .social-link i,
.header-social-media .social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.header-social-media .social-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.header-social-media .social-link:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-social-media .social-link:hover i {
    transform: scale(1.1);
}

/* Platform-specific hover colors - higher specificity to override state colors */
.header-social-media .social-link[href*="facebook"]:hover {
    background: #1877f2 !important;
}

.header-social-media .social-link[href*="x.com"]:hover,
.header-social-media .social-link[href*="twitter"]:hover,
.header-social-media .social-x:hover {
    background: #000000 !important;
}

.header-social-media .social-link[href*="x.com"]:hover svg,
.header-social-media .social-link[href*="twitter"]:hover svg,
.header-social-media .social-x:hover svg {
    fill: white;
}

.header-social-media .social-link[href*="youtube"]:hover {
    background: #ff0000 !important;
}

.header-social-media .social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.header-social-media .social-link[href*="whatsapp"]:hover {
    background: #25d366 !important;
}

.header-social-media .social-link[href*="linkedin"]:hover {
    background: #0077b5 !important;
}

/* Transparent header state */
.site-header.transparent .header-social-media .social-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.site-header.transparent .header-social-media .social-link svg {
    fill: white;
}

.site-header.transparent .header-social-media .social-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Platform colors override transparent state on hover */
.site-header.transparent .header-social-media .social-link[href*="facebook"]:hover {
    background: #1877f2 !important;
}

.site-header.transparent .header-social-media .social-link[href*="x.com"]:hover,
.site-header.transparent .header-social-media .social-link[href*="twitter"]:hover,
.site-header.transparent .header-social-media .social-x:hover {
    background: #000000 !important;
}

.site-header.transparent .header-social-media .social-link[href*="x.com"]:hover svg,
.site-header.transparent .header-social-media .social-link[href*="twitter"]:hover svg,
.site-header.transparent .header-social-media .social-x:hover svg {
    fill: white;
}

.site-header.transparent .header-social-media .social-link[href*="youtube"]:hover {
    background: #ff0000 !important;
}

.site-header.transparent .header-social-media .social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.site-header.transparent .header-social-media .social-link[href*="whatsapp"]:hover {
    background: #25d366 !important;
}

.site-header.transparent .header-social-media .social-link[href*="linkedin"]:hover {
    background: #0077b5 !important;
}

/* Solid header state - platform colors will show on hover */
.site-header:not(.transparent) .header-social-media .social-link {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.05);
}

.site-header:not(.transparent) .header-social-media .social-link svg {
    fill: var(--text-dark);
}

@media (max-width: 991px) {
    .site-header {
        padding: 0;
    }
    
    .site-header .navbar {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    .site-header .navbar .header-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        max-width: 100%;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
    }
    
    .navbar-brand-wrapper {
        position: static;
        transform: none;
        order: 2;
        margin-right: 0;
        margin-left: 0;
    }
    
    .navbar-toggler {
        order: 1;
        margin-right: 0;
        margin-left: 0;
        padding: 0.35rem 0.5rem;
        font-size: 0.9rem;
        border-width: 1px;
    }
    
    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        background: white !important;
        border-radius: 12px;
        padding: 1.5rem 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        z-index: 1050;
        position: relative;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overflow-x: visible;
    }
    
    /* Ensure mobile menu is always visible even on transparent header */
    .site-header.transparent .navbar-collapse,
    .site-header.transparent .navbar-collapse.show,
    .site-header.transparent .navbar-collapse.collapsing {
        background: white !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .site-header.transparent .navbar-collapse .navbar-nav {
        background: white !important;
    }
    
    .site-header.transparent .navbar-collapse .navbar-nav .nav-link {
        color: var(--text-dark) !important;
    }
    
    .navbar-collapse .navbar-nav {
        background: white !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        color: var(--text-dark) !important;
        padding: 1rem 0.75rem !important;
        border-radius: 12px !important;
        margin-bottom: 0 !important;
        transition: all 0.3s ease;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        text-align: center !important;
        min-height: 90px !important;
        background: rgba(59, 55, 139, 0.03) !important;
        border: 1px solid rgba(59, 55, 139, 0.1) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link i {
        font-size: 1.5rem !important;
        color: var(--primary-color) !important;
        margin-bottom: 0.25rem !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link span {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        display: block !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .nav-link:focus {
        background: rgba(59, 55, 139, 0.1) !important;
        color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        transform: translateY(-2px) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
        color: white !important;
        box-shadow: 0 4px 12px rgba(59, 55, 139, 0.3) !important;
        border-color: transparent !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link.active i {
        color: white !important;
    }
    
    /* Ensure all menu items are visible in grid */
    .navbar-collapse .navbar-nav .nav-item {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .navbar-collapse .navbar-nav .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .header-social-media {
        position: static;
        transform: none;
        justify-content: center;
        margin: 0.75rem 0;
        order: 4;
        width: 100%;
        gap: 0.4rem;
    }
    
    .header-social-media .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
    
    /* Mobile Social Media Icons in Menu */
    .header-social-media-mobile {
        border-top: 1px solid rgba(59, 55, 139, 0.2) !important;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
        z-index: 10;
        position: relative;
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        align-items: center;
    }
    
    .header-social-media-mobile .d-flex {
        width: 100%;
        display: flex !important;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .site-header:not(.transparent) .header-social-media-mobile {
        border-top: 1px solid rgba(59, 55, 139, 0.2) !important;
    }
    
    /* Default styling for mobile social icons - always visible on white menu background */
    .header-social-media-mobile .social-link-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(59, 55, 139, 0.08);
        border: 1px solid rgba(59, 55, 139, 0.15);
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    /* Override for transparent header - ensure visibility on white menu background */
    .site-header.transparent .navbar-collapse .header-social-media-mobile .social-link-mobile {
        background: rgba(59, 55, 139, 0.08) !important;
        border: 1px solid rgba(59, 55, 139, 0.15) !important;
        color: var(--primary-color) !important;
    }
    
    /* Ensure social icons are always visible in mobile menu */
    .navbar-collapse .header-social-media-mobile,
    .navbar-collapse.show .header-social-media-mobile,
    .navbar-collapse.collapsing .header-social-media-mobile {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar-collapse .header-social-media-mobile .d-flex {
        display: flex !important;
        visibility: visible !important;
    }
    
    .header-social-media-mobile .social-link-mobile i,
    .header-social-media-mobile .social-link-mobile svg {
        font-size: 1.1rem;
        transition: all 0.3s ease;
        z-index: 1;
        position: relative;
    }
    
    .header-social-media-mobile .social-link-mobile svg {
        width: 18px;
        height: 18px;
    }
    
    .header-social-media-mobile .social-link-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 55, 139, 0.2), rgba(169, 128, 253, 0.2));
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50%;
    }
    
    .header-social-media-mobile .social-link-mobile:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(59, 55, 139, 0.3);
        border-color: var(--secondary-color);
        background: rgba(169, 128, 253, 0.15);
    }
    
    /* Hover state for transparent header */
    .site-header.transparent .navbar-collapse .header-social-media-mobile .social-link-mobile:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
    }
    
    /* Hover state for non-transparent header */
    .site-header:not(.transparent) .header-social-media-mobile .social-link-mobile:hover {
        border-color: var(--secondary-color);
        background: rgba(169, 128, 253, 0.15);
    }
    
    .header-social-media-mobile .social-link-mobile:hover::before {
        opacity: 1;
    }
    
    .header-social-media-mobile .social-link-mobile:hover i,
    .header-social-media-mobile .social-link-mobile:hover svg {
        transform: scale(1.15);
        color: var(--secondary-color);
    }
    
    /* Hover icon color for transparent header */
    .site-header.transparent .navbar-collapse .header-social-media-mobile .social-link-mobile:hover i,
    .site-header.transparent .navbar-collapse .header-social-media-mobile .social-link-mobile:hover svg {
        color: white;
    }
    
    /* Hover icon color for non-transparent header */
    .site-header:not(.transparent) .header-social-media-mobile .social-link-mobile:hover i,
    .site-header:not(.transparent) .header-social-media-mobile .social-link-mobile:hover svg {
        color: var(--secondary-color);
    }
    
    /* Individual social media hover colors for mobile */
    .header-social-media-mobile .social-link-mobile[href*="facebook"]:hover {
        background: rgba(24, 119, 242, 0.2);
        border-color: rgba(24, 119, 242, 0.4);
    }
    
    .header-social-media-mobile .social-link-mobile[href*="x.com"]:hover,
    .header-social-media-mobile .social-link-mobile[href*="twitter"]:hover,
    .header-social-media-mobile .social-link-mobile.social-x:hover {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 0, 0, 0.4);
    }
    
    .header-social-media-mobile .social-link-mobile[href*="youtube"]:hover {
        background: rgba(255, 0, 0, 0.2);
        border-color: rgba(255, 0, 0, 0.4);
    }
    
    .header-social-media-mobile .social-link-mobile[href*="instagram"]:hover {
        background: rgba(225, 48, 108, 0.2);
        border-color: rgba(225, 48, 108, 0.4);
    }
    
    .header-social-media-mobile .social-link-mobile[href*="whatsapp"]:hover {
        background: rgba(37, 211, 102, 0.2);
        border-color: rgba(37, 211, 102, 0.4);
    }
    
    .header-social-media-mobile .social-link-mobile[href*="linkedin"]:hover {
        background: rgba(0, 119, 181, 0.2);
        border-color: rgba(0, 119, 181, 0.4);
    }
    
    .navbar-brand .logo {
        max-height: 30px;
        width: auto;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
    }
    
    .navbar-brand .logo[src$=".svg"] {
        max-height: 27px;
        height: 27px;
        width: auto;
    }
    
    .navbar-brand .logo {
        max-height: 27px;
        width: auto;
        height: auto;
    }
    
    .site-header .navbar .navbar-nav {
        padding: 0.5rem 0;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand .logo {
    max-height: 54px;
    width: auto;
    height: auto;
    transition: var(--transition);
    display: block;
}

.navbar-brand .logo[src$=".svg"] {
    max-height: 54px;
    width: auto;
    height: 54px;
    display: block;
}

.navbar-nav {
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 1rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px 3px 0 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: -1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover::after {
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1) !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
}

.navbar-nav .nav-link.active::after {
    opacity: 0.1 !important;
}

/* Ensure active state is visible on all header states */
.site-header .navbar-nav .nav-link.active {
    position: relative;
    z-index: 1;
}

/* Fallback: Also style WordPress default active classes */
.site-header .navbar-nav .current-menu-item > .nav-link,
.site-header .navbar-nav .current-page-ancestor > .nav-link,
.site-header .navbar-nav .current-page-parent > .nav-link,
.site-header .navbar-nav .current-menu-ancestor > .nav-link {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.site-header.transparent .navbar-nav .current-menu-item > .nav-link,
.site-header.transparent .navbar-nav .current-page-ancestor > .nav-link,
.site-header.transparent .navbar-nav .current-page-parent > .nav-link,
.site-header.transparent .navbar-nav .current-menu-ancestor > .nav-link {
    color: white !important;
}

.site-header .navbar-nav .current-menu-item > .nav-link::before,
.site-header .navbar-nav .current-page-ancestor > .nav-link::before,
.site-header .navbar-nav .current-page-parent > .nav-link::before,
.site-header .navbar-nav .current-menu-ancestor > .nav-link::before {
    transform: translateX(-50%) scaleX(1) !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
}

.site-header.transparent .navbar-nav .current-menu-item > .nav-link::before,
.site-header.transparent .navbar-nav .current-page-ancestor > .nav-link::before,
.site-header.transparent .navbar-nav .current-page-parent > .nav-link::before,
.site-header.transparent .navbar-nav .current-menu-ancestor > .nav-link::before {
    transform: translateX(-50%) scaleX(1) !important;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)) !important;
}


/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

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

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.60);
    z-index: 1;
    pointer-events: none;
}

/* Universal dark overlay for background images */
.bg-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(59, 55, 139, 0.4));
    z-index: 1;
    pointer-events: none;
}

/* Ensure all hero section containers are above overlays */
.hero-section > .container,
.about-hero > .container,
.solutions-hero-premium > .container,
.training-hero > .container,
.courses-hero > .container,
.consulting-hero > .container,
.innovation-hero > .container,
.assessment-hero > .container,
.fields-hero-section > .container,
.join-now-hero > .container,
.job-application-hero > .container,
[class*="-hero"] > .container {
    position: relative;
    z-index: 5;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-container .row {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
}

/* Center all hero content wrappers */
.hero-content.text-center,
.about-hero-content.text-center,
.sol-hero-content.text-center,
.training-hero-content.text-center,
.consulting-hero-content.text-center,
.assessment-hero-content.text-center,
.innovation-hero-content.text-center,
.fields-hero-content.text-center,
.courses-hero-content.text-center,
.job-application-hero-content.text-center,
.blog-hero-content.text-center {
    align-items: center;
    text-align: center;
}

/* Center hero title wrappers */
.about-hero-title-wrapper.text-center,
.sol-hero-title-wrapper.text-center,
.training-hero-title-wrapper.text-center,
.consulting-hero-title-wrapper.text-center,
.assessment-hero-title-wrapper.text-center,
.innovation-hero-title-wrapper.text-center {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

/* Desktop - Center content */
@media (min-width: 992px) {
    .hero-section {
        padding-top: 130px; /* Account for 110px header + 20px spacing on desktop */
    }
    
    .hero-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-container .row {
        justify-content: center;
        margin: 0;
    }
    
    .hero-content {
        align-items: center;
        max-width: 800px;
        padding: 2.5rem 2rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .hero-text-col {
        width: 100%;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .hero-buttons-col {
        width: 100%;
        margin-top: 0;
    }
}

/* Tablet and below - Center content */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-section {
        padding-top: 90px; /* Account for 70px header + 20px spacing on tablets (768px-991px) */
    }
    
    .hero-container .row {
        justify-content: center !important;
        padding-right: 0;
    }
    
    .hero-content {
        align-items: center !important;
        max-width: 100%;
        padding: 2rem 1rem;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-text-col {
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-small-line {
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
        font-size: clamp(1.8rem, 3.5vw, 2.3rem) !important;
    }
    
    .hero-paragraph {
        text-align: center !important;
        width: 90% !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }
    
    .hero-buttons {
        justify-content: center !important;
        width: 100%;
    }
    
    .hero-text-col {
        align-items: center !important;
    }
    
    .hero-buttons-col {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

.hero-small-line {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.95;
    text-align: right;
}

@media (max-width: 1199px) {
    .hero-small-line {
        text-align: center !important;
        font-size: clamp(1.8rem, 3.5vw, 2.3rem) !important;
    }
}

.hero-paragraph {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    margin-bottom: 0;
    color: white;
    opacity: 0.95;
    max-width: 100%;
    text-align: right;
}

@media (max-width: 1199px) {
    .hero-paragraph {
        text-align: center;
        max-width: 90%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
    }
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-buttons .btn-outline-light:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.4);
}

.hero-buttons .btn-outline-light:hover::before {
    left: 0;
}

.hero-buttons .btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 55, 139, 0.5);
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary-dark));
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 5rem 0;
}

/* Mobile Section Padding */
@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }
    
    .section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.about-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="aboutPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(59,55,139,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23aboutPattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================
   About Section Tabs
   ============================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="aboutPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(59,55,139,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23aboutPattern)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-tabs {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
    margin-bottom: 3rem;
}

.about-tabs .nav-item {
    margin: 0 0.25rem;
}

.about-tabs .nav-link {
    border: none;
    border-radius: 50px 50px 0 0;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-weight: 600;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-tabs .nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    margin-left: 0.75rem;
    margin-right: 0;
}

/* LTR: Switch icon margin */
[dir="ltr"] .about-tabs .nav-link i {
    margin-left: 0;
    margin-right: 0.75rem;
}

.about-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(59, 55, 139, 0.05);
}

.about-tabs .nav-link:hover i {
    transform: scale(1.1);
}

.about-tabs .nav-link.active {
    color: white;
    background: var(--gradient-primary);
    border-bottom: 2px solid transparent;
}

.about-tabs .nav-link.active i {
    transform: scale(1.15);
}

.about-tab-content {
    min-height: 400px;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleY(1);
}

.about-card:hover {
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.15);
    transform: translateY(-5px);
}

.about-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    padding-right: 0;
}

.about-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* LTR: Switch underline to left side */
[dir="ltr"] .about-content-title {
    padding-right: 0;
    padding-left: 0;
}

[dir="ltr"] .about-content-title::after {
    right: auto;
    left: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.6;
}

.about-image-wrapper {
    padding: 2rem;
}

.about-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.about-image-placeholder:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.about-image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.3);
}

.about-image-placeholder i {
    font-size: 5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.about-image-placeholder.vision-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.9) 0%, rgba(169, 128, 253, 0.9) 100%);
}

.about-image-placeholder.mission-icon {
    background: linear-gradient(135deg, rgba(169, 128, 253, 0.85) 0%, rgba(59, 55, 139, 0.85) 100%);
}

.about-image-placeholder.goal-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.8) 0%, rgba(169, 128, 253, 0.95) 100%);
}

/* ============================================
   Solutions Section - Advanced Card Grid Styling
   ============================================ */
.solutions-section-advanced {
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f5f6fa 100%);
}

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

.solutions-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 55, 139, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 55, 139, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.solutions-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(59, 55, 139, 0.4)),
        radial-gradient(circle at 20% 30%, rgba(59, 55, 139, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(169, 128, 253, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.solutions-badge {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.15), rgba(169, 128, 253, 0.15));
    color: var(--primary-color);
    border: 1px solid rgba(169, 128, 253, 0.25);
    backdrop-filter: blur(10px);
}

.solutions-main-title {
    color: var(--text-dark);
    text-shadow: none;
}

.solutions-subtitle {
    color: var(--text-light);
}

.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

/* Tablet: 2x2 Grid */
@media (max-width: 1199px) {
    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .solution-flip-card-wrapper {
        min-height: 620px;
    }
    
    .solution-flip-card {
        min-height: 620px;
    }
}

/* Solutions Swiper for Mobile - Hidden by default */
.solutions-swiper-wrapper {
    display: none !important;
    position: relative;
    z-index: 1;
}

/* Desktop: Show grid, hide swiper */
@media (min-width: 768px) {
    .solutions-cards-grid {
        display: grid !important;
        visibility: visible !important;
    }
    
    .solutions-swiper-wrapper {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Mobile: Hide grid, show swiper */
@media (max-width: 767px) {
    .solutions-cards-grid {
        display: none !important;
        visibility: hidden !important;
    }
    
    .solutions-swiper-wrapper {
        display: block !important;
        visibility: visible !important;
    }
}

.solutions-swiper {
    padding-bottom: 4rem;
    overflow: visible;
    position: relative;
}

.solutions-swiper .swiper-slide {
    height: auto;
}

.solutions-swiper .solution-flip-card-wrapper {
    min-height: 550px;
    margin: 0 auto;
    max-width: 350px;
}

.solutions-swiper .swiper-pagination {
    bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0 60px;
}

.solutions-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(59, 55, 139, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.solutions-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(169, 128, 253, 0.4);
}

.solutions-swiper .swiper-button-next,
.solutions-swiper .swiper-button-prev {
    color: white;
    background: rgba(59, 55, 139, 0.9);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    border: 1px solid rgba(169, 128, 253, 0.3);
    z-index: 10;
    will-change: transform;
    backface-visibility: hidden;
}

.solutions-swiper .swiper-button-next:hover,
.solutions-swiper .swiper-button-prev:hover,
.solutions-swiper .swiper-button-next:active,
.solutions-swiper .swiper-button-prev:active,
.solutions-swiper .swiper-button-next:focus,
.solutions-swiper .swiper-button-prev:focus {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.4);
    outline: none;
}

.solutions-swiper .swiper-button-next::after,
.solutions-swiper .swiper-button-prev::after {
    font-size: 0.9rem;
    font-weight: 700;
}

.solutions-swiper .swiper-button-next {
    left: 10px;
    right: auto;
}

.solutions-swiper .swiper-button-prev {
    right: 10px;
    left: auto;
}

/* Mobile: Position arrows at pagination row */
@media (max-width: 767px) {
    .solutions-swiper {
        padding-bottom: 0.5rem;
        position: relative;
    }
    
    .solutions-swiper .swiper-pagination {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0 75px;
        width: 100%;
        bottom: auto;
        height: 40px;
    }
    
    .solutions-swiper .swiper-pagination-bullet {
        margin: 0 3px;
    }
    
    .solutions-swiper .swiper-button-next,
    .solutions-swiper .swiper-button-prev {
        position: absolute;
        top: auto;
        bottom: 0;
        transform: translateY(0);
        width: 35px;
        height: 35px;
        margin-top: 0;
        z-index: 10;
        background: rgba(59, 55, 139, 0.9);
        border: 1px solid rgba(169, 128, 253, 0.3);
        transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        will-change: transform;
        backface-visibility: hidden;
    }
    
    .solutions-swiper .swiper-button-next {
        left: 50%;
        right: auto;
        transform: translateX(calc(-50% + 85px));
    }
    
    .solutions-swiper .swiper-button-prev {
        right: 50%;
        left: auto;
        transform: translateX(calc(50% - 85px));
    }
    
    .solutions-swiper .swiper-button-next:hover,
    .solutions-swiper .swiper-button-next:active,
    .solutions-swiper .swiper-button-next:focus {
        transform: translateX(calc(-50% + 85px)) scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(59, 55, 139, 0.4);
        outline: none;
    }
    
    .solutions-swiper .swiper-button-prev:hover,
    .solutions-swiper .swiper-button-prev:active,
    .solutions-swiper .swiper-button-prev:focus {
        transform: translateX(calc(50% - 85px)) scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(59, 55, 139, 0.4);
        outline: none;
    }
    
    .solutions-swiper .swiper-button-next::after,
    .solutions-swiper .swiper-button-prev::after {
        font-size: 0.75rem;
    }
}

.solution-flip-card-wrapper {
    height: 100%;
    min-height: 580px;
    perspective: 1200px;
    transition: transform 0.3s ease;
}

.solution-flip-card-wrapper:hover {
    transform: translateY(-5px);
}

.solution-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.solution-flip-card-wrapper.flipped .solution-flip-card {
    transform: rotateY(180deg);
}

.solution-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.solution-flip-card-front,
.solution-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.3s ease;
}

.solution-flip-card-wrapper:hover .solution-flip-card-front,
.solution-flip-card-wrapper:hover .solution-flip-card-back {
    border-color: rgba(169, 128, 253, 0.3);
    box-shadow: 
        0 25px 70px rgba(59, 55, 139, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.solution-flip-card-back {
    transform: rotateY(180deg);
}

.solution-advanced-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.solution-advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.solution-advanced-card:hover::before {
    opacity: 0.6;
}

.solution-advanced-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(59, 55, 139, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: rgba(169, 128, 253, 0.3);
}

.solution-card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.solution-advanced-card:hover .solution-card-bg-image {
    transform: scale(1.15);
}

.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 15, 0.4) 0%, rgba(10, 10, 15, 0.85) 100%),
        linear-gradient(90deg, rgba(59, 55, 139, 0.3) 0%, rgba(169, 128, 253, 0.2) 100%);
    z-index: 1;
}

.solution-card-content {
    position: relative;
    z-index: 2;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
    justify-content: space-between;
}

.solution-card-text-full {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 380px;
    padding-right: 0.5rem;
}

.solution-card-text-full strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.solution-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.solution-features-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.solution-features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #a980fd;
    font-weight: 700;
    font-size: 1.1rem;
}

.solution-card-text-full::-webkit-scrollbar {
    width: 6px;
}

.solution-card-text-full::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.solution-card-text-full::-webkit-scrollbar-thumb {
    background: rgba(169, 128, 253, 0.6);
    border-radius: 3px;
}

.solution-card-text-full::-webkit-scrollbar-thumb:hover {
    background: rgba(169, 128, 253, 0.8);
}

.solution-card-text-full p {
    margin-bottom: 1rem;
}

.solution-card-text-full p:last-child {
    margin-bottom: 0;
}

.solution-card-icon-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.solution-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.solution-advanced-card:hover .solution-card-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.solution-advanced-card:hover .solution-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 15px rgba(255, 255, 255, 0.1);
}

.solution-card-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.solution-card-icon.training-icon {
    background: linear-gradient(135deg, #3b378b 0%, #5a4fb8 50%, #a980fd 100%);
}

.solution-card-icon.consulting-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.95) 0%, rgba(169, 128, 253, 0.95) 100%);
}

.solution-card-icon.assessment-icon {
    background: linear-gradient(135deg, rgba(169, 128, 253, 0.9) 0%, rgba(59, 55, 139, 0.9) 100%);
}

.solution-card-icon.innovation-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.85) 0%, rgba(169, 128, 253, 1) 100%);
}

.solution-card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(169, 128, 253, 0.3);
    align-self: flex-start;
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.solution-card-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.solution-card-text p {
    margin-bottom: 1rem;
}

.solution-card-text p:last-child {
    margin-bottom: 0;
}

.solution-card-highlight {
    background: rgba(169, 128, 253, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-right: 3px solid #a980fd;
    margin-top: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.btn-solution-advanced {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.9), rgba(169, 128, 253, 0.9));
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(59, 55, 139, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    align-self: flex-start;
}

.btn-solution-advanced::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.6s ease;
}

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

.btn-solution-advanced:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(59, 55, 139, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    color: white;
    background: linear-gradient(135deg, rgba(59, 55, 139, 1), rgba(169, 128, 253, 1));
}

.btn-solution-advanced i {
    transition: transform 0.3s ease;
}

.btn-solution-advanced:hover i {
    transform: translateX(-5px);
}

/* Flip Indicator Animation */
.solution-flip-indicator {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
    animation: pulseIndicator 2s ease-in-out infinite;
}

.solution-flip-indicator.back {
    margin-top: 1.5rem;
    padding-top: 0;
}

.flip-indicator-text {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.flip-indicator-arrow {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(169, 128, 253, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(169, 128, 253, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceArrow 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.solution-flip-card-wrapper:hover .flip-indicator-arrow {
    background: rgba(169, 128, 253, 0.3);
    border-color: rgba(169, 128, 253, 0.6);
    transform: scale(1.1);
}

.flip-indicator-arrow i {
    font-size: 1.1rem;
    color: #a980fd;
    filter: drop-shadow(0 2px 5px rgba(169, 128, 253, 0.5));
}

@keyframes pulseIndicator {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

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

.solution-flip-indicator.back .flip-indicator-arrow {
    animation: bounceArrowUp 1.5s ease-in-out infinite;
}

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

/* Legacy Solutions Section (for page template) - NOT USED, commented out to prevent conflicts */
/*
.solutions-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f8f9fa 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 55, 139, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 55, 139, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    pointer-events: none;
}

.solutions-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(169, 128, 253, 0.05) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
*/

.solutions-tabs {
    border-bottom: 3px solid rgba(59, 55, 139, 0.1);
    padding-bottom: 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.solutions-tabs .nav-item {
    margin: 0 0.5rem;
}

.solutions-tabs .nav-link {
    border: none;
    border-radius: 50px 50px 0 0;
    padding: 1.25rem 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: -3px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.solutions-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px 50px 0 0;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solutions-tabs .nav-link i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.solutions-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.15);
}

.solutions-tabs .nav-link:hover::before {
    opacity: 1;
}

.solutions-tabs .nav-link:hover i {
    transform: scale(1.15) rotate(5deg);
}

.solutions-tabs .nav-link.active {
    color: white;
    background: var(--gradient-primary);
    border-bottom: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
    transform: translateY(-5px);
}

.solutions-tabs .nav-link.active::before {
    opacity: 0;
}

.solutions-tabs .nav-link.active i {
    transform: scale(1.2);
    animation: iconPulse 2s ease-in-out infinite;
}

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

.solutions-tab-content {
    min-height: 500px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.solution-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.solution-card:hover {
    box-shadow: 
        0 30px 80px rgba(59, 55, 139, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
}

.solution-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 55, 139, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 55, 139, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 30px;
}

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

.solution-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(59, 55, 139, 0.2);
    backdrop-filter: blur(10px);
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(59, 55, 139, 0.3);
}

.solution-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.solution-text p {
    margin-bottom: 1.5rem;
}

.solution-text p:last-child {
    margin-bottom: 0;
}

.btn-solution-more {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.btn-solution-more::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 ease;
}

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

.btn-solution-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 55, 139, 0.4);
    color: white;
}

.btn-solution-more i {
    transition: transform 0.3s ease;
}

.btn-solution-more:hover i {
    transform: translateX(-5px);
}

.solution-icon-wrapper {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.solution-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 20px rgba(255, 255, 255, 0.1),
        0 0 0 40px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.solution-icon:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.solution-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 25px rgba(255, 255, 255, 0.15),
        0 0 0 50px rgba(255, 255, 255, 0.1);
}

.solution-icon i {
    font-size: 6rem;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.solution-icon.training-icon {
    background: linear-gradient(135deg, #3b378b 0%, #5a4fb8 50%, #a980fd 100%);
}

.solution-icon.consulting-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.95) 0%, rgba(169, 128, 253, 0.95) 100%);
}

.solution-icon.assessment-icon {
    background: linear-gradient(135deg, rgba(169, 128, 253, 0.9) 0%, rgba(59, 55, 139, 0.9) 100%);
}

.solution-icon.innovation-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.85) 0%, rgba(169, 128, 253, 1) 100%);
}

/* ============================================
   Cards
   ============================================ */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

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

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================
   Course Cards
   ============================================ */
.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.course-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-body > .mt-3 {
    margin-top: 1rem !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.course-price {
    margin-top: auto;
    padding-top: 1rem;
}

/* Course CTA Buttons - Centered and Fit */
.course-body .btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.course-body .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.2);
}

.course-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 55, 139, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

.course-body .btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.course-body .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.2);
}

.price-before {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.price-after {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Mobile: 2 columns for courses */
@media (max-width: 767px) {
    .course-card {
        margin-bottom: 1rem;
    }
    
    .course-image {
        height: 80px;
    }
    
    .course-body {
        padding: 1rem;
    }
    
    .course-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .course-excerpt {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .price-after {
        font-size: 1.25rem;
    }
    
    .course-body .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
        border-radius: 50px;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   Courses Page Premium Styles
   ============================================ */

/* Courses Hero Section */
.courses-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: #f8f9fa;
}

.courses-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.courses-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.courses-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.02) 0%, rgba(169, 128, 253, 0.02) 100%);
    z-index: 0;
    pointer-events: none;
}

.courses-hero-content {
    position: relative;
    z-index: 5;
}

.courses-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

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

.courses-breadcrumb a:hover {
    color: white;
}

.courses-breadcrumb .breadcrumb-sep,
.courses-breadcrumb .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

.courses-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.courses-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center !important;
    width: 100% !important;
}

.courses-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    text-align: center !important;
    width: 100% !important;
}

/* Courses Grid Section */
.courses-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Courses Grid Section Container */
.courses-grid-section .container {
    text-align: center;
}

.courses-grid-section .program-filters {
    justify-content: center;
}

/* Course Type Badges */
.course-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.course-type-badge i {
    font-size: 0.8rem;
}

.course-type-regular {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
}

.course-type-external {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.course-type-upcoming {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

/* Delivery Type Badges */
.course-type-online {
    background: rgba(0, 150, 136, 0.1);
    color: #009688;
}

.course-type-onsite {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
}

.course-type-hybrid {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

/* Course Card Meta */
.course-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.course-card-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

/* Course Card Academy */
.course-card-academy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.course-card-academy i {
    color: var(--secondary-color);
}

/* External Program Card Specific */
.external-program-card .course-card-image-wrapper {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(0, 150, 136, 0.05));
}

.external-placeholder {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), rgba(0, 150, 136, 0.05)) !important;
}

.external-placeholder i {
    color: #009688 !important;
}

/* Upcoming Course Card Specific */
.upcoming-course-card .course-card-image-wrapper {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05));
}

.upcoming-placeholder {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 152, 0, 0.05)) !important;
}

.upcoming-placeholder i {
    color: #ff9800 !important;
}

/* Delivery Badge */
.delivery-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.delivery-online {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.delivery-onsite {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

.delivery-hybrid {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

/* Filter Empty State */
.filter-empty-state {
    padding: 4rem 2rem;
}

.filter-empty-state .courses-empty-icon i {
    color: var(--primary-color);
}

/* Courses Grid Display */
.courses-grid {
    display: flex;
    flex-wrap: wrap;
}


/* Premium Course Card */
.course-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.course-card-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 20%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
}

.course-card-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.course-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 55, 139, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.course-card-premium:hover .course-card-overlay {
    opacity: 1;
}

.course-card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
}

.course-card-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.course-price-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
    z-index: 2;
}

.course-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.course-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.course-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.course-card-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.course-card-price .price-before {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.course-card-price .price-after {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-card-footer {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.course-card-footer .course-card-btn {
    flex: 1;
    min-width: 100px;
    width: auto;
}

.course-card-footer .course-card-btn:only-child {
    flex: none;
    width: 100%;
}

@media (max-width: 575px) {
    .course-card-footer .course-card-btn {
        min-width: 80px;
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
}

.course-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.course-card-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.course-card-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 55, 139, 0.35);
    color: white;
}

.course-card-btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.course-card-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Courses Pagination */
.courses-pagination-wrapper {
    margin-top: 4rem;
    padding-top: 2rem;
}

.courses-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.courses-pagination li {
    margin: 0;
}

.courses-pagination a,
.courses-pagination span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.courses-pagination a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
}

.courses-pagination .current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Courses Empty State */
.courses-empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.courses-empty-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.courses-empty-state h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.courses-empty-state p {
    color: var(--text-light);
}

/* ============================================
   Single Course Premium Styles
   ============================================ */

/* Single Course Hero */
.single-course-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.single-course-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.single-course-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03) 0%, rgba(169, 128, 253, 0.03) 100%);
}

.single-course-hero-content {
    position: relative;
    z-index: 5;
}

.single-course-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.single-course-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-course-breadcrumb a:hover {
    color: var(--primary-color);
}

.single-course-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-course-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.single-course-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Single Course Content */
.single-course-content-section {
    padding: 4rem 0;
    background: white;
}

.single-course-article {
    margin-bottom: 3rem;
}

.single-course-featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.single-course-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-course-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.single-course-content h2,
.single-course-content h3,
.single-course-content h4 {
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.single-course-content h2 {
    font-size: 2rem;
    border-right: 4px solid var(--primary-color);
    padding-right: 1rem;
}

/* LTR: Switch border to left side */
[dir="ltr"] .single-course-content h2 {
    border-right: none;
    border-left: 4px solid var(--primary-color);
    padding-right: 0;
    padding-left: 1rem;
}

.single-course-content h3 {
    font-size: 1.75rem;
}

.single-course-content h4 {
    font-size: 1.5rem;
}

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

.single-course-content ul,
.single-course-content ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.single-course-content li {
    margin-bottom: 0.75rem;
}

.single-course-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-course-content a:hover {
    color: var(--secondary-color);
}

.course-excerpt-box {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border-right: 4px solid var(--primary-color);
}

.course-excerpt-box h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Single Course Sidebar */
.single-course-sidebar {
    position: sticky;
    top: 120px;
}

.course-featured-image-sidebar {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.course-featured-image-sidebar img {
    width: 100%;
    height: auto;
    display: block;
}

.course-info-card-sidebar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.course-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.course-info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-info-item h5 i {
    color: var(--primary-color);
}

.course-price-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-price-display .price-before {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.course-price-display .price-after {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-register-btn,
.course-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-register-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.course-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 55, 139, 0.35);
    color: white;
}

.course-view-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.course-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.course-info-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive Styles for Courses */
@media (max-width: 991px) {
    .courses-hero-section {
        padding-top: 90px; /* Account for 70px header + 20px spacing on tablets */
    }
    
    .courses-hero-title {
        font-size: 2.5rem;
    }
    
    .single-course-title {
        font-size: 2.5rem;
    }
    
    .single-course-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .courses-hero-section {
        padding: 6rem 0 4rem;
    }
    
    .courses-hero-title {
        font-size: 2rem;
    }
    
    .courses-hero-subtitle {
        font-size: 1rem;
    }
    
    .single-course-hero {
        padding: 8rem 0 3rem;
    }
    
    .single-course-title {
        font-size: 2rem;
    }
    
    .course-card-content {
        padding: 1.5rem;
    }
    
    .course-card-title {
        font-size: 1.2rem;
    }
    
    .course-card-image-wrapper {
        padding-top: 25%;
    }
}

@media (max-width: 576px) {
    .courses-grid-section .row {
        margin: 0 -0.5rem;
    }
    
    .courses-grid-section .col-12 {
        padding: 0 0.5rem;
    }
    
    .course-card-premium {
        border-radius: 16px;
    }
    
    .course-card-content {
        padding: 1.25rem;
    }
}

/* ============================================
   Statistics Section
   ============================================ */
/* ============================================
   Statistics Section - Advanced Attractive Design
   ============================================ */
.stats-section-advanced {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

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

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 55, 139, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 55, 139, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.stats-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 55, 139, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(169, 128, 253, 0.08) 0%, transparent 50%);
}

.stats-badge {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    color: var(--primary-color);
    border: 1px solid rgba(59, 55, 139, 0.2);
    backdrop-filter: blur(10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-advanced {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(59, 55, 139, 0.1) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card-advanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 55, 139, 0.05), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.stat-card-advanced:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.stat-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(59, 55, 139, 0.15),
        0 0 0 1px rgba(169, 128, 253, 0.2) inset;
    background: rgba(255, 255, 255, 0.95);
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stat-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 8px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.8s ease;
}

.stat-card-advanced:hover .stat-icon::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.stat-card-advanced:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.15);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.stat-icon.projects-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.95) 0%, rgba(169, 128, 253, 0.95) 100%);
}

.stat-icon.programs-icon {
    background: linear-gradient(135deg, rgba(169, 128, 253, 0.9) 0%, rgba(59, 55, 139, 0.9) 100%);
}

.stat-icon.trainees-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.85) 0%, rgba(169, 128, 253, 1) 100%);
}

.stat-icon.initiatives-icon {
    background: linear-gradient(135deg, rgba(169, 128, 253, 0.95) 0%, rgba(59, 55, 139, 0.85) 100%);
}

.stat-number-advanced {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.stat-prefix {
    color: var(--secondary-color);
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-value {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.stat-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card-advanced:hover .stat-value::after {
    transform: scaleX(1);
}

.stat-label-advanced {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    position: relative;
    padding-top: 0.75rem;
}

.stat-label-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

/* Legacy stats section (for other pages) */
.stats-section {
    background: var(--bg-light);
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Testimonials Section - Advanced
   ============================================ */
.testimonials-section-advanced {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

@media (max-width: 767px) {
    .testimonials-section-advanced {
        padding: 3rem 0;
    }
}

.testimonial-card-advanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem 2.5rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(59, 55, 139, 0.1) inset;
    text-align: center;
    height: 100%;
    min-height: 380px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.testimonial-card-advanced:hover::before {
    transform: scaleY(1);
}

.testimonial-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(59, 55, 139, 0.15),
        0 0 0 1px rgba(169, 128, 253, 0.2) inset;
}

.testimonial-avatar-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(59, 55, 139, 0.2);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card-advanced:hover .testimonial-avatar {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(169, 128, 253, 0.3);
}

.testimonial-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.2);
}

.testimonial-avatar-placeholder i {
    font-size: 3rem;
    color: white;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: rgba(59, 55, 139, 0.15);
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-author-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(59, 55, 139, 0.1);
}

.testimonial-author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author-position {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Testimonials Grid Layout - Swiper with Grid */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .testimonials-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonials Swiper */
.testimonials-swiper-modern {
    padding: 2rem 0 4rem;
    overflow: hidden;
    position: relative;
}

.testimonials-swiper-modern .swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-swiper-modern .swiper-wrapper {
    margin-bottom: 2rem;
}

.testimonials-swiper-modern .swiper-slide {
    height: auto;
    width: 100%;
}

.testimonials-grid-swiper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 991px) {
    .testimonials-grid-swiper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-grid-swiper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.testimonials-swiper-modern .testimonials-swiper {
    padding-bottom: 3rem;
    width: 100%;
    height: auto;
}

.testimonials-swiper-modern .testimonials-swiper .swiper-pagination {
    bottom: 0;
    position: relative;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-swiper-modern .testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(59, 55, 139, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper-modern .testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(169, 128, 253, 0.4);
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
}

/* Legacy testimonial styles */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   Partners Section - Modern Redesign
   ============================================ */
.partners-section-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.partners-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 55, 139, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(169, 128, 253, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.partners-section-modern .container {
    position: relative;
    z-index: 1;
}

/* Partners Header */
.partners-header {
    margin-bottom: 3rem;
}

.partners-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.2);
}

.partners-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.partners-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Tabs */
.partners-tabs-modern {
    margin-bottom: 3rem;
}

.partners-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.partners-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid rgba(59, 55, 139, 0.1);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partners-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.3s ease;
    z-index: 0;
}

.partners-tab-btn i,
.partners-tab-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.partners-tab-btn i {
    font-size: 1.2rem;
}

.partners-tab-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.15);
}

.partners-tab-btn:hover::before {
    left: 0;
}

.partners-tab-btn:hover i,
.partners-tab-btn:hover span {
    color: white;
}

.partners-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.partners-tab-btn.active::before {
    left: 0;
}

.partners-tab-btn.active i,
.partners-tab-btn.active span {
    color: white;
}

/* Partners Content */
.partners-content-wrapper {
    position: relative;
    min-height: 300px;
}

.partners-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.partners-tab-content.active {
    display: block;
}

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

/* Partners Carousel */
.partners-carousel-modern {
    position: relative;
    padding: 2rem 0 4rem;
}

.partners-carousel-modern .swiper {
    padding-bottom: 3rem;
    overflow: visible;
}

.partners-carousel-modern .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Card */
.partner-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 55, 139, 0.08);
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.partner-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.15);
    border-color: rgba(169, 128, 253, 0.3);
}

.partner-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.partner-logo-modern {
    max-width: 100%;
    max-height: 100px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: all 0.4s ease;
}

.partner-card-modern:hover .partner-logo-modern {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Swiper Navigation */
.swiper-button-prev-modern,
.swiper-button-next-modern {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(59, 55, 139, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 2px solid rgba(59, 55, 139, 0.1);
}

.swiper-button-prev-modern {
    right: -25px;
}

.swiper-button-next-modern {
    left: -25px;
}

[dir="ltr"] .swiper-button-prev-modern {
    right: auto;
    left: -25px;
}

[dir="ltr"] .swiper-button-next-modern {
    left: auto;
    right: -25px;
}

.swiper-button-prev-modern i,
.swiper-button-next-modern i {
    font-size: 1.5rem;
    font-weight: 700;
}

.swiper-button-prev-modern:hover,
.swiper-button-next-modern:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 55, 139, 0.3);
    border-color: transparent;
}

.swiper-button-prev-modern.swiper-button-disabled,
.swiper-button-next-modern.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Swiper Pagination */
.swiper-pagination-modern {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.swiper-pagination-modern .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(59, 55, 139, 0.2);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.swiper-pagination-modern .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
}

/* Empty State */
.partners-empty-state {
    padding: 4rem 2rem;
}

.partners-empty-state i {
    font-size: 4rem;
    color: var(--text-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.partners-empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners-section-modern {
        padding: 4rem 0;
    }
    
    .swiper-button-prev-modern,
    .swiper-button-next-modern {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-prev-modern {
        right: -20px;
    }
    
    .swiper-button-next-modern {
        left: -20px;
    }
    
    [dir="ltr"] .swiper-button-prev-modern {
        left: -20px;
    }
    
    [dir="ltr"] .swiper-button-next-modern {
        right: -20px;
    }
}

@media (max-width: 767px) {
    .partners-section-modern {
        padding: 3rem 0;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-description {
        font-size: 1rem;
    }
    
    .partners-tabs-wrapper {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .partners-tab-btn {
        flex: 1;
        min-width: 0;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .partners-tab-btn i {
        font-size: 1rem;
    }
    
    .partners-tab-btn span {
        font-size: 0.85rem;
    }
    
    .partner-card-modern {
        padding: 1.5rem;
        min-height: 140px;
        border-radius: 15px;
    }
    
    .partner-logo-modern {
        max-height: 80px;
    }
    
    .swiper-button-prev-modern,
    .swiper-button-next-modern {
        width: 40px;
        height: 40px;
        display: none;
    }
    
    .swiper-pagination-modern {
        margin-top: 1.5rem;
    }
    
    .swiper-pagination-modern .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-modern .swiper-pagination-bullet-active {
        width: 25px;
    }
}

/* ============================================
   Tabs (Solutions Page - Legacy styles for page template)
   ============================================ */
.page-template-page-solutions .solutions-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 3rem;
}

.page-template-page-solutions .solutions-tabs .nav-link {
    color: var(--text-light);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.page-template-page-solutions .solutions-tabs .nav-link:hover {
    border-bottom-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-template-page-solutions .solutions-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.tab-content {
    padding: 2rem 0;
}

#partnersTabContentPremium .tab-pane {
    display: none;
}

#partnersTabContentPremium .tab-pane.active {
    display: block;
}

/* ============================================
   Job Application Section - Premium Design
   ============================================ */
.job-application-section-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    overflow: hidden;
}

.job-application-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 55, 139, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 128, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.job-application-section-premium .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
.job-application-header {
    margin-bottom: 4rem;
}

.job-application-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.2);
    margin-bottom: 1.5rem;
}

.job-application-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.job-application-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.job-application-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.job-application-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(169, 128, 253, 0.2);
}

/* Form Container */
.job-application-form-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 60px rgba(59, 55, 139, 0.1),
        0 0 0 1px rgba(59, 55, 139, 0.05) inset;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.job-form-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 24px;
    z-index: 0;
}

.form-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 55, 139, 0.08) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.form-decoration-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.form-decoration-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 5s;
}

.form-decoration-circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.premium-job-form {
    position: relative;
    z-index: 1;
}

/* Join Now Tabs */
.join-now-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(211, 20, 27, 0.1);
    padding-bottom: 0;
}

.join-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

.join-tab-btn i {
    font-size: 1.25rem;
}

.join-tab-btn:hover {
    color: var(--primary-color);
}

.join-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.join-tab-content {
    display: none;
}

.join-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Mobile Styles for Tabs */
@media (max-width: 767px) {
    .join-now-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .join-tab-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Form Groups */
.form-group-premium {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label-premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.required-star {
    color: #e74c3c;
    margin-right: 0.25rem;
}

/* Form Controls */
.form-control-premium {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(59, 55, 139, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.form-control-premium::placeholder {
    color: rgba(59, 55, 139, 0.4);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(59, 55, 139, 0.1),
        0 4px 12px rgba(59, 55, 139, 0.15);
    transform: translateY(-2px);
}

.form-input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.form-control-premium:focus ~ .form-input-line {
    width: 100%;
}

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

/* File Upload Styling */
.file-upload-premium {
    margin-bottom: 1.5rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-input-premium {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 2px dashed rgba(59, 55, 139, 0.3);
    border-radius: 12px;
    background: rgba(59, 55, 139, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(59, 55, 139, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.1);
}

.file-upload-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.file-upload-text {
    color: var(--text-dark);
    font-weight: 500;
}

.file-name-display {
    margin-right: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: none;
}

.file-name-display.show {
    display: block;
}

.form-text-premium {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Submit Button */
.btn-submit-premium {
    position: relative;
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 25px rgba(59, 55, 139, 0.3),
        0 0 0 2px rgba(169, 128, 253, 0.2) inset;
    margin-top: 1rem;
}

.btn-submit-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(59, 55, 139, 0.4),
        0 0 0 3px rgba(169, 128, 253, 0.3) inset;
}

.btn-submit-premium:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-submit-premium:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover .btn-icon {
    transform: translateX(-5px);
}

.btn-shine {
    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 ease;
}

.btn-submit-premium:hover .btn-shine {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .job-application-section-premium {
        padding: 4rem 0;
    }
    
    .job-application-title {
        font-size: 2.2rem;
    }
    
    .job-application-form-premium {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .job-application-section-premium {
        padding: 3rem 0;
    }
    
    .job-application-header {
        margin-bottom: 2.5rem;
    }
    
    .job-application-title {
        font-size: 1.9rem;
    }
    
    .job-application-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .job-application-form-premium {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-control-premium {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-premium {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--text-dark);
    color: white;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-menu li {
    display: inline-block;
    margin-left: 1rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* ============================================
   Blog Page Styles - Premium Design
   ============================================ */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

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

.blog-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.blog-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03) 0%, rgba(169, 128, 253, 0.03) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 5;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-card-premium {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
}

.blog-card-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 55, 139, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.blog-card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
}

.blog-card-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-card-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.blog-card-category:hover {
    transform: scale(1.05);
    color: white;
}

.blog-card-author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-card-author i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-read-more:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.blog-card-stats {
    display: flex;
    gap: 1rem;
}

.blog-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-stat-item i {
    color: var(--primary-color);
}

/* Blog Pagination */
.blog-pagination-wrapper {
    margin-top: 4rem;
    padding-top: 2rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.blog-pagination a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
}

.blog-pagination .current {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.blog-empty-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.blog-empty-state h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-empty-state p {
    color: var(--text-light);
}

/* ============================================
   Single Blog Post Styles - Premium Design
   ============================================ */

/* Single Post Hero */
.single-post-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.single-post-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.single-post-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03) 0%, rgba(169, 128, 253, 0.03) 100%);
}

.single-post-hero-content {
    position: relative;
    z-index: 5;
}

.single-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.single-post-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-breadcrumb a:hover {
    color: var(--primary-color);
}

.single-post-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-post-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.single-post-category:hover {
    transform: scale(1.05);
    color: white;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.single-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* Single Post Content */
.single-post-content-section {
    padding: 4rem 0;
    background: white;
}

.single-post-article {
    margin-bottom: 3rem;
}

.single-post-featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
    border-right: 4px solid var(--primary-color);
    padding-right: 1rem;
}

/* LTR: Switch border to left side */
[dir="ltr"] .single-post-content h2 {
    border-right: none;
    border-left: 4px solid var(--primary-color);
    padding-right: 0;
    padding-left: 1rem;
}

.single-post-content h3 {
    font-size: 1.75rem;
}

.single-post-content h4 {
    font-size: 1.5rem;
}

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

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.single-post-content li {
    margin-bottom: 0.75rem;
}

.single-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post-content a:hover {
    color: var(--secondary-color);
}

.single-post-content blockquote {
    border-right: 4px solid var(--primary-color);
    padding-right: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Post Tags */
.single-post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.single-post-tags h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.post-tags-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: var(--text-dark);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.post-tags-list a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Post Share */
.single-post-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.single-post-share h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.post-share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Author Box */
.single-post-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    border-radius: 20px;
    margin-top: 3rem;
    border-right: 4px solid var(--primary-color);
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-light);
    margin: 0;
}

/* Post Navigation */
.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.post-nav-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.post-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.15);
}

.post-nav-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
}

.post-nav-prev a {
    flex-direction: row;
}

.post-nav-next a {
    flex-direction: row-reverse;
    text-align: left;
}

.post-nav-content {
    flex: 1;
}

.post-nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.post-nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.post-nav-item:hover .post-nav-title {
    color: var(--primary-color);
}

.post-nav-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Related Posts */
.related-posts-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

.related-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.15);
}

.related-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-post-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    flex: 1;
}

.related-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: var(--primary-color);
}

.related-post-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Sidebar */
.single-post-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.1);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.recent-posts-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.recent-posts-list a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: var(--primary-color);
}

.recent-posts-list .post-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.categories-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.categories-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .blog-hero-section {
        padding-top: 90px; /* Account for 70px header + 20px spacing on tablets */
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .single-post-title {
        font-size: 2.5rem;
    }
    
    .single-post-navigation {
        grid-template-columns: 1fr;
    }
    
    .single-post-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 6rem 0 4rem;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .single-post-hero {
        padding: 6rem 0 3rem;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.2rem;
    }
    
    .post-share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

.pagination .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ============================================
   Utilities
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card-advanced {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number-advanced {
        font-size: 2.5rem;
    }
    
    .stat-prefix {
        font-size: 2rem;
    }
    
    .stat-label-advanced {
        font-size: 1.1rem;
    }
    
    .testimonial-card-advanced {
        padding: 2.5rem 1.5rem;
        min-height: 360px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .partner-logo-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    
    .payment-methods {
        gap: 0.75rem;
    }
    
    .payment-method-item {
        padding: 0.5rem 0.75rem;
    }
    
    .payment-logo {
        max-height: 35px;
    }
    
    /* Footer Mobile Improvements */
    .site-footer-advanced .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        max-width: 100%;
        width: 100%;
    }
    
    .footer-content-row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .footer-content-row > [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .footer-section {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-info-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .contact-info-item i {
        font-size: 0.95rem;
        width: 18px;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-social-media {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .offices-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .office-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .footer-offices-intro {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .payment-methods {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .payment-logo {
        max-height: 32px;
    }
    
    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-copyright,
    .footer-credit {
        font-size: 0.8rem;
        padding: 0 0.5rem;
        line-height: 1.6;
    }
    
    .solutions-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .solution-card {
        padding: 2.5rem 1.5rem;
    }
    
    .solution-title {
        font-size: 2rem;
    }
    
    .solution-text {
        font-size: 1rem;
    }
    
    .solution-icon {
        width: 180px;
        height: 180px;
    }
    
    .solution-icon i {
        font-size: 4rem;
    }
    
    .solutions-tabs {
        flex-wrap: wrap;
    }
    
    .solutions-tabs .nav-item {
        margin: 0.25rem;
    }
    
    .solution-advanced-card {
        min-height: 500px;
    }
    
    .solution-card-content {
        padding: 2rem 1.5rem;
    }
    
    .solution-card-title {
        font-size: 1.75rem;
    }
    
    .solution-card-text {
        font-size: 0.95rem;
    }
    
    .solution-card-icon {
        width: 80px;
        height: 80px;
    }
    
    .solution-card-icon i {
        font-size: 2.5rem;
    }
    
    .solution-flip-card-wrapper {
        min-height: 550px;
    }
    
    .solution-flip-card {
        min-height: 550px;
    }
    
    .solution-card-text-full {
        max-height: 320px;
    }
    
    .solution-features-list li {
        padding-right: 1.25rem;
        font-size: 0.9rem;
    }
    
    .flip-indicator-arrow {
        width: 40px;
        height: 40px;
    }
    
    .flip-indicator-arrow i {
        font-size: 1.2rem;
    }
    
    .job-application-form {
        padding: 1.5rem;
    }
    
    .about-tabs .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .about-tabs .nav-link i {
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-content-title {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .about-image-placeholder i {
        font-size: 3.5rem;
    }
    
    .about-tabs {
        flex-wrap: wrap;
    }
    
    .about-tabs .nav-item {
        margin: 0.25rem;
    }
    
    .about-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Tablet hero styles */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-container .row {
        justify-content: center;
        padding-right: 0;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .hero-text-col {
        text-align: center;
    }
    
    .hero-paragraph {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        min-height: 100vh;
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero-section .container,
    .hero-section .hero-container {
        padding: 0 1.25rem;
        height: auto;
    }
    
    .hero-container .row {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-content {
        text-align: center;
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-text-col {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons-col {
        text-align: center;
        margin-top: 0;
        width: 100%;
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .hero-small-line {
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .hero-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 0;
        text-align: center;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }
    
    .hero-buttons .btn-outline-light,
    .hero-buttons .btn-primary {
        font-size: 1rem;
    }
    
    .hero-buttons .btn-primary {
        background: var(--gradient-primary);
        box-shadow: 0 8px 25px rgba(59, 55, 139, 0.4);
    }
    
    .hero-buttons .btn-outline-light {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: white;
    }
    
    .hero-buttons .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Very small screens - stack vertically */
    @media (max-width: 480px) {
        /* Very Small Mobile - Extra Padding */
        .container {
            padding-left: 0.875rem !important;
            padding-right: 0.875rem !important;
            max-width: 100% !important;
        }
        
        .container-fluid {
            padding-left: 0.875rem !important;
            padding-right: 0.875rem !important;
        }
        
        .section .container,
        section .container {
            padding-left: 0.875rem !important;
            padding-right: 0.875rem !important;
        }
        
        .row {
            margin-left: -0.375rem;
            margin-right: -0.375rem;
        }
        
        .row > [class*="col-"] {
            padding-left: 0.375rem;
            padding-right: 0.375rem;
        }
        
        .hero-section {
            padding-top: 70px;
            min-height: auto;
            height: auto;
            padding-bottom: 3rem;
        }
        
        .hero-content {
            padding: 2rem 0;
        }
        
        .hero-text-col {
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .hero-buttons-col {
            text-align: center;
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            width: 100%;
        }
        
        .hero-small-line {
            font-size: 2.1rem;
            margin-bottom: 1rem;
            text-align: center;
            width: 100%;
        }
        
        .hero-paragraph {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
            text-align: center;
            padding: 0 0.25rem;
            max-width: 95%;
            width: 95%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        
        .hero-buttons .btn {
            flex: 1;
            min-width: 130px;
            max-width: 160px;
            padding: 0.85rem 1.25rem;
            font-size: 0.9rem;
        }
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .job-application-form-premium {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Loading States
   ============================================ */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

/* ============================================
   Footer - Clean & Simple Design
   ============================================ */
.site-footer-advanced {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    padding: 3.5rem 0 1.5rem;
    background: #fafafa;
    color: var(--text-dark);
    border-top: 1px solid rgba(59, 55, 139, 0.08);
}

.footer-background-wrapper {
    display: none;
}

.footer-logo-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.footer-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .footer-logo {
        max-height: 45px;
    }
}

.footer-content-row {
    position: relative;
}

.footer-section {
    padding: 0;
    margin-bottom: 2rem;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-section-title i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-method-item {
    background: transparent;
    border: none;
    padding: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-item:hover {
    transform: translateY(-2px);
}

.payment-logo {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.payment-method-item:hover .payment-logo {
    opacity: 1;
}

.footer-link-item {
    margin-top: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-link i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
}

.contact-info-item:hover {
    transform: none;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.2s ease;
    width: 100%;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-info-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.contact-info-item-full {
    grid-column: 1 / -1;
}

/* Legacy contact info list */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(59, 55, 139, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-link[href*="facebook"]:hover {
    background: #1877f2 !important;
}

.footer-social-link[href*="x.com"]:hover,
.footer-social-link[href*="twitter"]:hover,
.footer-social-link.social-x:hover {
    background: #000000 !important;
}

.footer-social-link[href*="youtube"]:hover {
    background: #ff0000 !important;
}

.footer-social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.footer-social-link[href*="whatsapp"]:hover {
    background: #25d366 !important;
}

.footer-social-link[href*="linkedin"]:hover {
    background: #0077b5 !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
}

@media (max-width: 767px) {
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Footer Accreditations */
.footer-accreditations {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 55, 139, 0.1);
}

.accreditation-items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.accreditation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.accreditation-item:hover {
    transform: translateY(-2px);
}

.accreditation-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

.accreditation-number {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 576px) {
    .accreditation-items {
        gap: 2rem;
    }
    .accreditation-logo {
        max-height: 55px;
    }
}

.footer-copyright,
.footer-credit {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Offices Section */
.footer-offices-intro {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.offices-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.office-item {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid rgba(59, 55, 139, 0.1);
    border-radius: 6px;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 400;
    text-align: center;
    transition: all 0.2s ease;
    cursor: default;
}

.office-item:hover {
    background: rgba(59, 55, 139, 0.05);
    border-color: rgba(169, 128, 253, 0.3);
    color: var(--primary-color);
}

/* ============================================
   About Us Page - Premium Design
   ============================================ */
.about-page {
    overflow-x: hidden;
    width: 100%;
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.about-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-sep .bi {
    font-size: 0.85rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.about-hero-title-wrapper {
    margin-bottom: 2rem;
}

.about-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.about-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

/* About Story Section */
/* How Our Story Began Section */
.how-story-began-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.how-story-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.how-story-image-box {
    position: relative;
    height: 100%;
    background: transparent;
    border-radius: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(59, 55, 139, 0.15);
}

.how-story-image-box .how-story-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    z-index: 0;
    opacity: 1;
}

.how-story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 20, 27, 0.05), rgba(169, 128, 253, 0.05));
    border-radius: 28px;
    z-index: 1;
    pointer-events: none;
}

.how-story-content {
    padding: 2.5rem 0;
}

.how-story-header {
    margin-bottom: 2.5rem;
}

.how-story-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 20px rgba(59, 55, 139, 0.25);
}

.how-story-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}

.how-story-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-top: 1rem;
}

.how-story-body {
    margin-bottom: 0;
}

.how-story-body p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: right;
    direction: rtl;
}

.how-story-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .how-story-began-section {
        padding: 5rem 0;
    }
    
    .how-story-image-container {
        min-height: 400px;
        margin-bottom: 3rem;
    }
    
    .how-story-image-box {
        min-height: 400px;
    }
    
    .how-story-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .how-story-began-section {
        padding: 4rem 0;
    }
    
    .how-story-image-container {
        min-height: 300px;
    }
    
    .how-story-image-box {
        min-height: 300px;
    }
    
    .how-story-heading {
        font-size: 1.75rem;
    }
    
    .how-story-body p {
        font-size: 1rem;
    }
}

.about-story-section {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
}

.story-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.story-image-box {
    position: relative;
    height: 100%;
    background: transparent;
    border-radius: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}

.story-image-box .story-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    z-index: 0;
    opacity: 1;
}

.story-image-overlay {
    display: none;
}

.story-year-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.35);
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.story-year-badge .year-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.story-year-badge .year-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.95;
}

.story-location-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 3;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.story-location-badge i,
.story-location-badge .bi {
    color: var(--primary-color);
    font-size: 1.35rem;
    display: inline-block;
}

.story-location-badge span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.story-content {
    padding: 2.5rem 0;
}

.story-header {
    margin-bottom: 2.5rem;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 20px rgba(59, 55, 139, 0.25);
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.story-body {
    margin-bottom: 3rem;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.75rem;
    line-height: 1.9;
}

.story-body p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.story-numbers {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.number-item {
    text-align: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.06), rgba(169, 128, 253, 0.06));
    border-radius: 20px;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(59, 55, 139, 0.08);
}

.number-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.2);
    border-color: var(--primary-color);
}

.number-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.number-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Vision & Mission Section */
.vision-mission-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.vm-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 55, 139, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(169, 128, 253, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.vm-box {
    height: 100%;
}

.vm-box-content {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 4rem 3.5rem;
    height: 100%;
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.12);
    border: 1px solid rgba(59, 55, 139, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vm-box-content:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(59, 55, 139, 0.18);
}

.vm-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.3);
}

.vm-icon-box i,
.vm-icon-box .bi {
    font-size: 2.25rem;
    color: white;
    display: inline-block;
}

.vm-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.vm-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.vm-description {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

/* Goal box styling to match vm-box */
.vm-box.goal-box .vm-box-content {
    text-align: center;
}

.vm-box.goal-box .vm-icon-box {
    margin-left: auto;
    margin-right: auto;
}

.vm-box.goal-box .vm-line {
    margin-left: auto;
    margin-right: auto;
}

/* Values box styling - same as vision and mission */
.vm-box.values-box .vm-box-content {
    text-align: right;
    direction: rtl;
}

.vm-box.values-box .vm-icon-box {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vm-box.values-box .vm-line {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Values now use same style as vision and mission */
.values-box .vm-description {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: right;
}

.values-box .vm-description:last-child {
    margin-bottom: 0;
}

/* LTR alignment for Values box in English version */
[dir="ltr"] .vm-box.values-box .vm-box-content {
    text-align: left !important;
    direction: ltr !important;
}

[dir="ltr"] .values-box .vm-description {
    text-align: left !important;
}

[dir="ltr"] .vm-box.values-box .vm-line {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Main Goal Section */
.main-goal-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.goal-wrapper {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.04), rgba(169, 128, 253, 0.04));
    border-radius: 28px;
    border: 1px solid rgba(59, 55, 139, 0.1);
    position: relative;
}

.goal-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.35);
}

.goal-icon-wrapper i,
.goal-icon-wrapper .bi {
    font-size: 2.5rem;
    color: white;
    display: inline-block;
}

.goal-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.goal-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.goal-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 2.1;
}

/* Goals Section */
.goals-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.goals-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 55, 139, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 128, 253, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    box-shadow: 0 5px 20px rgba(59, 55, 139, 0.25);
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.goals-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.goal-item {
    height: 100%;
}

.goal-item-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.1);
    border: 1px solid rgba(59, 55, 139, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.goal-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(59, 55, 139, 0.18);
    border-color: rgba(59, 55, 139, 0.15);
}

.goal-item-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(59, 55, 139, 0.06);
    line-height: 1;
}

.goal-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.12), rgba(169, 128, 253, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.goal-item-card:hover .goal-item-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.goal-item-icon i,
.goal-item-icon .bi {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    display: inline-block;
}

.goal-item-card:hover .goal-item-icon i {
    color: white;
}

.goal-item-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.goal-item-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.goal-item-card:hover .goal-item-line {
    width: 80px;
}

/* Goals responsive */
@media (max-width: 1400px) {
    .goals-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .goals-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .goals-list {
        grid-template-columns: 1fr;
    }
}

/* Offices Section */
.offices-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.offices-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.office-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.04), rgba(169, 128, 253, 0.04));
    border: 1px solid rgba(59, 55, 139, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    gap: 0.75rem;
}

.office-card:hover {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.18);
}

.office-card i,
.office-card .bi {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: inline-block;
}

.office-card span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.office-card.office-main {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.office-card.office-main:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-6px);
}

.office-card.office-main i,
.office-card.office-main span {
    color: white;
}

.office-main-tag {
    font-size: 0.75rem !important;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Values Section */
.values-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.values-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 55, 139, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(169, 128, 253, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-item {
    height: 100%;
}

.value-item-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.1);
    border: 1px solid rgba(59, 55, 139, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.value-item-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 65px rgba(59, 55, 139, 0.18);
}

.value-item-card.value-primary .value-item-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(59, 55, 139, 0.85));
}

.value-item-card.value-secondary .value-item-icon {
    background: linear-gradient(135deg, var(--secondary-color), rgba(169, 128, 253, 0.85));
}

.value-item-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(59, 55, 139, 0.25);
}

.value-item-icon i,
.value-item-icon .bi {
    font-size: 2rem;
    color: white;
    display: inline-block;
}

.value-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-item-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.value-item-card:hover .value-item-line {
    width: 80px;
}

/* Target Categories Section */
/* Why Aromh Section */
.why-aromh-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 2;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    direction: rtl;
}

.why-item-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.08);
    border: 1px solid rgba(59, 55, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: right;
    direction: rtl;
}

.why-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
    border-color: var(--primary-color);
}

.why-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.2);
}

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

.why-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.why-item-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

/* Methodology Section */
.methodology-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.methodology-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(59, 55, 139, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(169, 128, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.methodology-steps {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.methodology-step-item {
    margin-bottom: 0;
}

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

.methodology-step-card {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.1);
    border: 1px solid rgba(59, 55, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: right;
    direction: rtl;
}

.methodology-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.methodology-step-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.methodology-step-card:hover::before {
    opacity: 1;
}

.methodology-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.75rem;
    font-weight: 900;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.methodology-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    border-radius: 12px;
    margin-bottom: 1.25rem;
    margin-left: 1rem;
}

.methodology-step-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.methodology-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.methodology-step-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 2;
    margin: 0;
}

.methodology-footer {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.methodology-footer-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2;
    font-weight: 500;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.04), rgba(169, 128, 253, 0.04));
    border-radius: 20px;
    border-right: 4px solid var(--primary-color);
    text-align: right;
    direction: rtl;
}

@media (max-width: 991px) {
    .why-aromh-section,
    .methodology-section {
        padding: 5rem 0;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-step-item {
        margin-bottom: 0;
    }
    
    .methodology-step-card {
        padding: 2.5rem;
    }
    
    .methodology-footer-text {
        padding: 1.5rem 2rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .why-aromh-section,
    .methodology-section {
        padding: 4rem 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-item-card {
        padding: 2rem;
    }
    
    .why-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-item-icon i {
        font-size: 1.75rem;
    }
    
    .why-item-title {
        font-size: 1.2rem;
    }
    
    .methodology-step-card {
        padding: 2rem;
    }
    
    .methodology-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .methodology-step-title {
        font-size: 1.3rem;
    }
    
    .methodology-step-description {
        font-size: 1rem;
    }
    
    .methodology-footer-text {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.target-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.target-item {
    background: white;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.1);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.target-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(59, 55, 139, 0.18);
}

.target-item.target-government {
    border-color: rgba(59, 55, 139, 0.12);
}

.target-item.target-government:hover {
    border-color: var(--primary-color);
}

.target-item.target-government .target-item-icon {
    background: linear-gradient(135deg, var(--primary-color), rgba(59, 55, 139, 0.85));
}

.target-item.target-private {
    border-color: rgba(169, 128, 253, 0.12);
}

.target-item.target-private:hover {
    border-color: var(--secondary-color);
}

.target-item.target-private .target-item-icon {
    background: linear-gradient(135deg, var(--secondary-color), rgba(169, 128, 253, 0.85));
}

.target-item.target-nonprofit {
    border-color: rgba(59, 55, 139, 0.12);
}

.target-item.target-nonprofit:hover {
    border-color: var(--primary-color);
}

.target-item.target-nonprofit .target-item-icon {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.9), var(--secondary-color));
}

.target-item.target-individuals {
    border-color: rgba(169, 128, 253, 0.12);
}

.target-item.target-individuals:hover {
    border-color: var(--secondary-color);
}

.target-item.target-individuals .target-item-icon {
    background: linear-gradient(135deg, var(--secondary-color), rgba(169, 128, 253, 0.9));
}

.target-item-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.target-item-icon i,
.target-item-icon .bi {
    font-size: 2.25rem;
    color: white;
    display: inline-block;
}

.target-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.target-item-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.target-item-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.target-item:hover .target-item-decoration {
    transform: scaleX(1);
}

/* CTA Section */
.about-cta-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(59, 55, 139, 0.7), rgba(169, 128, 253, 0.7)),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.cta-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.15rem 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-btn i,
.cta-btn .bi {
    font-size: 1.2rem;
    display: inline-block;
}

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

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: var(--primary-color);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-4px);
    color: white;
}

/* About Page Responsive */
@media (max-width: 1199px) {
    .about-hero {
        margin-top: 105px;
        padding: 8rem 0 5rem;
    }
    
    .about-hero-title {
        font-size: 4rem;
    }
    
    .goals-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .values-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    
    .offices-list {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .office-card.office-main {
        grid-column: span 2;
    }
    
    .story-numbers {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .about-hero {
        margin-top: 100px;
        padding: 7rem 0 4.5rem;
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-story-section,
    .vision-mission-section,
    .main-goal-section,
    .goals-section,
    .offices-section,
    .values-section,
    .target-section,
    .about-cta-section {
        padding: 5rem 0;
    }
    
    .story-image-box {
        min-height: 400px;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .story-year-badge {
        top: 2rem;
        right: 2rem;
        padding: 1.5rem;
    }
    
    .story-year-badge .year-number {
        font-size: 2.5rem;
    }
    
    .story-location-badge {
        bottom: 2rem;
        left: 2rem;
        padding: 1rem 1.5rem;
    }
    
    .story-heading {
        font-size: 2.2rem;
    }
    
    .story-intro {
        font-size: 1.1rem;
    }
    
    .vm-box-content {
        padding: 3rem 2.5rem;
    }
    
    .vm-icon-box {
        width: 80px;
        height: 80px;
    }
    
    .vm-icon-box i,
    .vm-icon-box .bi {
        font-size: 2rem;
    }
    
    .vm-heading {
        font-size: 1.75rem;
    }
    
    .goal-wrapper {
        padding: 4rem 3rem;
    }
    
    .goal-icon-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .goal-icon-wrapper i,
    .goal-icon-wrapper .bi {
        font-size: 2.25rem;
    }
    
    .goal-heading {
        font-size: 2.2rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .goals-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .office-card.office-main {
        grid-column: span 3;
    }
    
    .values-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-item-card {
        padding: 2rem 1.75rem;
    }
    
    .value-item-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-item-icon i,
    .value-item-icon .bi {
        font-size: 1.75rem;
    }
    
    .target-item {
        padding: 2.5rem 2rem;
    }
    
    .target-item-icon {
        width: 80px;
        height: 80px;
    }
    
    .target-item-icon i,
    .target-item-icon .bi {
        font-size: 2rem;
    }
    
    .cta-heading {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .about-hero {
        margin-top: 90px;
        padding: 6rem 0 3.5rem;
        min-height: 350px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-label {
        font-size: 1.3rem;
    }
    
    .about-breadcrumb {
        font-size: 0.9rem;
        gap: 0.6rem;
        margin-bottom: 2rem;
    }
    
    .about-story-section,
    .vision-mission-section,
    .main-goal-section,
    .goals-section,
    .offices-section,
    .values-section,
    .target-section,
    .about-cta-section {
        padding: 4rem 0;
    }
    
    .story-image-box {
        min-height: 350px;
        padding: 1.75rem;
    }
    
    .story-year-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 1.25rem;
    }
    
    .story-year-badge .year-number {
        font-size: 2rem;
    }
    
    .story-year-badge .year-label {
        font-size: 0.8rem;
    }
    
    .story-location-badge {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-location-badge span {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .story-heading {
        font-size: 2rem;
    }
    
    .story-intro {
        font-size: 1.05rem;
    }
    
    .story-body p {
        font-size: 1rem;
    }
    
    .story-numbers {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .number-item {
        min-width: 120px;
        padding: 1.75rem 1.5rem;
    }
    
    .number-value {
        font-size: 2rem;
    }
    
    .vm-box-content {
        padding: 2.5rem 2rem;
    }
    
    .vm-heading {
        font-size: 1.5rem;
    }
    
    .vm-description {
        font-size: 1rem;
    }
    
    .goal-wrapper {
        padding: 3rem 2rem;
    }
    
    .goal-heading {
        font-size: 2rem;
    }
    
    .goal-description {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .goals-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .goal-item-card {
        padding: 2rem 1.75rem;
    }
    
    .goal-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .goal-item-icon i,
    .goal-item-icon .bi {
        font-size: 1.5rem;
    }
    
    .goal-item-number {
        font-size: 3rem;
    }
    
    .offices-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .office-card {
        padding: 1.25rem 1rem;
    }
    
    .office-card.office-main {
        grid-column: span 2;
    }
    
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-item-card {
        padding: 2rem 1.5rem;
    }
    
    .value-item-icon {
        width: 65px;
        height: 65px;
    }
    
    .value-item-icon i,
    .value-item-icon .bi {
        font-size: 1.6rem;
    }
    
    .value-item-title {
        font-size: 1rem;
    }
    
    .target-item {
        padding: 2rem 1.75rem;
    }
    
    .target-item-title {
        font-size: 1.2rem;
    }
    
    .target-item-description {
        font-size: 0.95rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        margin-top: 85px;
        padding: 5rem 0 3rem;
        min-height: 300px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-label {
        font-size: 1.1rem;
    }
    
    .about-breadcrumb {
        font-size: 0.85rem;
    }
    
    .story-image-box {
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .story-year-badge {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .story-year-badge .year-number {
        font-size: 1.75rem;
    }
    
    .story-year-badge .year-label {
        font-size: 0.75rem;
    }
    
    .story-location-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .story-heading {
        font-size: 1.75rem;
    }
    
    .story-numbers {
        gap: 1rem;
    }
    
    .number-item {
        min-width: 100px;
        padding: 1.5rem 1.25rem;
    }
    
    .number-value {
        font-size: 1.75rem;
    }
    
    .number-label {
        font-size: 0.8rem;
    }
    
    .vm-box-content {
        padding: 2rem 1.75rem;
    }
    
    .vm-heading {
        font-size: 1.35rem;
    }
    
    .goal-wrapper {
        padding: 2.5rem 1.75rem;
    }
    
    .goal-heading {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-tag {
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem;
    }
    
    .offices-list {
        grid-template-columns: 1fr;
    }
    
    .office-card.office-main {
        grid-column: span 1;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
}

/* ============================================
   Solutions Page V2 - Premium Design
   ============================================ */
.solutions-page-v2 {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Bootstrap Icons */
.solutions-page-v2 .bi,
.solutions-page-v2 i.bi,
.solutions-page-v2 i[class*="bi-"] {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}

/* Solutions Hero */
.sol-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.sol-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sol-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

/* LTR centering for Solutions Hero Banner in English version */
[dir="ltr"] .sol-hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

[dir="ltr"] .sol-hero-title-wrapper {
    text-align: center !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

[dir="ltr"] .sol-hero-title {
    text-align: center !important;
    width: 100% !important;
}

[dir="ltr"] .sol-hero-label {
    text-align: center !important;
    width: 100% !important;
}

[dir="ltr"] .sol-breadcrumb {
    justify-content: center !important;
    width: 100% !important;
}

[dir="ltr"] .sol-quick-nav {
    justify-content: center !important;
    width: 100% !important;
}

.sol-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.sol-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sol-breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-sep .bi {
    font-size: 0.85rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.sol-hero-title-wrapper {
    margin-bottom: 2rem;
}

.sol-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.sol-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.sol-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

/* Quick Nav */
.sol-quick-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.sol-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border: 2px solid rgba(211, 20, 27, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 140px;
}

.sol-nav-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(211, 20, 27, 0.15);
}

.sol-nav-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.training-nav .sol-nav-icon { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.consulting-nav .sol-nav-icon { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); }
.assessment-nav .sol-nav-icon { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.innovation-nav .sol-nav-icon { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)); }

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

/* Scroll Indicator */
.sol-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.sol-hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sol-hero-scroll a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Solution Sections */
.sol-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.sol-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 0;
}

.sol-section-bg.alt {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.sol-section-wrapper {
    position: relative;
    z-index: 1;
}

/* Image Container */
.sol-image-container {
    position: relative;
    padding: 2rem;
}

.sol-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(59, 55, 139, 0.2);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    min-height: 300px;
}

.sol-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(59, 55, 139, 0.05);
    transition: transform 0.6s ease, opacity 0.3s ease;
    opacity: 1;
}

/* Ensure images are properly displayed */
.sol-image[style*="background-image"] {
    opacity: 1;
}

/* Image optimization */
.sol-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.sol-image-box:hover .sol-image {
    transform: scale(1.08);
}

.sol-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.3) 0%, rgba(169, 128, 253, 0.2) 100%);
    z-index: 1;
}

.sol-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(59, 55, 139, 0.08);
    line-height: 1;
    z-index: 0;
    font-family: 'Arial', sans-serif;
}

.sol-floating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.4);
    z-index: 5;
}

.sol-floating-badge.consulting-badge { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); }
.sol-floating-badge.assessment-badge { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.sol-floating-badge.innovation-badge { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)); }

.sol-floating-badge i {
    font-size: 1.25rem;
}

.sol-floating-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Content */
.sol-content {
    padding: 1rem 0;
}

.sol-content-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.sol-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.training-bg { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); }
.consulting-bg { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); }
.assessment-bg { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.innovation-bg { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)); }

.sol-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sol-label:empty {
    display: none;
}

.sol-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sol-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    margin-bottom: 2rem;
}

.consulting-divider { background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light)); }
.assessment-divider { background: linear-gradient(90deg, var(--primary-dark), var(--primary-color)); }
.innovation-divider { background: linear-gradient(90deg, var(--secondary-dark), var(--secondary-color)); }

.sol-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.sol-highlight {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.06), rgba(169, 128, 253, 0.06));
    border-radius: 16px;
    border-right: 4px solid var(--primary-color);
}

/* Features */
.sol-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Grid layout for Training and Assessment sections */
.sol-training .sol-features,
.sol-assessment .sol-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Better width for Assessment feature groups */
.sol-assessment .sol-feature-group {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sol-feature-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.sol-feature-group:last-child {
    margin-bottom: 0;
}

/* Grid layout for features within groups on desktop */
@media (min-width: 992px) {
    .sol-training .sol-feature-group,
    .sol-assessment .sol-feature-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Create grid wrapper for features only (not title/desc) */
    .sol-training .sol-feature-group .sol-feature-group-title,
    .sol-assessment .sol-feature-group .sol-feature-group-title {
        grid-column: 1 / -1;
        margin-bottom: 0.75rem;
    }
    
    .sol-training .sol-feature-group .sol-feature-group-desc,
    .sol-assessment .sol-feature-group .sol-feature-group-desc {
        grid-column: 1 / -1;
        margin-bottom: 0.75rem;
    }
    
    /* Make features display in grid */
    .sol-training .sol-feature-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        align-content: start;
    }
    
    .sol-training .sol-feature-group .sol-feature {
        margin-bottom: 0;
    }
    
    /* Assessment feature groups - keep as flex column, no nested grid */
    .sol-assessment .sol-feature-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sol-assessment .sol-feature-group .sol-feature {
        margin-bottom: 0;
        width: 100%;
    }
}

.sol-feature-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 55, 139, 0.1);
}

.sol-feature-group-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: right;
    direction: rtl;
}

.sol-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    text-align: right;
    direction: rtl;
}

.sol-feature:last-child {
    margin-bottom: 0;
}

.sol-feature:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.12);
}

.sol-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.sol-feature span {
    flex: 1;
    line-height: 1.7;
}

.sol-feature span strong {
    color: var(--text-dark);
    font-weight: 700;
}

.sol-feature span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Button */
.sol-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.15rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.35);
}

.sol-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 55, 139, 0.45);
    color: white;
}

.sol-cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sol-cta-btn:hover i {
    transform: translateX(-5px);
}

.consulting-btn { background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light)); box-shadow: 0 15px 40px rgba(169, 128, 253, 0.35); }
.consulting-btn:hover { box-shadow: 0 20px 50px rgba(169, 128, 253, 0.45); }
.assessment-btn { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); box-shadow: 0 15px 40px rgba(59, 55, 139, 0.35); }
.assessment-btn:hover { box-shadow: 0 20px 50px rgba(59, 55, 139, 0.45); }
.innovation-btn { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color)); box-shadow: 0 15px 40px rgba(169, 128, 253, 0.35); }
.innovation-btn:hover { box-shadow: 0 20px 50px rgba(169, 128, 253, 0.45); }

/* Solution CTA Buttons Container */
.sol-content .sol-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Outline Button Style */
.sol-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.15rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sol-cta-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.35);
}

.sol-cta-btn-outline i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.sol-cta-btn-outline:hover i {
    transform: translateX(-5px);
}

.training-btn-outline { border-color: var(--primary-color); color: var(--primary-color); }
.training-btn-outline:hover { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-color: transparent; }

/* CTA Section */
.sol-cta-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.sol-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.sol-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sol-cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.sol-cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.sol-cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
}

.sol-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

.sol-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sol-cta-btn-main,
.sol-cta-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.15rem 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sol-cta-btn-main {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.sol-cta-btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: var(--primary-color);
}

.sol-cta-btn-alt {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.sol-cta-btn-alt:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Training Partners Section */
.training-partners-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.partner-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.1);
    border: 1px solid rgba(59, 55, 139, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: right;
    direction: rtl;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(59, 55, 139, 0.15);
    border-color: var(--primary-color);
}

.partner-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(59, 55, 139, 0.1);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.partner-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

.partner-benefits {
    margin-top: 1.5rem;
}

.partner-benefits-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partner-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partner-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.04), rgba(169, 128, 253, 0.04));
    border-radius: 10px;
    border-right: 3px solid var(--primary-color);
}

.partner-benefits-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.partner-benefits-list li span {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    flex: 1;
}

.partners-cta {
    margin-top: 4rem;
    text-align: center;
}

.partners-cta-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.04), rgba(169, 128, 253, 0.04));
    border-radius: 20px;
    border-right: 4px solid var(--primary-color);
    text-align: right;
    direction: rtl;
}

@media (max-width: 991px) {
    .training-partners-section {
        padding: 5rem 0;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .partner-name {
        font-size: 1.3rem;
    }
    
    .partners-cta-text {
        padding: 1.5rem 2rem;
        font-size: 1.05rem;
    }
    
    /* Make features single column on tablet */
    .sol-training .sol-features,
    .sol-assessment .sol-features {
        grid-template-columns: 1fr;
    }
    
    .sol-training .sol-feature-group,
    .sol-assessment .sol-feature-group {
        display: flex;
        flex-direction: column;
    }
    
    .sol-training .sol-feature-group .sol-feature,
    .sol-assessment .sol-feature-group .sol-feature {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 767px) {
    .training-partners-section {
        padding: 4rem 0;
    }
    
    .sol-features {
        gap: 1.5rem;
    }
    
    .sol-feature-group-title {
        font-size: 1.1rem;
    }
    
    .partner-card {
        padding: 1.75rem;
    }
    
    .partner-name {
        font-size: 1.2rem;
    }
    
    .partner-description {
        font-size: 1rem;
    }
    
    .partners-cta-text {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .sol-hero-title {
        font-size: 3.5rem;
    }
    
    .sol-title {
        font-size: 3rem;
    }
    
    .sol-section {
        padding: 6rem 0;
    }
    
    .sol-number {
        font-size: 8rem;
    }
}

@media (max-width: 991px) {
    .sol-hero {
        min-height: auto;
        padding: 12rem 0 6rem;
    }
    
    .sol-hero-title {
        font-size: 3rem;
    }
    
    .sol-hero-title {
        font-size: 3.5rem;
    }
    
    .sol-hero-label {
        font-size: 1.3rem;
    }
    
    .sol-nav-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .sol-section {
        padding: 5rem 0;
    }
    
    .sol-image-container {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .sol-image-box {
        min-height: 280px;
    }
    
    .sol-image {
        background-size: cover;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    
    .sol-number {
        font-size: 6rem;
        top: -0.5rem;
        right: 0;
    }
    
    .sol-title {
        font-size: 2.5rem;
    }
    
    .sol-features {
        grid-template-columns: 1fr;
    }
    
    .sol-cta-title {
        font-size: 2.25rem;
    }
}

/* Comprehensive Responsive Styles for All Hero Sections */
@media (max-width: 1199px) {
    .training-hero-title,
    .consulting-hero-title,
    .assessment-hero-title,
    .innovation-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .training-hero,
    .consulting-hero,
    .assessment-hero,
    .innovation-hero {
        min-height: auto;
        padding: 10rem 0 5rem;
    }
    
    .training-hero-title,
    .consulting-hero-title,
    .assessment-hero-title,
    .innovation-hero-title {
        font-size: 3rem;
    }
    
    .training-hero-label,
    .consulting-hero-label,
    .assessment-hero-label,
    .innovation-hero-label {
        font-size: 1.3rem;
    }
    
    .consulting-types-badges {
        gap: 0.75rem;
    }
    
    .consulting-type-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .sol-hero {
        padding: 10rem 0 5rem;
    }
    
    .sol-hero-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }
    
    .sol-hero-title {
        font-size: 2.25rem;
    }
    
    .sol-hero-title {
        font-size: 2.5rem;
    }
    
    .sol-hero-label {
        font-size: 1.1rem;
    }
    
    .sol-quick-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sol-nav-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 1rem;
        min-width: auto;
    }
    
    .sol-hero-scroll {
        display: none;
    }
    
    /* Mobile Responsive for All Hero Sections */
    .training-hero,
    .consulting-hero,
    .assessment-hero,
    .innovation-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .training-hero-title,
    .consulting-hero-title,
    .assessment-hero-title,
    .innovation-hero-title {
        font-size: 2.25rem;
    }
    
    .training-hero-label,
    .consulting-hero-label,
    .assessment-hero-label,
    .innovation-hero-label {
        font-size: 1.1rem;
    }
    
    .training-breadcrumb,
    .consulting-breadcrumb,
    .assessment-breadcrumb,
    .innovation-breadcrumb {
        font-size: 0.85rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .consulting-types-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .consulting-type-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        width: auto;
    }
    
    .sol-section {
        padding: 4rem 0;
    }
    
    .sol-image-box {
        aspect-ratio: 16/10;
        min-height: 250px;
    }
    
    .sol-image {
        background-size: cover;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    
    .sol-number {
        font-size: 5rem;
    }
    
    .sol-floating-badge {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .sol-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .sol-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .sol-title {
        font-size: 2rem;
    }
    
    .sol-description {
        font-size: 1.05rem;
    }
    
    .sol-highlight {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .sol-cta-btn,
    .sol-cta-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .sol-content .sol-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sol-cta-title {
        font-size: 2rem;
    }
    
    .sol-cta-text {
        font-size: 1rem;
    }
    
    .sol-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sol-cta-btn-main,
    .sol-cta-btn-alt {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sol-hero {
        padding: 9rem 0 4rem;
    }
    
    .sol-hero-title {
        font-size: 1.85rem;
    }
    
    .sol-hero-title {
        font-size: 3rem;
    }
    
    .sol-hero-label {
        font-size: 1.25rem;
    }
    
    .sol-breadcrumb {
        font-size: 0.85rem;
    }
    
    .sol-image-box {
        min-height: 220px;
        aspect-ratio: 16/9;
    }
    
    .sol-image {
        background-size: cover;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
    }
    
    .sol-number {
        font-size: 4rem;
    }
    
    .sol-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .sol-title {
        font-size: 1.75rem;
    }
    
    .sol-divider {
        width: 60px;
    }
    
    .sol-feature {
        padding: 0.75rem 1rem;
    }
    
    .sol-feature span {
        font-size: 0.9rem;
    }
    
    .sol-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .sol-cta-icon i {
        font-size: 2rem;
    }
    
    .sol-cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   Innovation Labs Page V2 - Complete Rework
   ============================================ */

.innovation-labs-page-v2 {
    overflow-x: hidden;
}

/* Innovation Hero Section */
.innovation-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.innovation-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.innovation-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.innovation-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.innovation-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.innovation-breadcrumb a:hover {
    color: var(--primary-color);
}

.innovation-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(169, 128, 253, 0.3);
}

.innovation-hero-badge i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.innovation-hero-title-wrapper {
    margin-bottom: 2rem;
}

.innovation-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.innovation-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.innovation-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.innovation-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.innovation-hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.innovation-hero-scroll a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Why Innovation Section */
.innovation-why-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.innovation-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.innovation-section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.2);
}

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

.innovation-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.innovation-section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.innovation-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.innovation-reason-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.innovation-reason-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.25);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.reason-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.innovation-reason-card:hover .reason-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(169, 128, 253, 0.4);
}

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

.reason-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.reason-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.innovation-reason-card:hover .reason-decoration {
    transform: scaleX(1);
}

/* Background number for reason cards - Direct HTML element */
.reason-number {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    font-size: 6rem !important;
    font-weight: 900 !important;
    color: rgba(59, 55, 139, 0.08) !important;
    line-height: 1 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    font-family: var(--font-primary) !important;
    letter-spacing: -3px !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

/* What We Do Section */
.innovation-what-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.innovation-what-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(169, 128, 253, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 55, 139, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.innovation-what-section .innovation-section-header {
    position: relative;
    z-index: 2;
}

.innovation-what-section .innovation-section-title {
    color: white;
}

.innovation-what-section .innovation-section-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.innovation-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.innovation-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.innovation-service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 1);
}

.innovation-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-number {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    font-size: 6rem !important;
    font-weight: 900 !important;
    color: rgba(59, 55, 139, 0.08) !important;
    line-height: 1 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    font-family: var(--font-primary) !important;
    letter-spacing: -3px !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.innovation-service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(169, 128, 253, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 2;
}


/* Responsive Design */
@media (max-width: 991px) {
    .innovation-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .innovation-hero-title {
        font-size: 3.5rem;
    }
    
    .innovation-hero-label {
        font-size: 1.3rem;
    }
    
    .innovation-reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .innovation-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .innovation-why-section,
    .innovation-what-section,
    .innovation-request-section {
        padding: 5rem 0;
    }
    
    .innovation-section-title {
        font-size: 2.5rem;
    }
    
}


/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 767px) {
    .innovation-hero-title {
        font-size: 2.5rem;
    }
    
    .innovation-hero-label {
        font-size: 1.1rem;
    }
    
    .innovation-section-title {
        font-size: 2rem;
    }
    
    .innovation-reason-card,
    .innovation-service-card {
        padding: 2rem 1.5rem;
    }
    
    .request-title {
        font-size: 2rem;
    }
}

/* ============================================
   Innovation Labs V2 - Complete New Design
   ============================================ */

/* Simple Hero Section */
.innovation-hero-simple {
    position: relative;
    padding: 6rem 0 4rem;
    margin-top: 110px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-simple-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-breadcrumb-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-breadcrumb-simple a:hover {
    color: white;
}

.hero-breadcrumb-simple i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.hero-title-simple {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-simple {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .innovation-hero-simple {
        padding: 5rem 0 3rem;
    }
    
    .hero-title-simple {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Hero Section V2 - Keep for backward compatibility */
.innovation-hero-v2 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    margin-top: 110px;
    background: linear-gradient(135deg, #3B378B 0%, #A980FD 50%, #3B378B 100%);
    overflow: hidden;
}

.innovation-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(169, 128, 253, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(59, 55, 139, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

.innovation-hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.innovation-hero-particles .particle:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.innovation-hero-particles .particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 3s;
}

.innovation-hero-particles .particle:nth-child(3) {
    top: 40%;
    left: 20%;
    animation-delay: 6s;
}

.innovation-hero-particles .particle:nth-child(4) {
    bottom: 30%;
    right: 50%;
    animation-delay: 9s;
}

.innovation-hero-particles .particle:nth-child(5) {
    top: 80%;
    left: 10%;
    animation-delay: 12s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(30px, -50px);
        opacity: 1;
    }
}

.innovation-hero-content-v2 {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero-breadcrumb-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-breadcrumb-v2 a:hover {
    color: white;
}

.hero-breadcrumb-v2 i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge-v2 i {
    font-size: 1.1rem;
}

.hero-title-v2 {
    margin-bottom: 2rem;
}

.hero-title-v2 .title-main {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-v2 .title-accent {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-v2 {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Why Innovation V2 */
.innovation-why-v2 {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon-v2 {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.25);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.section-header-v2:hover .section-icon-v2 {
    transform: rotate(0deg) scale(1.05);
}

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

.section-title-v2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-subtitle-v2 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0;
}

.reasons-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1400px) {
    .reasons-grid-v2 {
        gap: 3rem;
    }
}

.reason-card-v2 {
    background: white;
    padding: 3.5rem 3rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(59, 55, 139, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: 
        linear-gradient(135deg, rgba(169, 128, 253, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(59, 55, 139, 0.02) 0%, transparent 50%);
}

.reason-card-v2:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(59, 55, 139, 0.25);
    border-color: var(--secondary-color);
    background-image: 
        linear-gradient(135deg, rgba(169, 128, 253, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(59, 55, 139, 0.05) 0%, transparent 50%);
}

.card-number-v2 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(59, 55, 139, 0.05);
    line-height: 1;
    z-index: 0;
    font-family: var(--font-primary);
    letter-spacing: -5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.reason-card-v2:hover .card-number-v2 {
    opacity: 0.9;
}

.card-icon-v2 {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(59, 55, 139, 0.35);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.reason-card-v2:hover .card-icon-v2 {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(169, 128, 253, 0.5);
}

.card-icon-v2 i {
    font-size: 2.2rem;
    color: white;
}

.card-title-v2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Services Section V2 */
.innovation-services-v2 {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    overflow: hidden;
}

.services-bg-v2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(169, 128, 253, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 55, 139, 0.25) 0%, transparent 50%);
    z-index: 0;
}

.innovation-services-v2 .section-header-v2 {
    position: relative;
    z-index: 2;
}

.innovation-services-v2 .section-title-v2 {
    color: white;
}

.innovation-services-v2 .section-subtitle-v2 {
    color: rgba(255, 255, 255, 0.9);
}

.innovation-services-v2 .section-icon-v2 {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

@media (min-width: 1200px) {
    .services-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1600px) {
    .services-grid-v2 {
        gap: 3rem;
    }
}

.service-card-v2 {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 3.5rem 3rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.service-card-v2:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    border-color: var(--secondary-color);
    background: white;
    background-image: 
        linear-gradient(135deg, rgba(169, 128, 253, 0.03) 0%, transparent 50%);
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-num-v2 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(59, 55, 139, 0.05);
    line-height: 1;
    z-index: 0;
    font-family: var(--font-primary);
    letter-spacing: -5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.service-card-v2:hover .service-num-v2 {
    opacity: 0.9;
}

.service-icon-v2 {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(59, 55, 139, 0.35);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card-v2:hover .service-icon-v2 {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 20px 50px rgba(169, 128, 253, 0.5);
}

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

.service-title-v2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.service-desc-v2 {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 0.5rem;
}


/* Responsive V2 */
@media (max-width: 991px) {
    .innovation-hero-v2 {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title-v2 .title-main {
        font-size: 3.5rem;
    }
    
    .hero-title-v2 .title-accent {
        font-size: 2.5rem;
    }
    
    .hero-description-v2 {
        font-size: 1.1rem;
    }
    
    .reasons-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .innovation-why-v2,
    .innovation-services-v2 {
        padding: 4rem 0;
    }
    
    .section-title-v2 {
        font-size: 2.5rem;
    }
    
    .form-row-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-v2 {
        padding: 2.5rem 2rem;
    }
    
    .reason-card-v2,
    .service-card-v2 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-title-v2 .title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-v2 .title-accent {
        font-size: 2rem;
    }
    
    .hero-description-v2 {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title-v2 {
        font-size: 2rem;
    }
    
    
    .reason-card-v2,
    .service-card-v2 {
        padding: 2.5rem 2rem;
        min-height: auto;
    }
    
    .card-number-v2,
    .service-num-v2 {
        font-size: 6rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .card-icon-v2,
    .service-icon-v2 {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .card-title-v2,
    .service-title-v2 {
        font-size: 1.3rem;
        padding: 0 0.5rem;
    }
    
    .service-desc-v2 {
        font-size: 1rem;
        padding: 0;
    }
}

/* ============================================
   Assessment Page - Premium Design
   ============================================ */
.assessment-page {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Assessment Hero Section */
.assessment-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.assessment-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.assessment-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.assessment-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.assessment-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.assessment-breadcrumb a:hover {
    color: var(--primary-color);
}

.assessment-hero-title-wrapper {
    margin-bottom: 2rem;
}

.assessment-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.assessment-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.assessment-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.assessment-hero-title-wrapper {
    margin-bottom: 2rem;
}

.assessment-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.assessment-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.assessment-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.innovation-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.assessment-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.innovation-hero-title-wrapper {
    margin-bottom: 2rem;
}

.innovation-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.innovation-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.assessment-hero-title span {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assessment-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Assessment Intro Section */
.assessment-intro-section {
    padding: 6rem 0;
    background: white;
}

.intro-content {
    text-align: center;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: right;
    direction: rtl;
}

/* Talent Insights Section */
.talent-insights-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.talent-insights-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.talent-insights-image {
    position: relative;
}

.talent-image-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 0;
    min-height: 500px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.talent-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    z-index: 1;
}

.talent-image-placeholder {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.talent-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.talent-insights-content {
    padding: 2rem 0;
}

.talent-header {
    margin-bottom: 2rem;
}

.talent-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.talent-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.talent-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 2rem;
}

.talent-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.talent-features {
    margin-top: 2rem;
}

.talent-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.08);
    transition: all 0.3s ease;
}

.talent-feature-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.12);
}

.talent-feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.talent-feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* What is Talent Section */
.what-is-talent-section {
    padding: 6rem 0;
    background: white;
}

.what-is-content {
    text-align: center;
}

.what-is-header {
    margin-bottom: 2rem;
}

.what-is-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.what-is-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.what-is-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.what-is-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Methodology Section */
.methodology-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.methodology-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.methodology-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 3rem;
}

.methodology-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
}

.methodology-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(59, 55, 139, 0.05);
}

.methodology-tabs .nav-link.active {
    color: var(--primary-color);
    background: white;
    border-bottom: 3px solid var(--primary-color);
}

.methodology-content {
    min-height: 300px;
}

.methodology-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.15);
}

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

.methodology-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.methodology-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Outputs Section */
.outputs-section {
    padding: 6rem 0;
    background: white;
}

.output-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.output-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
}

.output-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.output-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.output-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.benefits-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    height: 100%;
}

.benefits-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.benefits-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.employee-benefits .benefits-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.organization-benefits .benefits-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.benefits-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.benefits-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefits-list li span {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.15);
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Report Components Section */
.report-components-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.report-components-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.component-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
}

.component-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.component-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.component-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Report Types Section */
.report-types-section {
    padding: 6rem 0;
    background: white;
}

.report-types-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.report-types-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.report-types-accordion .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.15);
}

.report-types-accordion .accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-types-accordion .accordion-button i {
    font-size: 1.2rem;
}

.report-types-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.report-types-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.report-types-accordion .accordion-body {
    padding: 2rem;
    background: #f8f9fa;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Uses Section */
.uses-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.uses-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.use-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.use-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
}

.use-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.use-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.use-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Report Features Section */
.report-features-section {
    padding: 6rem 0;
    background: white;
}

.feature-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Tools Section */
.tools-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tools-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.tools-content {
    text-align: center;
}

.tools-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tools-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tools-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.tools-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* How to Benefit Section */
.how-to-benefit-section {
    padding: 6rem 0;
    background: white;
}

.benefit-level-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.2);
}

.benefit-level-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.benefit-level-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.personal-level .benefit-level-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.professional-level .benefit-level-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.organizational-level .benefit-level-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.benefit-level-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

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

.benefit-level-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.benefit-level-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-level-list li span {
    flex: 1;
}

/* Hiring Improvement Section */
.hiring-improvement-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hiring-improvement-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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(59,55,139,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hiring-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hiring-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.hiring-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 35px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.hiring-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
}

.hiring-step-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.hiring-step-content:hover {
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.15);
}

.hiring-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.hiring-step-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--text-light);
    line-height: 1.8;
    padding-right: 1.5rem;
    position: relative;
}

.hiring-step-list li::before {
    content: '•';
    position: absolute;
    right: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Assessment CTA Section */
.assessment-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.assessment-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.assessment-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: 
        linear-gradient(135deg, rgba(59, 55, 139, 0.7), rgba(169, 128, 253, 0.7)),
        radial-gradient(circle at 25% 25%, rgba(169, 128, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 55, 139, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.assessment-cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

.assessment-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.assessment-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.assessment-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.assessment-cta-btn-primary,
.assessment-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.assessment-cta-btn-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.assessment-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.assessment-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
}

/* Additional Polish Styles */
.assessment-page section {
    position: relative;
    overflow: hidden;
}

.assessment-page .container {
    position: relative;
    z-index: 1;
}

/* Responsive Styles for Assessment Page */
@media (max-width: 991px) {
    .assessment-hero-title {
        font-size: 3rem;
    }
    
    .assessment-hero-label {
        font-size: 1.3rem;
    }
    
    .talent-title,
    .what-is-title,
    .section-heading,
    .tools-title {
        font-size: 2rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .talent-image-box {
        min-height: 400px;
        max-height: 500px;
        padding: 0;
        aspect-ratio: 3/4;
    }
    
    .talent-image-placeholder {
        font-size: 6rem;
    }
    
    .methodology-card {
        padding: 2rem;
    }
    
    .process-step::after,
    .hiring-step::after {
        display: none;
    }
    
    .assessment-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .assessment-hero {
        min-height: 60vh;
        padding: 8rem 0 4rem;
    }
    
    .assessment-hero-title {
        font-size: 2.5rem;
    }
    
    .assessment-hero-label {
        font-size: 1.1rem;
    }
    
    .talent-title,
    .what-is-title,
    .section-heading,
    .tools-title,
    .intro-title {
        font-size: 1.75rem;
    }
    
    .talent-image-box {
        min-height: 350px;
        max-height: 450px;
        padding: 0;
        aspect-ratio: 3/4;
    }
    
    .talent-image-placeholder {
        font-size: 4rem;
    }
    
    .process-step,
    .hiring-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number,
    .hiring-step-number {
        margin: 0 auto 1.5rem;
    }
    
    .step-content,
    .hiring-step-content {
        text-align: right;
    }
    
    .methodology-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.25rem;
    }
    
    .methodology-tabs {
        flex-wrap: wrap;
    }
    
    .methodology-tabs .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .output-card,
    .component-card,
    .use-card,
    .feature-item,
    .benefit-level-card {
        margin-bottom: 1.5rem;
    }
    
    .benefits-card {
        margin-bottom: 2rem;
    }
    
    .talent-feature-item {
        padding: 0.75rem;
    }
    
    .talent-feature-item span {
        font-size: 0.95rem;
    }
    
    .assessment-cta-title {
        font-size: 1.75rem;
    }
    
    .assessment-cta-text {
        font-size: 1rem;
    }
    
    .assessment-cta-buttons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .assessment-cta-btn-primary,
    .assessment-cta-btn-secondary {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .report-types-accordion .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .report-types-accordion .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .hiring-step-list li {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .benefit-level-list li {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   CONSULTING PAGE STYLES
   ========================================================================== */

.consulting-page {
    overflow-x: hidden;
    width: 100%;
}

/* Consulting Hero Section */
.consulting-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.consulting-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.consulting-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.consulting-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.consulting-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.consulting-breadcrumb a:hover {
    color: var(--primary-color);
}

.consulting-hero-title-wrapper {
    margin-bottom: 2rem;
}

.consulting-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.consulting-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.consulting-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.consulting-types-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.consulting-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consulting-type-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.consulting-type-badge i {
    font-size: 1.1rem;
}

.consulting-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(59, 55, 139, 0.2), transparent);
}

.consulting-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.consulting-hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.2);
    animation: bounceDown 2s infinite;
    transition: all 0.3s ease;
}

.consulting-hero-scroll a:hover {
    background: var(--primary-color);
    color: white;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Consulting Intro Section */
.consulting-intro-section {
    padding: 6rem 0;
    background: white;
}

.consulting-intro-content {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03), rgba(169, 128, 253, 0.03));
    border-radius: 30px;
    border: 1px solid rgba(59, 55, 139, 0.08);
}

.consulting-intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.3);
}

.consulting-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.consulting-intro-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.consulting-intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

/* Consulting Types Section */
.consulting-types-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.consulting-types-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.04) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.consulting-type-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.consulting-type-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(59, 55, 139, 0.2);
}

.type-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.4s ease;
}

.economic-card .type-card-bg {
    background: linear-gradient(90deg, #3b378b, #5b4db3);
}

.social-card .type-card-bg {
    background: linear-gradient(90deg, #a980fd, #c4a8ff);
}

.admin-card .type-card-bg {
    background: linear-gradient(90deg, #2d2a6e, #3b378b);
}

.consulting-type-card:hover .type-card-bg {
    height: 100%;
    opacity: 0.05;
}

.type-card-content {
    position: relative;
    z-index: 1;
}

.type-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.economic-card .type-icon-wrapper {
    background: linear-gradient(135deg, #3b378b, #5b4db3);
}

.social-card .type-icon-wrapper {
    background: linear-gradient(135deg, #a980fd, #c4a8ff);
}

.admin-card .type-icon-wrapper {
    background: linear-gradient(135deg, #2d2a6e, #3b378b);
}

.consulting-type-card:hover .type-icon-wrapper {
    transform: scale(1.1);
}

.type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.type-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.type-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.type-features li:last-child {
    border-bottom: none;
}

.type-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.type-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(59, 55, 139, 0.05);
    line-height: 1;
}

/* Consulting Projects Section - Timeline */
.consulting-projects-section {
    padding: 6rem 0;
    background: white;
}

.consulting-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
    position: relative;
    z-index: 2;
}

.marker-line {
    width: 3px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color), rgba(59, 55, 139, 0.1));
    margin-top: 1rem;
    border-radius: 2px;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.project-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03), rgba(169, 128, 253, 0.03));
    border-bottom: 1px solid rgba(59, 55, 139, 0.08);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.private-badge {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
}

.government-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.authority-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.nonprofit-badge {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.university-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.project-body {
    padding: 2rem;
}

.project-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-objectives {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.project-objectives li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.project-objectives li:last-child {
    border-bottom: none;
}

.project-objectives li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.project-objectives li span {
    flex: 1;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
}

.project-programs h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.program-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.project-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    flex: 1;
}

.project-stat.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.project-stat.highlight .stat-value,
.project-stat.highlight .stat-label {
    color: white !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 600;
}

/* Override gradient text effect for highlight stat-value */
.project-stat.highlight .stat-value {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    color: white !important;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

/* Reports Services Section */
.reports-services-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.reports-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.04) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.reports-image-container {
    position: relative;
}

.reports-image-box {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    border-radius: 28px;
    padding: 4rem;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reports-image-placeholder {
    font-size: 10rem;
    color: rgba(59, 55, 139, 0.15);
}

.reports-floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.3);
}

.reports-stats-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.15);
}

.reports-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.reports-stat-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.reports-content {
    padding-right: 2rem;
}

.reports-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.reports-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.reports-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.reports-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reports-services-list {
    margin-bottom: 1.5rem;
}

.reports-services-list h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.reports-services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.08);
    transition: all 0.3s ease;
}

.reports-services-list li:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.12);
}

.reports-services-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.reports-services-list li span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Previous Reports Section */
.previous-reports-section {
    padding: 6rem 0;
    background: white;
}

.report-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.report-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
}

.report-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03), rgba(169, 128, 253, 0.03));
    border-bottom: 1px solid rgba(59, 55, 139, 0.08);
}

.report-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.25);
}

.report-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.report-card-body {
    padding: 2rem;
    flex: 1;
}

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

.report-insights li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.report-insights li:last-child {
    border-bottom: none;
}

.insight-stat {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
    flex-shrink: 0;
}

.insight-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.report-conclusion {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-style: italic;
}

.report-card-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
}

.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.report-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 55, 139, 0.35);
    color: white;
}

/* Why Choose Us Section */
.consulting-why-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.consulting-why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.04) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.why-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.25);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Consulting CTA Section */
.consulting-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.consulting-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

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

.consulting-cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.consulting-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.consulting-cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.consulting-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.consulting-cta-btn-primary,
.consulting-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.consulting-cta-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.consulting-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.consulting-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.consulting-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Responsive Styles for Consulting Page */
@media (max-width: 991px) {
    .consulting-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .consulting-hero-title {
        font-size: 3rem;
    }
    
    .consulting-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .consulting-hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 1.5rem 2rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .consulting-intro-content {
        padding: 2.5rem;
    }
    
    .consulting-intro-title,
    .reports-title,
    .consulting-cta-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-marker {
        flex-direction: row;
    }
    
    .marker-line {
        display: none;
    }
    
    .reports-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .reports-image-box {
        min-height: 350px;
        padding: 3rem;
    }
    
    .reports-image-placeholder {
        font-size: 6rem;
    }
}

@media (max-width: 767px) {
    .consulting-hero {
        padding: 7rem 0 3rem;
    }
    
    .consulting-hero-title {
        font-size: 2.5rem;
    }
    
    .consulting-hero-subtitle {
        font-size: 1rem;
    }
    
    .consulting-hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }
    
    .consulting-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .consulting-intro-content {
        padding: 2rem;
    }
    
    .consulting-intro-title,
    .reports-title,
    .consulting-cta-title,
    .section-heading {
        font-size: 1.75rem;
    }
    
    .consulting-type-card {
        padding: 2rem;
    }
    
    .type-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .project-header,
    .project-body {
        padding: 1.5rem;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .project-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-highlights {
        flex-direction: column;
    }
    
    .reports-image-box {
        min-height: 280px;
        padding: 2rem;
    }
    
    .reports-image-placeholder {
        font-size: 4rem;
    }
    
    .reports-floating-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .reports-stats-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .report-card-header,
    .report-card-body {
        padding: 1.5rem;
    }
    
    .report-card-title {
        font-size: 1.1rem;
    }
    
    .report-insights li {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .insight-stat {
        min-width: auto;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .consulting-cta-title {
        font-size: 1.75rem;
    }
    
    .consulting-cta-text {
        font-size: 1rem;
    }
    
    .consulting-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .consulting-cta-btn-primary,
    .consulting-cta-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   TRAINING PAGE STYLES
   ========================================================================== */

.training-page {
    overflow-x: hidden;
    width: 100%;
}

/* Training Hero Section */
.training-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 110px;
}

.training-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.training-hero-content {
    text-align: center;
    position: relative;
    z-index: 5;
}

.training-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.training-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.training-breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
    display: inline-flex;
    align-items: center;
}

.breadcrumb-sep .bi {
    font-size: 0.85rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.training-hero-title-wrapper {
    margin-bottom: 2rem;
}

.training-hero-label {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.training-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 0;
}

.training-hero-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

.training-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.training-hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.2);
    animation: bounceDown 2s infinite;
    transition: all 0.3s ease;
}

.training-hero-scroll a:hover {
    background: var(--primary-color);
    color: white;
}

/* Training Intro Section */
.training-intro-section {
    padding: 6rem 0;
    background: white;
}

.training-intro-content {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03), rgba(169, 128, 253, 0.03));
    border-radius: 30px;
    border: 1px solid rgba(59, 55, 139, 0.08);
}

.training-intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(59, 55, 139, 0.3);
}

.training-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.training-intro-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.training-intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

/* Training Halls Section */
.training-halls-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.training-halls-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.04) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.hall-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.hall-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.hall-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(59, 55, 139, 0.25);
}

.hall-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hall-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Upcoming Courses Section */
.upcoming-courses-section {
    padding: 6rem 0;
    background: white;
}

.upcoming-course-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.upcoming-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.upcoming-course-card .course-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
}

.upcoming-course-card .course-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.course-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.course-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.course-dates {
    margin-bottom: 1rem;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.date-item i {
    color: var(--primary-color);
}

.course-price {
    margin-bottom: 1.5rem;
}

.price-before {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.price-after {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-register,
.btn-details {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.25);
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 55, 139, 0.35);
    color: white;
}

.btn-details {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.no-courses {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-courses i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* External Programs Section */
.external-programs-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.external-programs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.04) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.program-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

.programs-table-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    overflow-x: auto;
}

.programs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.programs-table thead {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
}

.programs-table th {
    padding: 1.25rem 1rem;
    text-align: right;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 2px solid rgba(59, 55, 139, 0.1);
}

.programs-table td {
    padding: 1.25rem 1rem;
    text-align: right;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.programs-table tbody tr {
    transition: background 0.3s ease;
}

.programs-table tbody tr:hover {
    background: rgba(59, 55, 139, 0.02);
}

.programs-table tbody tr.program-row {
    display: table-row;
}

.programs-table tbody tr.program-row.hidden {
    display: none;
}

.delivery-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.delivery-badge.delivery-online {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.delivery-badge.delivery-onsite {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
}

.delivery-badge.delivery-hybrid {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.program-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.25);
}

.program-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 55, 139, 0.35);
    color: white;
}

.no-programs {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-programs i {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Courses CTA Premium Section */
.courses-cta-premium {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.courses-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.95) 0%, rgba(169, 128, 253, 0.9) 100%);
    z-index: 1;
}

.courses-cta-premium .container {
    position: relative;
    z-index: 5;
}

.courses-cta-content {
    color: white;
}

.courses-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.courses-cta-badge i {
    font-size: 1rem;
}

.courses-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.courses-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.courses-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.courses-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.courses-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    background: white;
}

.courses-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.courses-cta-btn:hover i {
    transform: translateX(-5px);
}

/* CTA Stats Grid */
.courses-cta-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cta-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.cta-stat-icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.cta-stat-info {
    display: flex;
    flex-direction: column;
}

.cta-stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.cta-stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 991px) {
    .courses-cta-premium {
        padding: 4rem 0;
    }
    
    .courses-cta-title {
        font-size: 1.85rem;
    }
    
    .courses-cta-stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2.5rem;
        gap: 0.75rem;
    }
    
    .cta-stat-box {
        flex: 1;
        min-width: 150px;
    }
    
    .cta-stat-box:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 767px) {
    .courses-cta-premium {
        padding: 3rem 0;
    }
    
    .courses-cta-title {
        font-size: 1.5rem;
    }
    
    .courses-cta-desc {
        font-size: 0.95rem;
    }
    
    .courses-cta-features {
        gap: 0.75rem;
    }
    
    .cta-feature-item {
        font-size: 0.85rem;
    }
    
    .cta-stat-box {
        padding: 1rem;
    }
    
    .cta-stat-num {
        font-size: 1.5rem;
    }
    
    .cta-stat-icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
}

/* Training Plan Section */
.training-plan-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.training-plan-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.plan-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.plan-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.plan-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

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

.plan-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.plan-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.plan-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.plan-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Certificates Section */
.certificates-section {
    padding: 6rem 0;
    background: white;
}

.certificates-gallery {
    margin-top: 3rem;
}

.certificate-logo {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.certificate-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 55, 139, 0.15);
}

.certificate-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.certificate-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Single Upcoming Course Page */
.upcoming-course-single-section {
    padding: 8rem 0 4rem;
    background: white;
}

.course-featured-image {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.course-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.course-sidebar {
    position: sticky;
    top: 120px;
}

.course-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item h5 i {
    color: var(--primary-color);
}

.info-item p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.status-upcoming {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.status-past {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.course-content-wrapper {
    padding-right: 2rem;
}

.course-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.course-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-breadcrumb a:hover {
    color: var(--primary-color);
}

.course-breadcrumb .breadcrumb-sep {
    color: var(--text-light);
    opacity: 0.5;
}

.course-breadcrumb .breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

.upcoming-course-single-section .course-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.course-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.course-content h2,
.course-content h3,
.course-content h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.course-excerpt {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05), rgba(169, 128, 253, 0.05));
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border-right: 4px solid var(--primary-color);
}

.course-excerpt h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Responsive Styles for Training Page */
@media (max-width: 991px) {
    .training-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .training-hero-title {
        font-size: 3rem;
    }
    
    .training-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .training-intro-content {
        padding: 2.5rem;
    }
    
    .training-intro-title,
    .section-heading {
        font-size: 2rem;
    }
    
    .course-content-wrapper {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .programs-table {
        font-size: 0.9rem;
    }
    
    .programs-table th,
    .programs-table td {
        padding: 0.875rem 0.75rem;
    }
    
    .programs-table-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .training-hero {
        padding: 7rem 0 3rem;
    }
    
    .training-hero-title {
        font-size: 2.5rem;
    }
    
    .training-hero-subtitle {
        font-size: 1rem;
    }
    
    .training-hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
    }
    
    .training-intro-content {
        padding: 2rem;
    }
    
    .training-intro-title,
    .section-heading,
    .plan-title {
        font-size: 1.75rem;
    }
    
    .hall-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .hall-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .upcoming-course-card .course-image {
        padding-top: 50%;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .program-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .programs-table-wrapper {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .programs-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .programs-table thead {
        display: none;
    }
    
    .programs-table tbody,
    .programs-table tr,
    .programs-table td {
        display: block;
        width: 100%;
    }
    
    .programs-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 1rem;
        background: white;
    }
    
    .programs-table td {
        padding: 0.75rem 0;
        text-align: right;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .programs-table td:last-child {
        border-bottom: none;
    }
    
    .programs-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-dark);
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .plan-title {
        font-size: 1.75rem;
    }
    
    .plan-subtitle {
        font-size: 1rem;
    }
    
    .plan-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .certificate-logo {
        min-height: 120px;
        padding: 1.5rem;
    }
}

/* ============================================
   Job Application Page Premium Styles
   ============================================ */

/* Job Application Hero */
.job-application-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

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

.job-application-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.job-application-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03) 0%, rgba(169, 128, 253, 0.03) 100%);
}

.job-application-hero-content {
    position: relative;
    z-index: 5;
}

.job-application-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.job-application-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.job-application-breadcrumb a:hover {
    color: var(--primary-color);
}

.job-application-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-application-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.job-application-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Job Application Form */
@media (max-width: 991px) {
    .job-application-hero-section {
        padding-top: 90px; /* Account for 70px header + 20px spacing on tablets */
    }
    
    .job-application-hero-title {
        font-size: 2.5rem;
    }
    
    .job-application-section-premium {
        padding: 4rem 0;
    }
    
    .job-application-form-premium {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .job-application-hero-section {
        padding: 6rem 0 4rem;
    }
    
    .job-application-hero-title {
        font-size: 2rem;
    }
    
    .job-application-hero-subtitle {
        font-size: 1rem;
    }
    
    .job-application-section-premium {
        padding: 3rem 0;
    }
    
    .job-application-form-premium {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-group-premium {
        margin-bottom: 1.25rem;
    }
    
    .form-control-premium {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .form-label-premium {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .file-upload-label {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-submit-premium {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .job-application-form-premium {
        padding: 1.5rem 1rem;
    }
    
    .job-application-hero-title {
        font-size: 1.75rem;
    }
    
    .form-control-premium {
        padding: 0.75rem 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .premium-job-form .row {
        margin: 0;
    }
    
    .premium-job-form .col-lg-6,
    .premium-job-form .col-md-6 {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .premium-job-form .col-lg-12 {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ============================================
   Fields Page Premium Styles
   ============================================ */

/* Fields Hero Section */
.fields-hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

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

.fields-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 55, 139, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.fields-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.03) 0%, rgba(169, 128, 253, 0.03) 100%);
}

.fields-hero-content {
    position: relative;
    z-index: 5;
}

.fields-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.fields-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fields-breadcrumb a:hover {
    color: var(--primary-color);
}

.fields-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fields-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fields-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Fields Content Section */
.fields-content-section {
    padding: 4rem 0;
    background: white;
}

.fields-intro-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: center;
}

/* Fields Grid Section */
.fields-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.field-card-premium {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.field-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.field-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.15);
}

.field-card-icon-wrapper {
    margin-bottom: 2rem;
}

.field-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.1), rgba(169, 128, 253, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.field-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-card-premium:hover .field-card-icon::before {
    opacity: 0.1;
}

.field-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.field-card-premium:hover .field-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.field-card-premium:hover .field-card-icon i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.field-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.field-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    flex: 1;
}

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

.field-card-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

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

.field-card-link:hover i {
    transform: translateX(-5px);
}

/* Responsive Fields Page */
@media (max-width: 991px) {
    .fields-hero-section {
        padding-top: 90px; /* Account for 70px header + 20px spacing on tablets */
    }
    
    .fields-hero-title {
        font-size: 2.5rem;
    }
    
    .field-card-premium {
        padding: 2.5rem 1.5rem;
    }
    
    .field-card-icon {
        width: 90px;
        height: 90px;
    }
    
    .field-card-icon i {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .fields-hero-section {
        padding: 6rem 0 4rem;
    }
    
    .fields-hero-title {
        font-size: 2rem;
    }
    
    .fields-hero-subtitle {
        font-size: 1rem;
    }
    
    .fields-content-section {
        padding: 3rem 0;
    }
    
    .fields-grid-section {
        padding: 3rem 0;
    }
    
    .field-card-premium {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .field-card-title {
        font-size: 1.3rem;
    }
    
    .field-card-description {
        font-size: 0.95rem;
    }
    
    .field-card-icon {
        width: 80px;
        height: 80px;
    }
    
    .field-card-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .fields-grid-section .row {
        margin: 0 -0.5rem;
    }
    
    .fields-grid-section .col-12 {
        padding: 0 0.5rem;
    }
    
    .field-card-premium {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .field-card-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .field-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .field-card-icon i {
        font-size: 1.75rem;
    }
    
    .field-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .field-card-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   Global Map Section - About Page
   ============================================ */
.global-map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.global-map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(59, 55, 139, 0.1);
    transition: all 0.4s ease;
}

.global-map-wrapper:hover {
    box-shadow: 0 20px 60px rgba(59, 55, 139, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.global-map-link {
    display: block;
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.global-map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.global-map-link:hover .global-map-image {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* ============================================
   Footer Map Section
   ============================================ */
.footer-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-map-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-map-link {
    display: block;
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.footer-map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.footer-map-link:hover .footer-map-image {
    transform: scale(1.05);
    filter: brightness(1.08);
}

/* Lightbox2 Custom Styling */
.lb-data .lb-caption {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.lb-data .lb-close {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 16 16"><path d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/></svg>') no-repeat center;
    width: 30px;
    height: 30px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .global-map-section {
        padding: 3rem 0;
    }
    
    .global-map-wrapper {
        border-radius: 20px;
        border-width: 3px;
    }
    
    .footer-map-wrapper {
        border-radius: 16px;
        border-width: 2px;
    }
}

/* ============================================
   Floating Language Switcher Styles
   ============================================ */
.floating-language-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(59, 55, 139, 0.1);
    transition: all 0.3s ease;
}

.floating-lang-switcher:hover {
    box-shadow: 0 6px 25px rgba(59, 55, 139, 0.25);
    transform: translateY(-2px);
}

.floating-lang-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
    display: inline-block;
}

.floating-lang-link:hover {
    color: var(--primary-color);
    background-color: rgba(59, 55, 139, 0.1);
}

.floating-lang-link.active {
    color: #fff;
    background-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(59, 55, 139, 0.3);
}

.floating-lang-separator {
    color: var(--text-light);
    opacity: 0.3;
    font-weight: 300;
}

/* RTL Positioning */
[dir="rtl"] .floating-language-switcher {
    right: auto;
    left: 30px;
}

/* LTR Positioning */
[dir="ltr"] .floating-language-switcher {
    right: 30px;
    left: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-language-switcher {
        bottom: 20px;
        right: 20px;
    }
    
    [dir="rtl"] .floating-language-switcher {
        right: auto;
        left: 20px;
    }
    
    [dir="ltr"] .floating-language-switcher {
        right: 20px;
        left: auto;
    }
    
    .floating-lang-switcher {
        padding: 0.4rem 0.6rem;
    }
    
    .floating-lang-link {
        padding: 0.35rem 0.6rem;
        font-size: 0.85rem;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .floating-language-switcher {
        bottom: 15px;
        right: 15px;
    }
    
    [dir="rtl"] .floating-language-switcher {
        right: auto;
        left: 15px;
    }
    
    [dir="ltr"] .floating-language-switcher {
        right: 15px;
        left: auto;
    }
    
    .floating-lang-switcher {
        padding: 0.35rem 0.5rem;
        gap: 0.4rem;
    }
    
    .floating-lang-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
        min-width: 32px;
    }
    
    .floating-lang-separator {
        font-size: 0.8rem;
    }
}

/* ============================================
   LTR (Left-to-Right) Layout Overrides
   ============================================ */
[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

[dir="ltr"] .navbar-nav {
    margin-left: auto;
    margin-right: 0;
}

/* Removed header language switcher styles - now using floating switcher */

[dir="ltr"] .header-social-media {
    margin-left: 0;
    margin-right: 1rem;
}

/* LTR Navigation */
[dir="ltr"] .navbar-nav .nav-link {
    text-align: left;
}

[dir="ltr"] .navbar-nav .nav-link i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* LTR Footer */
[dir="ltr"] .site-footer-advanced {
    text-align: left;
}

[dir="ltr"] .footer-content-row {
    direction: ltr;
}

[dir="ltr"] .footer-section-title {
    text-align: left;
}

[dir="ltr"] .footer-section-title i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="ltr"] .contact-info-item {
    text-align: left;
}

[dir="ltr"] .contact-info-item i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="ltr"] .footer-social-media {
    justify-content: flex-start;
}

/* LTR Buttons */
[dir="ltr"] .btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="ltr"] .btn i.bi-arrow-left {
    margin-left: 0;
    margin-right: 0.5rem;
}

/* LTR Cards */
[dir="ltr"] .card {
    text-align: left;
}

[dir="ltr"] .card-title,
[dir="ltr"] .card-text {
    text-align: left;
}

/* LTR Forms */
[dir="ltr"] .form-label {
    text-align: left;
}

[dir="ltr"] .form-control,
[dir="ltr"] .form-select {
    text-align: left;
}

[dir="ltr"] .form-check {
    padding-left: 0;
    padding-right: 1.5em;
}

[dir="ltr"] .form-check-input {
    margin-left: 0;
    margin-right: -1.5em;
}

/* LTR Text Alignment */
[dir="ltr"] .text-start {
    text-align: left !important;
}

[dir="ltr"] .text-end {
    text-align: right !important;
}

/* LTR Margin/Padding Adjustments */
[dir="ltr"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

[dir="ltr"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="ltr"] .pe-2 {
    padding-left: 0.5rem !important;
    padding-right: 0 !important;
}

[dir="ltr"] .ps-2 {
    padding-right: 0.5rem !important;
    padding-left: 0 !important;
}

/* LTR Flexbox Adjustments */
[dir="ltr"] .justify-content-end {
    justify-content: flex-start !important;
}

[dir="ltr"] .justify-content-start {
    justify-content: flex-end !important;
}

/* LTR Hero Section */
[dir="ltr"] .hero-content {
    text-align: left;
}

[dir="ltr"] .hero-buttons {
    justify-content: flex-start;
}

/* LTR General Text Alignment */
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4, [dir="ltr"] h5, [dir="ltr"] h6 {
    text-align: left;
}

[dir="ltr"] p {
    text-align: left;
}

[dir="ltr"] .text-center {
    text-align: center !important;
}

/* LTR Section Titles */
[dir="ltr"] .section-title,
[dir="ltr"] .section-title-v2,
[dir="ltr"] .section-heading,
[dir="ltr"] .section-subtitle,
[dir="ltr"] .section-subtitle-v2,
[dir="ltr"] .section-badge {
    text-align: center;
}

/* LTR Breadcrumbs */
[dir="ltr"] .breadcrumb {
    justify-content: flex-start;
}

[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
}

/* LTR Blog Cards */
[dir="ltr"] .blog-card-content {
    text-align: left;
}

[dir="ltr"] .blog-card-title {
    text-align: left;
}

[dir="ltr"] .blog-card-excerpt {
    text-align: left;
}

/* LTR Form Groups */
[dir="ltr"] .form-group-premium {
    text-align: left;
}

[dir="ltr"] .form-label-premium {
    text-align: left;
}

[dir="ltr"] .form-control-premium {
    text-align: left;
}

[dir="ltr"] .form-control-premium::placeholder {
    text-align: left;
}

/* LTR Tabs */
[dir="ltr"] .join-now-tabs {
    justify-content: center;
}

[dir="ltr"] .join-tab-btn {
    text-align: center;
}

/* LTR Container Padding */
[dir="ltr"] .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* LTR Row Margins */
[dir="ltr"] .row {
    margin-left: -15px;
    margin-right: -15px;
}

[dir="ltr"] .row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* LTR Navbar Brand */
[dir="ltr"] .navbar-brand {
    margin-right: 0;
    margin-left: 1rem;
}

/* LTR List Items */
[dir="ltr"] ul, [dir="ltr"] ol {
    padding-left: 2rem;
    padding-right: 0;
}

[dir="ltr"] li {
    text-align: left;
}

/* LTR Blockquote */
[dir="ltr"] blockquote {
    border-left: 4px solid var(--primary-color);
    border-right: none;
    padding-left: 1rem;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

/* LTR Table */
[dir="ltr"] table {
    text-align: left;
}

[dir="ltr"] th, [dir="ltr"] td {
    text-align: left;
}

/* LTR Pagination */
[dir="ltr"] .pagination {
    justify-content: center;
}

[dir="ltr"] .page-link {
    text-align: center;
}

/* LTR Alert */
[dir="ltr"] .alert {
    text-align: left;
}

/* LTR Badge */
[dir="ltr"] .badge {
    text-align: center;
}

/* LTR Dropdown */
[dir="ltr"] .dropdown-menu {
    text-align: left;
}

/* LTR Modal */
[dir="ltr"] .modal-header,
[dir="ltr"] .modal-body,
[dir="ltr"] .modal-footer {
    text-align: left;
}

/* LTR Tooltip */
[dir="ltr"] .tooltip {
    text-align: left;
}

/* LTR Popover */
[dir="ltr"] .popover {
    text-align: left;
}

/* LTR About Section */
[dir="ltr"] .about-text {
    text-align: left;
}

[dir="ltr"] .section-title,
[dir="ltr"] .section-title-v2,
[dir="ltr"] .section-heading,
[dir="ltr"] .section-subtitle,
[dir="ltr"] .section-subtitle-v2 {
    text-align: center;
}

/* LTR Bootstrap RTL Override */
[dir="ltr"] .navbar-toggler {
    margin-left: 0;
    margin-right: auto;
}

/* LTR Breadcrumbs */
[dir="ltr"] .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-left: 0.5rem;
    padding-right: 0;
}

/* LTR Modal */
[dir="ltr"] .modal-header .btn-close {
    margin-left: auto;
    margin-right: 0;
}

/* LTR Dropdown */
[dir="ltr"] .dropdown-menu {
    text-align: left;
}

/* LTR Tables */
[dir="ltr"] table {
    text-align: left;
}

[dir="ltr"] th,
[dir="ltr"] td {
    text-align: left;
}

/* LTR List Items */
[dir="ltr"] ul,
[dir="ltr"] ol {
    padding-left: 1.5rem;
    padding-right: 0;
}

/* LTR Blockquote */
[dir="ltr"] blockquote {
    border-left: 4px solid var(--primary-color);
    border-right: none;
    padding-left: 1rem;
    padding-right: 0;
}

/* LTR Icons in Text */
[dir="ltr"] i.bi,
[dir="ltr"] .bi {
    display: inline-block;
}

[dir="ltr"] .bi-arrow-left::before {
    content: "\f12e"; /* Right arrow for LTR */
}

[dir="ltr"] .bi-arrow-right::before {
    content: "\f12f"; /* Left arrow for LTR */
}

/* ============================================
   Page CTA Section (Register Now / Contact Us)
   ============================================ */
.page-cta-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
    margin-top: 4rem;
}

.page-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.page-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.85), rgba(169, 128, 253, 0.85));
    z-index: 1;
}

.page-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.page-cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.page-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
}

.page-cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
    width: 100%;
}

.page-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-btn-primary,
.page-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.15rem 2.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.page-cta-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.page-cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: var(--primary-color);
}

.page-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
}

.page-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.55);
    color: white;
    transform: translateY(-4px);
}

.page-cta-btn-primary i,
.page-cta-btn-secondary i {
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .page-cta-section {
        padding: 5rem 0;
    }
    
    .page-cta-title {
        font-size: 2rem;
    }
    
    .page-cta-text {
        font-size: 1rem;
    }
    
    .page-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .page-cta-btn-primary,
    .page-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* LTR Support for Page CTA */
[dir="ltr"] .page-cta-content {
    text-align: center;
}

[dir="ltr"] .page-cta-title {
    text-align: center;
}

[dir="ltr"] .page-cta-text {
    text-align: center;
}

[dir="ltr"] .page-cta-btn-primary i,
[dir="ltr"] .page-cta-btn-secondary i {
    order: 2;
}

[dir="ltr"] .page-cta-btn-primary span,
[dir="ltr"] .page-cta-btn-secondary span {
    order: 1;
}

/* ============================================
   Training, Consulting, Assessment, Innovation Pages LTR Styles
   ============================================ */
[dir="ltr"] .training-intro-content,
[dir="ltr"] .consulting-intro-content,
[dir="ltr"] .intro-content,
[dir="ltr"] .what-is-content {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .training-intro-title,
[dir="ltr"] .consulting-intro-title,
[dir="ltr"] .intro-title,
[dir="ltr"] .what-is-title {
    text-align: center;
}

[dir="ltr"] .training-intro-text,
[dir="ltr"] .consulting-intro-text,
[dir="ltr"] .intro-text,
[dir="ltr"] .what-is-text {
    text-align: center;
}

[dir="ltr"] .intro-badge {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

[dir="ltr"] .hall-card,
[dir="ltr"] .consulting-type-card,
[dir="ltr"] .output-card,
[dir="ltr"] .component-card,
[dir="ltr"] .use-card,
[dir="ltr"] .feature-item,
[dir="ltr"] .benefit-level-card,
[dir="ltr"] .service-card-v2,
[dir="ltr"] .reason-card-v2 {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .hall-title,
[dir="ltr"] .hall-description,
[dir="ltr"] .type-title,
[dir="ltr"] .type-description,
[dir="ltr"] .output-title,
[dir="ltr"] .output-text,
[dir="ltr"] .component-title,
[dir="ltr"] .component-text,
[dir="ltr"] .use-title,
[dir="ltr"] .use-text,
[dir="ltr"] .feature-title,
[dir="ltr"] .service-title-v2,
[dir="ltr"] .service-desc-v2,
[dir="ltr"] .card-title-v2 {
    text-align: left;
}

[dir="ltr"] .type-features,
[dir="ltr"] .benefits-list,
[dir="ltr"] .benefit-level-list,
[dir="ltr"] .hiring-step-list,
[dir="ltr"] .project-objectives {
    text-align: left;
    direction: ltr;
    padding-left: 1.5rem;
    padding-right: 0;
}

[dir="ltr"] .type-features li,
[dir="ltr"] .benefits-list li,
[dir="ltr"] .benefit-level-list li,
[dir="ltr"] .hiring-step-list li,
[dir="ltr"] .project-objectives li {
    text-align: left;
}

[dir="ltr"] .type-features li i,
[dir="ltr"] .benefits-list li i,
[dir="ltr"] .benefit-level-list li i {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="ltr"] .talent-insights-content,
[dir="ltr"] .reports-content {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .talent-title,
[dir="ltr"] .talent-description,
[dir="ltr"] .reports-title,
[dir="ltr"] .reports-description {
    text-align: left;
}

[dir="ltr"] .talent-features,
[dir="ltr"] .reports-services-list {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .talent-feature-item,
[dir="ltr"] .reports-services-list li {
    text-align: left;
}

[dir="ltr"] .talent-feature-item i,
[dir="ltr"] .reports-services-list li i {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="ltr"] .methodology-card,
[dir="ltr"] .process-step,
[dir="ltr"] .hiring-step {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .methodology-card-title,
[dir="ltr"] .methodology-card-text,
[dir="ltr"] .step-title,
[dir="ltr"] .step-text,
[dir="ltr"] .hiring-step-title,
[dir="ltr"] .hiring-step-list {
    text-align: left;
}

[dir="ltr"] .project-card,
[dir="ltr"] .report-card {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .project-title,
[dir="ltr"] .project-intro,
[dir="ltr"] .report-card-title {
    text-align: left;
}

[dir="ltr"] .why-card {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .why-title,
[dir="ltr"] .why-text {
    text-align: left;
}

[dir="ltr"] .courses-cta-content {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .courses-cta-title,
[dir="ltr"] .courses-cta-desc {
    text-align: left;
}

[dir="ltr"] .courses-cta-features {
    justify-content: flex-start;
}

[dir="ltr"] .courses-cta-btn i {
    order: 2;
}

[dir="ltr"] .courses-cta-btn span {
    order: 1;
}

/* Responsive LTR Adjustments */
@media (max-width: 991px) {
    [dir="ltr"] .header-language-switcher {
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    [dir="ltr"] .header-language-switcher {
        margin-right: 0;
        margin-left: 0;
    }
}

/* ============================================
   Solutions Page LTR Styles
   ============================================ */
[dir="ltr"] .sol-breadcrumb {
    direction: ltr;
}

[dir="ltr"] .breadcrumb-sep .bi-chevron-left::before {
    content: "\f285"; /* Chevron right for LTR */
}

[dir="ltr"] .sol-content {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .sol-title {
    text-align: left;
}

[dir="ltr"] .sol-description {
    text-align: left;
}

[dir="ltr"] .sol-highlight {
    text-align: left;
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

[dir="ltr"] .sol-feature-group-desc {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .sol-feature {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .sol-feature:hover {
    transform: translateX(5px);
}

[dir="ltr"] .sol-feature i {
    order: 1;
}

[dir="ltr"] .sol-feature span {
    order: 2;
}

[dir="ltr"] .sol-cta-btn i {
    order: 2;
}

[dir="ltr"] .sol-cta-btn span {
    order: 1;
}

[dir="ltr"] .sol-cta-btn:hover i {
    transform: translateX(5px);
}

[dir="ltr"] .sol-cta-btn-outline i {
    order: 2;
}

[dir="ltr"] .sol-cta-btn-outline span {
    order: 1;
}

[dir="ltr"] .sol-cta-btn-outline:hover i {
    transform: translateX(5px);
}

/* LTR Solutions CTA Section - Ensure Centering */
[dir="ltr"] .sol-cta-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

[dir="ltr"] .sol-cta-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

[dir="ltr"] .sol-cta-title,
[dir="ltr"] .sol-cta-text {
    text-align: center !important;
    width: 100% !important;
}

[dir="ltr"] .sol-cta-buttons {
    justify-content: center !important;
    display: flex !important;
}

[dir="ltr"] .sol-content .sol-cta-buttons {
    justify-content: flex-start;
}

/* LTR Assessment Tools Section - Ensure Centering */
[dir="ltr"] .tools-content {
    text-align: center !important;
}

[dir="ltr"] .tools-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

[dir="ltr"] .tools-title {
    text-align: center !important;
    width: 100%;
}

[dir="ltr"] .tools-text {
    text-align: center !important;
    width: 100%;
}

/* LTR About Page CTA Section - Ensure Centering */
[dir="ltr"] .about-cta-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

[dir="ltr"] .cta-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

[dir="ltr"] .cta-heading {
    text-align: center !important;
    width: 100% !important;
}

[dir="ltr"] .cta-text {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

[dir="ltr"] .cta-buttons {
    justify-content: center !important;
    display: flex !important;
}

/* Training Platform Section - Center Content for Both RTL and LTR */
#training-platform .container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#training-platform .row {
    width: 100% !important;
    justify-content: center !important;
}

#training-platform [class*="col-"] {
    text-align: center !important;
    margin: 0 auto !important;
}

#training-platform .section-title {
    text-align: center !important;
    width: 100% !important;
}

#training-platform .lead,
#training-platform p {
    text-align: center !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

#training-platform .btn {
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

[dir="ltr"] .partner-card {
    text-align: left;
    direction: ltr;
}

[dir="ltr"] .partner-benefits-list li {
    border-right: none;
    border-left: 3px solid var(--primary-color);
}

[dir="ltr"] .partners-cta-text {
    text-align: left;
    direction: ltr;
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

[dir="ltr"] .sol-number {
    right: auto;
    left: -1rem;
}

[dir="ltr"] .sol-floating-badge {
    left: auto;
    right: 0;
}

/* ============================================
   English Content Translation Meta Box Styles
   ============================================ */

/* Admin-only styles for English Content meta box */
.aromh-english-content-wrapper {
    padding: 15px 0;
}

.aromh-english-content-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f1;
}

.aromh-english-content-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aromh-english-content-header-inner .bi-globe {
    font-size: 20px;
    color: #2271b1;
    flex-shrink: 0;
}

.aromh-english-content-header-text {
    flex: 1;
}

.aromh-english-content-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d2327;
}

.aromh-english-content-description {
    margin: 5px 0 0;
    font-size: 13px;
    color: #646970;
    line-height: 1.5;
}

.aromh-english-content-editor {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 15px;
}

.aromh-english-content-editor .wp-editor-container {
    border: none;
}

.aromh-english-content-editor .wp-editor-area {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px;
}

.aromh-english-content-editor .mce-toolbar {
    border-bottom: 1px solid #dcdcde;
}

.aromh-english-content-editor .mce-statusbar {
    border-top: 1px solid #dcdcde;
}

.aromh-english-content-tips {
    margin-top: 15px;
    padding: 12px;
    background: #f6f7f7;
    border-left: 4px solid #2271b1;
    border-radius: 2px;
}

.aromh-english-content-tips-text {
    margin: 0;
    font-size: 13px;
    color: #50575e;
    line-height: 1.6;
}

.aromh-english-content-tips-text strong {
    color: #2271b1;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.aromh-english-content-tips-text .bi-lightbulb {
    font-size: 14px;
}

.aromh-english-content-tips-list {
    display: block;
    margin-top: 5px;
}

.aromh-english-content-status {
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aromh-english-content-status.status-set {
    background-color: #e5f5e5;
    border: 1px solid #a3d9a3;
}

.aromh-english-content-status.status-set .bi-check-circle-fill {
    color: #00a32a;
    font-size: 16px;
    flex-shrink: 0;
}

.aromh-english-content-status.status-set .aromh-english-content-status-text {
    color: #1e4620;
    font-size: 13px;
}

.aromh-english-content-status.status-set .aromh-english-content-status-text strong {
    color: #00a32a;
}

.aromh-english-content-status.status-not-set {
    background-color: #ffebe8;
    border: 1px solid #ffb3a7;
}

.aromh-english-content-status.status-not-set .bi-exclamation-triangle-fill {
    color: #d63638;
    font-size: 16px;
    flex-shrink: 0;
}

.aromh-english-content-status.status-not-set .aromh-english-content-status-text {
    color: #721c24;
    font-size: 13px;
}

.aromh-english-content-status.status-not-set .aromh-english-content-status-text strong {
    color: #d63638;
}

.aromh-english-content-status-text {
    line-height: 1.5;
}

/* ============================================
   External Courses Table Styles
   ============================================ */

.courses-table-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.courses-table-title {
    text-align: center !important;
    margin-bottom: 2rem !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #23282d !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center all courses page titles and subtitles for both RTL and LTR */
.courses-hero-title,
.courses-hero-subtitle,
.courses-badge,
.section-header .section-title,
.section-header .section-subtitle,
.section-header .section-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

[dir="ltr"] .courses-hero-title,
[dir="ltr"] .courses-hero-subtitle,
[dir="ltr"] .courses-badge,
[dir="ltr"] .courses-table-title {
    text-align: center !important;
}

/* Delivery Method Filters */
.delivery-filters-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.delivery-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 1;
}

.delivery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.delivery-filter-btn:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.15);
}

.delivery-filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.3);
}

.delivery-filter-btn.active:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 55, 139, 0.4);
}

.delivery-filter-btn i {
    font-size: 1.1rem;
}

.filter-results-count {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.filter-results-count #filterCount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.courses-empty-state.filter-empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 12px;
    margin-top: 2rem;
}

.courses-empty-state.filter-empty .courses-empty-icon {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1rem;
}

.courses-empty-state.filter-empty h3 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.courses-empty-state.filter-empty p {
    color: #6c757d;
}

/* Load More / Load All Buttons */
.courses-load-more-wrapper {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}

.courses-load-more-btn,
.courses-load-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.3);
}

.courses-load-more-btn:hover,
.courses-load-all-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 55, 139, 0.4);
}

.courses-load-more-btn:active,
.courses-load-all-btn:active {
    transform: translateY(0);
}

.courses-load-more-btn i,
.courses-load-all-btn i {
    font-size: 1.2rem;
}

.courses-load-more-btn .btn-text,
.courses-load-all-btn .btn-text {
    font-weight: 600;
}

.course-row.course-hidden {
    display: none !important;
}

.course-row.course-visible {
    display: table-row;
}

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

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.external-courses-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.external-courses-table thead {
    background: var(--gradient-primary);
    color: #fff;
}

.external-courses-table thead th {
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.external-courses-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.external-courses-table tbody tr:hover {
    background-color: #f8f9fa;
}

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

.external-courses-table tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    text-align: right;
    color: #495057;
    border: none;
}

.external-courses-table .course-name-cell {
    font-weight: 600;
    color: #212529;
    min-width: 200px;
}

.external-courses-table .course-name-cell strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

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

.delivery-badge.delivery-online {
    background-color: #e3f2fd;
    color: #1976d2;
}

.delivery-badge.delivery-onsite {
    background-color: #fff3e0;
    color: #f57c00;
}

.delivery-badge.delivery-hybrid {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.register-link:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 55, 139, 0.3);
}

.register-link i {
    font-size: 0.85rem;
}

.link-cell .no-link {
    color: #adb5bd;
    font-style: italic;
}

/* Responsive Filter Styles */
@media (max-width: 991px) {
    .delivery-filters-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .delivery-filters {
        justify-content: center;
    }
    
    .filter-results-count {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .delivery-filters {
        gap: 0.75rem;
    }
    
    .delivery-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: calc(50% - 0.375rem);
        justify-content: center;
    }
    
    .delivery-filter-btn i {
        font-size: 1rem;
    }
    
    .courses-load-more-btn,
    .courses-load-all-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Table Styles */
@media (max-width: 1200px) {
    .external-courses-table {
        font-size: 0.9rem;
    }
    
    .external-courses-table thead th,
    .external-courses-table tbody td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 991px) {
    .courses-table-section {
        padding: 3rem 0;
    }
    
    .external-courses-table {
        font-size: 0.85rem;
    }
    
    .external-courses-table thead th,
    .external-courses-table tbody td {
        padding: 0.875rem 0.6rem;
    }
    
    .delivery-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .register-link {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 767px) {
    .courses-table-wrapper {
        border-radius: 8px;
    }
    
    .external-courses-table {
        font-size: 0.8rem;
    }
    
    .external-courses-table thead {
        display: none;
    }
    
    .external-courses-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .external-courses-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.875rem 1rem;
        border-bottom: 1px solid #e9ecef;
        text-align: right;
    }
    
    .external-courses-table tbody td:last-child {
        border-bottom: none;
    }
    
    .external-courses-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        margin-left: 1rem;
        flex-shrink: 0;
        min-width: 120px;
    }
    
    .external-courses-table .course-name-cell {
        font-size: 1rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 2px solid #dee2e6;
    }
    
    .external-courses-table .course-name-cell::before {
        display: none;
    }
    
    .external-courses-table .course-name-cell strong {
        display: block;
        width: 100%;
        text-align: right;
    }
    
    .delivery-badge {
        margin-right: auto;
    }
    
    .register-link {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}


/* ============================================
   Course Registration Modal Styles
   ============================================ */
#courseRegistrationModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#courseRegistrationModal .modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}

#courseRegistrationModal .modal-header .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
}

#courseRegistrationModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

#courseRegistrationModal .modal-header .btn-close:hover {
    opacity: 1;
}

#courseRegistrationModal .modal-body {
    padding: 2rem;
}

#courseRegistrationModal .modal-body .alert-info {
    background-color: #e7f3ff;
    border-color: #b3d9ff;
    color: #004085;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

#courseRegistrationModal .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#courseRegistrationModal .form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

#courseRegistrationModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 55, 139, 0.25);
}

#courseRegistrationModal .form-control::placeholder {
    color: #adb5bd;
}

#courseRegistrationModal .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    border-radius: 0 0 12px 12px;
}

#courseRegistrationModal .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

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

#courseRegistrationModal .btn-secondary {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.course-registration-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-registration-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.course-registration-links .register-link {
    margin-bottom: 0;
}

.course-registration-links .btn {
    white-space: nowrap;
}

/* RTL Support for Modal */
[dir= rtl] #courseRegistrationModal .modal-header .btn-close {
    margin-right: auto;
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    #courseRegistrationModal .modal-dialog {
        margin: 1rem;
    }
    
    #courseRegistrationModal .modal-body {
        padding: 1.5rem;
    }
    
    #courseRegistrationModal .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    #courseRegistrationModal .modal-footer .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* ========================================
   Floating WooCommerce Shop Button (FAB)
   ======================================== */
.floating-shop-fab {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    direction: ltr;
}

[dir="rtl"] .floating-shop-fab {
    right: auto;
    left: 30px;
}

/* Main Toggle Button */
.fab-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 55, 139, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.fab-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 55, 139, 0.5);
}

.fab-main-btn .fab-icon-open {
    display: block;
}

.fab-main-btn .fab-icon-close {
    display: none !important;
}

.floating-shop-fab.active .fab-main-btn .fab-icon-open {
    display: none !important;
}

.floating-shop-fab.active .fab-main-btn .fab-icon-close {
    display: block !important;
}

.floating-shop-fab.active .fab-main-btn {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Cart Badge on Main Button */
.fab-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

/* Popup Menu */
.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

[dir="rtl"] .fab-menu {
    right: auto;
    left: 0;
}

.floating-shop-fab.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Menu Items */
.fab-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

[dir="rtl"] .fab-item {
    flex-direction: row-reverse;
    justify-content: flex-start;
    transform: translateX(-20px);
}

.floating-shop-fab.active .fab-item {
    opacity: 1;
    transform: translateX(0);
}

.floating-shop-fab.active .fab-item:nth-child(1) { transition-delay: 0.05s; }
.floating-shop-fab.active .fab-item:nth-child(2) { transition-delay: 0.1s; }
.floating-shop-fab.active .fab-item:nth-child(3) { transition-delay: 0.15s; }
.floating-shop-fab.active .fab-item:nth-child(4) { transition-delay: 0.2s; }

.fab-item-label {
    background: white;
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.fab-item:hover .fab-item-label {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.fab-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.fab-item:hover .fab-item-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Highlight Item (Checkout) */
.fab-item-highlight .fab-item-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.fab-item-highlight .fab-item-label {
    background: #28a745;
    color: white;
}

.fab-item-highlight:hover .fab-item-icon {
    background: linear-gradient(135deg, #218838 0%, #1eb386 100%);
}

/* Badge on Cart Icon */
.fab-item-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .floating-shop-fab {
        bottom: 80px;
        right: 20px;
    }
    
    [dir="rtl"] .floating-shop-fab {
        right: auto;
        left: 20px;
    }
    
    .fab-main-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
    
    .fab-menu {
        bottom: 64px;
    }
    
    .fab-item-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .fab-item-label {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ========================================
   WooCommerce Custom Styles - Aromh Theme
   ======================================== */

/* Shop Page */
.woocommerce-shop-page .shop-content-section {
    background: #f8f9fa;
}

.shop-filters-bar {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.shop-filters-bar .woocommerce-result-count {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.shop-filters-bar .woocommerce-ordering {
    float: none;
    text-align: left;
}

[dir="rtl"] .shop-filters-bar .woocommerce-ordering {
    text-align: right;
}

.shop-filters-bar .woocommerce-ordering select {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

[dir="rtl"] .shop-filters-bar .woocommerce-ordering select {
    padding: 10px 15px 10px 40px;
}

.shop-filters-bar .woocommerce-ordering select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Product Sale Badge */
.product-sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

[dir="rtl"] .product-sale-badge {
    right: auto;
    left: 15px;
}

.product-sale-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

[dir="rtl"] .product-sale-badge-large {
    right: auto;
    left: 20px;
}

/* Product Card Disabled Button */
.course-card-btn-disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-main-image img {
    width: 100%;
    height: auto;
}

.product-placeholder-image {
    background: #f8f9fa;
    padding: 80px;
    text-align: center;
    border-radius: 16px;
}

.product-placeholder-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.product-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.product-category-badge:hover {
    background: var(--primary-color);
    color: white;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0;
    line-height: 1.3;
}

.product-price-box {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.05) 0%, rgba(169, 128, 253, 0.05) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .product-price-box {
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

.product-price-box .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-box del {
    color: #999;
    font-size: 1.2rem;
    margin-left: 10px;
}

[dir="rtl"] .product-price-box del {
    margin-left: 0;
    margin-right: 10px;
}

.product-price-box ins {
    text-decoration: none;
    color: #28a745;
}

.product-short-description {
    color: #666;
    line-height: 1.8;
    margin: 20px 0;
}

/* Stock Status */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Add to Cart Form */
.product-add-to-cart .quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

[dir="rtl"] .product-add-to-cart .quantity {
    margin-right: 0;
    margin-left: 15px;
}

.product-add-to-cart .quantity .qty {
    width: 80px;
    padding: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.product-add-to-cart .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-add-to-cart .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
}

.out-of-stock-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Product Meta */
.product-meta-info .meta-item {
    margin-bottom: 10px;
}

.product-meta-info .meta-label {
    color: #666;
    margin-left: 8px;
}

[dir="rtl"] .product-meta-info .meta-label {
    margin-left: 0;
    margin-right: 8px;
}

.product-meta-info .meta-value {
    font-weight: 600;
    color: #333;
}

/* Share Buttons */
.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: #666;
}

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

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

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Product Tabs */
.product-nav-tabs {
    border: none;
    gap: 10px;
    margin-bottom: 30px;
}

.product-nav-tabs .nav-link {
    border: none;
    background: #f8f9fa;
    color: #666;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-nav-tabs .nav-link:hover {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
}

.product-nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.product-tab-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-description {
    color: #666;
    line-height: 1.9;
}

.product-attributes table {
    width: 100%;
}

.product-attributes th,
.product-attributes td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.product-attributes th {
    font-weight: 600;
    color: #333;
    width: 30%;
}

/* Related Products */
.related-products-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* ========================================
   WooCommerce Cart Page Styles
   ======================================== */
.aromh-cart-wrapper {
    padding: 40px 0;
}

.cart-items-card,
.cart-totals-card,
.coupon-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cart-card-header,
.cart-totals-header,
.coupon-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 25px;
}

.cart-card-header h3,
.cart-totals-header h3,
.coupon-card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cart Items */
.cart-items-list {
    padding: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-name a {
    color: #1a1a2e;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.cart-item-name a:hover {
    color: var(--primary-color);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
}

.cart-item-quantity .qty {
    width: 70px;
    padding: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
}

.cart-item-subtotal {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 16px;
}

.cart-item-remove .remove-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-item-remove .remove-item:hover {
    background: #dc3545;
    color: white;
}

/* Cart Actions */
.cart-card-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.btn-continue-shopping,
.btn-update-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-continue-shopping {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-update-cart {
    background: #6c757d;
    color: white;
}

.btn-update-cart:hover {
    background: #5a6268;
}

/* Coupon */
.coupon-card-header {
    background: #f8f9fa;
    color: #333;
}

.coupon-form {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
}

.coupon-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-apply-coupon {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-apply-coupon:hover {
    background: var(--secondary-color);
}

/* Cart Totals */
.cart-totals-body {
    padding: 25px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.totals-row:last-child {
    border-bottom: none;
}

.totals-label {
    color: #666;
    font-size: 14px;
}

.totals-value {
    font-weight: 600;
    color: #333;
}

.totals-row.order-total {
    border-top: 2px solid #eee;
    padding-top: 20px;
    margin-top: 10px;
}

.totals-row.order-total .totals-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.totals-row.order-total .totals-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-totals-footer {
    padding: 20px 25px;
    background: #f8f9fa;
}

.btn-proceed-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-proceed-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
    color: white;
}

/* Secure Payment Badge */
.secure-payment-badge {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.secure-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.secure-badge-content i {
    font-size: 24px;
}

.payment-methods-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-methods-icons img {
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods-icons img:hover {
    opacity: 1;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-subtotal {
        grid-column: span 1;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .btn-continue-shopping,
    .btn-update-cart {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   WooCommerce Checkout Page Styles
   ======================================== */
.aromh-checkout-wrapper {
    padding: 40px 0;
}

.checkout-details-card,
.checkout-additional-card,
.checkout-order-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.checkout-section-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 18px 25px;
}

.checkout-section-header h3,
.checkout-section-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section-body {
    padding: 25px;
}

/* Form Fields */
.woocommerce-checkout .form-row {
    margin-bottom: 20px;
}

.woocommerce-checkout label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.woocommerce-checkout .required {
    color: #dc3545;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 55, 139, 0.1);
}

.woocommerce-checkout textarea {
    min-height: 120px;
    resize: vertical;
}

/* Order Items in Checkout */
.order-items-list {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.order-item-image {
    position: relative;
    flex-shrink: 0;
}

.order-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .order-item-qty {
    right: auto;
    left: -8px;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

/* Order Totals in Checkout */
.order-totals {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

/* Payment Methods */
.checkout-payment-section {
    padding: 0;
}

.checkout-payment-section .checkout-section-header {
    background: #f8f9fa;
    color: #333;
}

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

.wc_payment_method {
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wc_payment_method:hover {
    border-color: var(--primary-color);
}

.wc_payment_method.active,
.wc_payment_method:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(59, 55, 139, 0.03);
}

.wc_payment_method label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
}

.wc_payment_method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.payment_box {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
}

/* Place Order Button */
.place-order {
    padding: 20px 25px;
}

.btn-place-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-place-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.btn-place-order:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Terms and Conditions */
.woocommerce-terms-and-conditions-wrapper {
    padding: 15px 25px;
    background: #f8f9fa;
}

.woocommerce-terms-and-conditions-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
}

/* ========================================
   WooCommerce My Account Page Styles
   ======================================== */
.aromh-myaccount-wrapper {
    padding: 40px 0;
}

/* Account Sidebar */
.account-sidebar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.account-user-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.user-avatar {
    margin-bottom: 15px;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    margin: 0 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
}

.user-email {
    font-size: 13px;
    opacity: 0.8;
}

/* Account Navigation */
.account-navigation {
    padding: 15px 0;
}

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

.account-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.account-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-nav-list li a:hover {
    background: rgba(59, 55, 139, 0.05);
    color: var(--primary-color);
    padding-right: 30px;
}

[dir="rtl"] .account-nav-list li a:hover {
    padding-right: 25px;
    padding-left: 30px;
}

.account-nav-list li.is-active a {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .account-nav-list li.is-active a {
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

.account-nav-list li a i {
    font-size: 18px;
}

/* Logout Link */
.account-nav-list li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #dc3545;
}

.account-nav-list li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Account Content */
.account-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    min-height: 400px;
}

/* Dashboard Welcome */
.account-content .woocommerce-MyAccount-content > p:first-child {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

[dir="ltr"] .woocommerce-orders-table th,
[dir="ltr"] .woocommerce-orders-table td {
    text-align: left;
}

.woocommerce-orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.woocommerce-orders-table td {
    color: #666;
    font-size: 14px;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a:hover {
    background: var(--secondary-color);
}

/* Address Cards */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.woocommerce-Address {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.woocommerce-Address-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.woocommerce-Address-title a {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-Address-title a:hover {
    text-decoration: underline;
}

.woocommerce-Address address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
}

/* Account Forms */
.woocommerce-EditAccountForm {
    max-width: 600px;
}

.woocommerce-EditAccountForm .form-row {
    margin-bottom: 20px;
}

.woocommerce-EditAccountForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
}

.woocommerce-EditAccountForm input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.woocommerce-EditAccountForm .woocommerce-Button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
}

/* Downloads */
.woocommerce-table--order-downloads {
    width: 100%;
}

.woocommerce-table--order-downloads th,
.woocommerce-table--order-downloads td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

/* Responsive Account */
@media (max-width: 991px) {
    .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .account-sidebar {
        margin-bottom: 20px;
    }
    
    .account-nav-list li a {
        padding: 12px 20px;
    }
    
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
    }
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce-message {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #28a745;
}

[dir="rtl"] .woocommerce-message {
    border-left: none;
    border-right: 4px solid #28a745;
}

.woocommerce-info {
    background: rgba(23, 162, 184, 0.1);
    border-left: 4px solid #17a2b8;
    color: #17a2b8;
}

[dir="rtl"] .woocommerce-info {
    border-left: none;
    border-right: 4px solid #17a2b8;
}

.woocommerce-error {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

[dir="rtl"] .woocommerce-error {
    border-left: none;
    border-right: 4px solid #dc3545;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    font-family: 'bootstrap-icons';
    font-size: 20px;
}

/* WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--secondary-color);
    color: white;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}



/* ========================================
   Upcoming Courses Section - Category Tabs
   ======================================== */
.upcoming-courses-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.upcoming-courses-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
    border-color: rgba(59, 55, 139, 0.2);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 55, 139, 0.3);
}

.category-tab i {
    font-size: 16px;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.category-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Products Grid */
.upcoming-products-grid {
    min-height: 200px;
}

.product-item {
    transition: all 0.4s ease;
}

.product-item.product-hidden {
    display: none;
}

.product-item.product-visible {
    display: block;
}

/* Load More Buttons for Products */
#loadMoreProducts,
#loadAllProducts {
    margin: 0 10px;
}

/* Responsive Category Tabs */
@media (max-width: 991px) {
    .upcoming-courses-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-tabs {
        justify-content: center;
    }
    
    .upcoming-courses-filters .filter-results-count {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-tab {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .tab-count {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

/* ========================================
   Checkout Order Items - Edit Controls
   ======================================== */
.order-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.order-item-image {
    position: relative;
    flex-shrink: 0;
}

.order-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.order-item-quantity-controls a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-item-quantity-controls a:hover {
    color: var(--primary-color);
}

.order-item-quantity-controls .remove-item-link:hover {
    color: #dc3545;
}

.order-item-quantity-controls .qty-separator {
    color: #ddd;
    font-size: 12px;
}

.order-item-price-qty {
    text-align: left;
    flex-shrink: 0;
}

[dir="rtl"] .order-item-price-qty {
    text-align: right;
}

.order-item-qty-badge {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

.checkout-edit-cart-notice {
    padding: 15px 0;
    text-align: center;
    border-top: 1px dashed #e9ecef;
    margin-top: 10px;
}

.btn-edit-full-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-edit-full-cart:hover {
    background: var(--primary-color);
    color: white;
}

/* ========================================
   Single Product Page Styles
   ======================================== */

/* Product Hero Section - Contained */
.woocommerce-single-product-page .product-hero-section {
    position: relative;
    min-height: 180px;
    overflow: hidden;
}

/* Product Content Section - White Background */
.product-content-section {
    background: #ffffff;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-placeholder-image {
    background: #f8f9fa;
    padding: 80px;
    text-align: center;
    border-radius: 16px;
}

.product-placeholder-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.product-thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    padding: 0;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 55, 139, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 8px;
}

[dir="rtl"] .product-category-badge {
    margin-left: 0;
    margin-right: 8px;
}

.product-category-badge:hover {
    background: var(--primary-color);
    color: white;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0;
    line-height: 1.3;
}

.product-price-box {
    background: linear-gradient(135deg, rgba(59, 55, 139, 0.08) 0%, rgba(169, 128, 253, 0.08) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .product-price-box {
    border-right: none;
    border-left: 4px solid var(--primary-color);
}

.product-price-box .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-box del {
    color: #999;
    font-size: 1.2rem;
    margin-left: 10px;
}

[dir="rtl"] .product-price-box del {
    margin-left: 0;
    margin-right: 10px;
}

.product-price-box ins {
    text-decoration: none;
    color: #28a745;
}

.product-short-description {
    color: #666;
    line-height: 1.8;
    margin: 20px 0;
}

/* Stock Status */
.product-stock-status {
    margin: 20px 0;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.stock-badge.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Add to Cart Form */
.product-add-to-cart {
    margin-top: 25px;
}

.product-add-to-cart .quantity {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

[dir="rtl"] .product-add-to-cart .quantity {
    margin-left: 0;
    margin-right: 15px;
}

.product-add-to-cart .quantity input {
    width: 70px;
    padding: 12px 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-add-to-cart .quantity input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.product-add-to-cart .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-add-to-cart .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 55, 139, 0.3);
}

.out-of-stock-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Product Meta Info */
.product-meta-info {
    font-size: 14px;
    color: #666;
}

.meta-item {
    margin-bottom: 8px;
}

.meta-label {
    font-weight: 600;
    color: #333;
    margin-left: 8px;
}

[dir="rtl"] .meta-label {
    margin-left: 0;
    margin-right: 8px;
}

/* Product Share Box - Unique Styling */
.product-share-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
}

.product-share-box .share-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-icon:hover {
    transform: scale(1.1);
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-whatsapp { background: #25d366; }

.share-facebook:hover { background: #166fe5; }
.share-twitter:hover { background: #333; }
.share-whatsapp:hover { background: #20c35b; }

/* Product Sale Badge - Large */
.product-sale-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

[dir="rtl"] .product-sale-badge-large {
    right: auto;
    left: 20px;
}

/* Product Tabs */
.product-tabs-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e9ecef;
}

.product-nav-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 25px;
    font-weight: 600;
    color: #666;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.product-nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(59, 55, 139, 0.05);
}

.product-nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.product-tab-content {
    padding: 30px 0;
}

.product-tab-content .tab-pane {
    animation: fadeInProduct 0.3s ease;
}

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

.product-description {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

.product-description p {
    margin-bottom: 1.2em;
}

.product-attributes table {
    width: 100%;
    border-collapse: collapse;
}

.product-attributes th,
.product-attributes td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    text-align: right;
}

[dir="ltr"] .product-attributes th,
[dir="ltr"] .product-attributes td {
    text-align: left;
}

.product-attributes th {
    font-weight: 600;
    color: #333;
    width: 30%;
    background: #f8f9fa;
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
    padding-top: 60px;
}

.related-products-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* Responsive for Single Product */
@media (max-width: 991px) {
    .product-title {
        font-size: 1.6rem;
    }
    
    .product-price-box .price {
        font-size: 1.5rem;
    }
    
    .product-content-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .woocommerce-single-product-page .product-hero-section {
        min-height: 120px;
    }
    
    .product-content-section {
        padding: 30px 0;
    }
    
    .product-title {
        font-size: 1.4rem;
    }
    
    .product-add-to-cart .quantity {
        display: block;
        margin-bottom: 15px;
        margin-left: 0;
        margin-right: 0;
    }
    
    .product-add-to-cart .single_add_to_cart_button {
        width: 100%;
        padding: 14px 25px;
    }
    
    .product-nav-tabs {
        justify-content: flex-start;
    }
    
    .product-nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .product-share-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ========================================
   Simplified Checkout Form Styles
   ======================================== */

/* Registration Info Section */
.checkout-section.billing-section .woocommerce-billing-fields__field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-section.billing-section .form-row {
    margin: 0;
    padding: 0;
}

.checkout-section.billing-section .form-row label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.checkout-section.billing-section .form-row label .required {
    color: #dc3545;
}

.checkout-section.billing-section .form-row input,
.checkout-section.billing-section .form-row textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.checkout-section.billing-section .form-row input:focus,
.checkout-section.billing-section .form-row textarea:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 55, 139, 0.1);
}

.checkout-section.billing-section .form-row input::placeholder,
.checkout-section.billing-section .form-row textarea::placeholder {
    color: #adb5bd;
}

/* Notes textarea */
.checkout-additional-card .form-row textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form validation */
.checkout-section.billing-section .form-row.woocommerce-invalid input {
    border-color: #dc3545;
}

.checkout-section.billing-section .form-row.woocommerce-validated input {
    border-color: #28a745;
}

/* Hide country/state selectors if they appear */
.checkout-section.billing-section #billing_country_field,
.checkout-section.billing-section #billing_state_field,
.checkout-section.billing-section #billing_city_field,
.checkout-section.billing-section #billing_postcode_field,
.checkout-section.billing-section #billing_address_1_field,
.checkout-section.billing-section #billing_address_2_field,
.checkout-section.billing-section #billing_company_field,
.checkout-section.billing-section #billing_last_name_field {
    display: none !important;
}
