/* AI Training Hub - Main Stylesheet - Updated: 2025-01-27 */
/* Color Palette: #03045E, #023E8A, #0077B6, #0096C7, #00B4D8, #48CAE4, #90E0EF, #ADE8F4, #CAF0F8 */

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 150, 199, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top i {
    transition: transform 0.2s ease;
}

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

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

:root {
    /* Primary Colors */
    --primary-dark: #00167A;
    --primary-blue: #00167A;
    --primary-cyan: #0096C7;
    --secondary-blue: #00B4D8;
    --accent-blue: #48CAE4;
    --light-blue: #90E0EF;
    --lighter-blue: #ADE8F4;
    --lightest-blue: #CAF0F8;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Layout Variables */
    --header-height: 70px;
    --container-max-width: 1200px;
    --space-lg: 2rem;
    --button-border-radius: 8px;
    
    /* Shadows */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    
    /* Light mode colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-primary: #343A40;
    --text-secondary: #495057;
    --text-muted: #6B7280;
    --border-color: #E9ECEF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Dark mode colors */
[data-theme="dark"] {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-card: #1E293B;
    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Dark mode text overrides for specific elements */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] p {
    color: var(--text-primary);
}

[data-theme="dark"] p strong {
    color: var(--text-primary);
}

[data-theme="dark"] .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
}



[data-theme="dark"] .content-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .content-paragraph {
    color: var(--text-primary);
}

[data-theme="dark"] .progression-cta-title {
    color: var(--text-primary);
}

[data-theme="dark"] .progression-cta-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .progression-cta-feature span {
    color: var(--text-primary);
}

[data-theme="dark"] .testimonial-card-info h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .testimonial-card-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .testimonial-card-description {
    color: var(--text-secondary);
}



[data-theme="dark"] .image-card h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .image-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .image-card-content {
    border-color: var(--primary-dark);
}

[data-theme="dark"] .detail-title {
    color: var(--text-primary);
}

[data-theme="dark"] .detail-content {
    color: var(--text-secondary);
}

[data-theme="dark"] .expandable-title {
    color: var(--white);
}

[data-theme="dark"] .expandable-subtitle {
    color: var(--white);
}

[data-theme="dark"] .expandable-metric {
    color: var(--white);
}

[data-theme="dark"] .stats-section {
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .stat-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .stat-item:hover {
    transform: translateY(-2px);
    background: var(--bg-secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-blue);
}

[data-theme="dark"] .stat-number {
    color: var(--text-primary);
    text-shadow: none;
}

[data-theme="dark"] .stat-label {
    color: var(--text-secondary);
}

[data-theme="dark"] .expandable-details {
    background: var(--bg-card);
}

[data-theme="dark"] .expandable-details.active {
    background: var(--bg-card);
}

[data-theme="dark"] .expandable-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .expandable-header {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .upskill-list {
    background: var(--bg-secondary);
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .upskill-list:hover {
    background: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-left-color: var(--accent-blue);
}

[data-theme="dark"] .upskill-list h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .upskill-list strong {
    color: var(--text-primary);
}

[data-theme="dark"] .progression-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .logo {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .feature-title {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Dark mode form styles */
[data-theme="dark"] .form-label {
    color: var(--text-primary);
    font-weight: 600;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.2);
}

[data-theme="dark"] .checkbox-label {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-sidebar-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .contact-sidebar-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .section-header {
    color: var(--accent-blue);
}

[data-theme="dark"] .section-content {
    color: var(--text-primary);
}

[data-theme="dark"] .cta-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

[data-theme="dark"] .cta-button:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    border: none;
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    transform: translateY(-3px);
}

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

[data-theme="dark"] .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Dark mode navigation menu styles */
[data-theme="dark"] .nav-menu a {
    color: var(--white);
}

[data-theme="dark"] .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

[data-theme="dark"] .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .dropdown-menu a {
    color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Dark mode icon card styles */
[data-theme="dark"] .icon-card h4 {
    color: var(--white);
}

[data-theme="dark"] .icon-card p {
    color: var(--text-secondary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 2rem;
    color: var(--primary-blue);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    background: var(--bg-card);
    padding: 0.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header.scrolled {
    padding: 0.15rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(30, 41, 59, 0.95);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-left: -3rem;
}

.logo {
    height: 56px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 56px !important;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-right: -1rem;
}

.nav-menu a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--lightest-blue);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 80%;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-800) 100%);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 22, 122, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid var(--primary-blue);
    padding: 8px 0;
    backdrop-filter: blur(10px);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownSlideIn 0.3s ease-out;
    z-index: 1002;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-menu a {
    display: block;
    padding: 16px 24px;
    color: var(--white);
    border-bottom: none !important;
    border: none !important;
    transition: all 0.3s ease;
    background: none !important;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

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

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--light-blue);
    transform: translateX(8px);
    box-shadow: inset 4px 0 0 var(--accent-blue);
    padding-right: 24px;
}

/* Override main navigation hover effect for dropdown items */
.nav-menu .dropdown-menu a::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.nav-menu .dropdown-menu a:hover::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.dark-mode-toggle:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
}

.dark-mode-toggle i {
    transition: transform 0.3s ease;
}

[data-theme="dark"] .dark-mode-toggle i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.4) contrast(1.05);
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Fallback for when video fails to load */
.hero-video:not([src]) {
    background-image: url('../images/hero-bg-poster.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Optimize video on slower devices */
@media (max-width: 768px) {
    .hero-video {
        filter: brightness(1.2) contrast(1.0);
    }
}

/* Reduce video quality on slower connections */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background-image: url('../images/hero-bg-poster.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Video loading states */
.video-loading {
    opacity: 0.7;
    filter: blur(1px);
}

.video-ready {
    opacity: 1;
    filter: brightness(1.4) contrast(1.05);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.video-error {
    display: none;
}

/* Loading spinner for video */
.hero-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-loading::before {
    opacity: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 22, 122, 0.8) 0%, rgba(0, 119, 182, 0.7) 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 22, 122, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.hero .tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 202, 228, 0.4);
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
}

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

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

/* Main Content */
.main-content {
    padding-top: 70px;
}

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

.section {
    padding: 2rem 0;
    margin: 0;
}

.section:not(:first-child) {
    margin-top: 1rem;
}

/* .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
} */

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
}

/* Content wrapper for better readability */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Introductory paragraphs that act as sub-headings */
.content-wrapper > p:first-of-type:not([class*="grid"]),
.content-wrapper > p:only-child:not([class*="grid"]) {
    text-align: center;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

[data-theme="dark"] .content-wrapper > p:first-of-type:not([class*="grid"]),
[data-theme="dark"] .content-wrapper > p:only-child:not([class*="grid"]) {
    color: var(--text-primary);
}

/* Highlight text */
.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--lightest-blue);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

/* Example boxes */
.example-box {
    background: linear-gradient(135deg, #e6f3ff, #cce7ff);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: none;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.15);
    cursor: pointer;
}

.example-box:hover {
    background: linear-gradient(135deg, var(--lighter-blue), var(--light-blue));
    border-left-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.2);
}

.example-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

[data-theme="dark"] .example-box {
    background: rgba(72, 202, 228, 0.1);
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .example-box:hover {
    background: rgba(72, 202, 228, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-left-color: var(--primary-blue);
}

[data-theme="dark"] .example-box h4 {
    color: var(--text-primary);
}

/* Pro tip boxes */
.pro-tip {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #f39c12;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.1);
    cursor: pointer;
}

.pro-tip:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.3);
    border-left-color: #e67e22;
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
}

.pro-tip h4 {
    color: #d68910;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

[data-theme="dark"] .pro-tip {
    background: var(--bg-secondary);
    border-left: 4px solid #f39c12;
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .pro-tip:hover {
    background: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-left-color: #e67e22;
}

[data-theme="dark"] .pro-tip h4 {
    color: #f39c12;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    padding: 2.5rem;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 22, 122, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    border: 1.5px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-blue);
    background: var(--bg-secondary);
}

.feature-title {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feature-title i {
    font-size: 1.2em;
}

.feature-content {
    padding: 1.5rem;
}

.section-header {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Company Cards Grid */
.expandable-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

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

.expandable-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.expandable-header {
    padding: 25px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.expandable-icon {
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.expandable-info {
    flex: 1;
    text-align: center;
    margin-left: -10px;
}

.expandable-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.3;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.expandable-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0 0 10px 0;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.expandable-metric {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.expand-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 1.2rem;
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.expandable-header:hover .expand-icon {
    transform: translateY(-50%) rotate(0deg);
}

.expandable-details {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.expandable-details.active {
    max-height: 500px;
    opacity: 1;
    padding: 20px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content {
    color: #6b7280;
    line-height: 1.6;
}

.remote-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.remote-full {
    background: #dcfce7;
    color: #166534;
}

.remote-mostly {
    background: #fef3c7;
    color: #92400e;
}

.remote-regional {
    background: #fee2e2;
    color: #991b1b;
}

/* Icon Cards Grid */
.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Three Column Icon Cards Grid */
.icon-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .icon-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.icon-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 4, 94, 0.15);
}

.icon-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.icon-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.icon-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Upskill List */
.upskill-list {
    background: linear-gradient(135deg, var(--lightest-blue), var(--lighter-blue));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--accent-blue);
    box-shadow: 0 8px 25px rgba(3, 4, 94, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.upskill-list:hover {
    background: linear-gradient(135deg, var(--lighter-blue), var(--light-blue));
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(3, 4, 94, 0.2);
    border-left-color: var(--primary-blue);
}

.upskill-list h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.upskill-list li {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
}

.upskill-list li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

.upskill-list strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Career Progression Grid */
.gradient-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-card {
    border-radius: 1rem;
    padding: 2px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Individual card gradient backgrounds */
.gradient-card:nth-child(1) {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.gradient-card:nth-child(2) {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.gradient-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-card:nth-child(5) {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.gradient-card:nth-child(6) {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.gradient-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.2);
}

.gradient-card .gradient-card-content {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 1.5rem;
    min-height: 100%;
    text-align: center;
}

.gradient-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
}

.gradient-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gradient-card-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gradient-card-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50%;
    padding: 1.25rem 1.5rem !important;
    margin-bottom: 1rem;
    max-width: 200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pay-amount {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pay-desc {
    font-size: 0.8rem;
    font-weight: 500;
}

.gradient-card-actions h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.gradient-card-actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.gradient-card-actions li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.gradient-card-actions li i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #10b981;
}



/* Icon background colors */
.bg-purple-100 { background-color: #f3e8ff; }
.bg-pink-100 { background-color: #fce7f3; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-green-100 { background-color: #dcfce7; }
.bg-orange-100 { background-color: #fed7aa; }

/* Dark mode icon background overrides */
[data-theme="dark"] .bg-purple-100 { 
    background-color: rgba(147, 51, 234, 0.2) !important; 
}
[data-theme="dark"] .bg-pink-100 { 
    background-color: rgba(219, 39, 119, 0.2) !important; 
}
[data-theme="dark"] .bg-blue-100 { 
    background-color: rgba(37, 99, 235, 0.2) !important; 
}
[data-theme="dark"] .bg-green-100 { 
    background-color: rgba(22, 163, 74, 0.2) !important; 
}
[data-theme="dark"] .bg-orange-100 { 
    background-color: rgba(234, 88, 12, 0.2) !important; 
}

/* Icon colors */
.text-purple-600 { color: #9333ea; }
.text-pink-600 { color: #db2777; }
.text-blue-600 { color: #2563eb; }
.text-green-600 { color: #16a34a; }
.text-orange-600 { color: #ea580c; }

/* Pay amount colors */
.text-purple-700 { color: #7c3aed; }
.text-pink-700 { color: #be185d; }
.text-blue-700 { color: #1d4ed8; }
.text-green-700 { color: #15803d; }
.text-orange-700 { color: #c2410c; }

/* Pay background colors */
.bg-purple-50 { border-radius: 0.75rem; padding: 1.25rem 1rem; }
.bg-pink-50 { border-radius: 0.75rem; padding: 1.25rem 1rem; }
.bg-blue-50 { border-radius: 0.75rem; padding: 1.25rem 1rem; }
.bg-green-50 { border-radius: 0.75rem; padding: 1.25rem 1rem; }
.bg-orange-50 { border-radius: 0.75rem; padding: 1.25rem 1rem; }

/* Success Stories Grid */
.testimonial-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--primary-dark);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 22, 122, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(3, 4, 94, 0.15);
}

.testimonial-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    line-height: 0;
    font-size: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.testimonial-card-content {
    padding: 1.5rem;
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.testimonial-card-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.testimonial-card-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.testimonial-card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
    font-weight: 600;
}

.testimonial-card-description {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Image Cards Grid */
.image-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.image-card {
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 22, 122, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

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

.image-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(3, 4, 94, 0.15);
}

.image-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.image-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    border: 1px solid var(--primary-dark);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.image-card h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
}

.image-card p {
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: var(--white);
    padding: 3rem 0 0;
}

[data-theme="dark"] .footer {
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* Ensure 5 columns on larger screens */
@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.footer-section h3 {
    color: var(--lightest-blue);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-logo {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: -5px;
    margin-left: -15px;
    padding-left: 0;
}

/* Center logo on mobile devices */
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        margin-left: 0;
        margin-top: 0;
    }
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    margin-left: 0;
    padding-left: 0;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--lightest-blue);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    text-align: center;
    opacity: 0.8;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.footer-bottom p {
    font-size: 0.85rem !important;
    margin-bottom: 0;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Margin Utilities */
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

.ml-sm { margin-left: 1rem; }
.ml-md { margin-left: 2rem; }
.ml-lg { margin-left: 3rem; }

.mr-sm { margin-right: 1rem; }
.mr-md { margin-right: 2rem; }
.mr-lg { margin-right: 3rem; }

.mx-sm { margin-left: 1rem; margin-right: 1rem; }
.mx-md { margin-left: 2rem; margin-right: 2rem; }
.mx-lg { margin-left: 3rem; margin-right: 3rem; }

.my-sm { margin-top: 1rem; margin-bottom: 1rem; }
.my-md { margin-top: 2rem; margin-bottom: 2rem; }
.my-lg { margin-top: 3rem; margin-bottom: 3rem; }

/* Padding Utilities */
.p-sm { padding: 1rem; }
.p-md { padding: 2rem; }
.p-lg { padding: 3rem; }

.px-sm { padding-left: 1rem; padding-right: 1rem; }
.px-md { padding-left: 2rem; padding-right: 2rem; }
.px-lg { padding-left: 3rem; padding-right: 3rem; }

.py-sm { padding-top: 1rem; padding-bottom: 1rem; }
.py-md { padding-top: 2rem; padding-bottom: 2rem; }
.py-lg { padding-top: 3rem; padding-bottom: 3rem; }

/* Legacy utilities (keeping for backward compatibility) */
.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dark-mode-toggle {
        margin-right: 0.5rem;
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--card-shadow);
        z-index: 1001;
        display: flex;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--lightest-blue);
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: var(--primary-blue);
        background: none;
        border-bottom: 1px solid rgba(0, 22, 122, 0.1);
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(0, 22, 122, 0.1);
        color: var(--primary-dark);
        transform: none;
        box-shadow: none;
        padding-right: 16px;
    }
    
    .dropdown-menu a:hover::after {
        display: none;
    }
    
    /* Dark mode mobile navigation styles */
    [data-theme="dark"] .nav-menu {
        background: var(--bg-card);
        border-top: 1px solid var(--border-color);
    }
    
    [data-theme="dark"] .nav-menu a {
        color: var(--white);
    }
    
    [data-theme="dark"] .dropdown-menu {
        background: var(--bg-secondary);
    }
    
    [data-theme="dark"] .dropdown-menu a {
        color: var(--white);
        border-bottom: 1px solid var(--border-color);
    }
    
    [data-theme="dark"] .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .expandable-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .gradient-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .image-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 2rem 1rem;
    }
    
    .stats-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .expandable-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gradient-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .image-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .gradient-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Tools Carousel Styles */
.tools-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.tools-carousel {
    overflow: hidden;
    position: relative;
}

.tools-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.tools-carousel-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
}

.tools-carousel-slide .icon-card {
    height: 100%;
    margin: 0;
}

.tools-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tools-carousel-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.tools-carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.tools-carousel-prev {
    left: -25px;
}

.tools-carousel-next {
    right: -25px;
}

.tools-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

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

.tools-carousel-dot:hover {
    background: #d1d5db;
}

.tools-carousel-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .tools-carousel-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .tools-carousel-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .tools-carousel-slide {
        flex: 0 0 100%;
    }
    
    .tools-carousel-container {
        padding: 0 40px;
    }
    
    .tools-carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .tools-carousel-prev {
        left: -20px;
    }
    
    .tools-carousel-next {
        right: -20px;
    }
    
    .tools-carousel-dots {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tools-carousel-container {
        padding: 0 30px;
    }
    
    .tools-carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .tools-carousel-prev {
        left: -17.5px;
    }
    
    .tools-carousel-next {
        right: -17.5px;
    }
}

/* Additional styles for get-first-job.html - ADD TO STYLES.CSS */

/* Page-specific styles for get-first-job.html */
.card-transition { 
    transition: all 0.3s ease; 
}

.expand-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
}

.expand-content.active { 
    max-height: 500px; 
}

.rotate-icon { 
    transition: transform 0.3s ease; 
}

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

/* Two-column layout for introduction section */
.intro-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .intro-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Introduction section styles */
.intro-text {
    order: 1;
}

.intro-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}



.intro-paragraph-primary {
    line-height: 1.6;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.intro-paragraph-secondary {
    line-height: 1.6;
    font-size: 1rem;
}

.intro-image-container {
    order: 2;
    display: flex;
    justify-content: center;
}

.intro-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
    transition: all 0.3s ease;
}

.intro-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.25);
}

.intro-highlight-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.intro-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 600px;
    text-align: center;
}

[data-theme="dark"] .intro-highlight {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-left: 4px solid var(--primary-blue);
}

[data-theme="dark"] .highlight-text {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-left: 4px solid var(--primary-blue);
}

/* Interactive highlight text */
.highlight-text-interactive:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Why AI Data Training section */
.two-column-layout {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .two-column-layout {
        flex-direction: row;
        gap: 3rem;
        align-items: start;
    }
}

.content-text-area {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.content-paragraph:last-child {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.content-image-container {
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 1rem;
    min-height: 300px;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.content-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 1.5rem;
    width: 100%;
}

.content-highlight-container {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 1;
}

.content-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 600px;
    text-align: center;
}

.content-stats-container {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 2;
}

.content-stats {
    max-width: 600px;
    width: 100%;
}

.content-caption {
    text-align: center;
    margin-top: 0;
    order: 3;
}

/* Pay progression section */
.progression-intro {
    text-align: center;
}

.progression-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.progression-cta-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.progression-cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.2);
}

.progression-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.progression-cta-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.progression-cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.progression-cta-feature {
    display: flex;
    align-items: center;
}

.progression-cta-feature i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.progression-cta-feature:nth-child(1) i {
    color: #9333ea;
}

.progression-cta-feature:nth-child(2) i {
    color: #db2777;
}

.progression-cta-feature:nth-child(3) i {
    color: #f59e0b;
}

.progression-cta-feature span {
    font-size: 0.9rem;
    color: #6b7280;
}



/* Call-to-Action section */
.cta-section {
    margin-top: 0;
}

.cta-grid-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.cta-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 150, 199, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 380px;
    justify-self: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(1);
    transition: transform 0.4s ease;
}

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

.cta-card:hover::after {
    left: 100%;
}

.cta-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 255, 255, 0.95) 100%);
}

[data-theme="dark"] .cta-card:hover {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.cta-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    margin-left: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.cta-card:hover .cta-card-title {
    color: var(--primary-blue);
}

.cta-icon-purple {
    color: #9333ea;
    margin-right: 0.75rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.3));
}

.cta-icon-pink {
    color: #db2777;
    margin-right: 0.75rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(219, 39, 119, 0.3));
}

.cta-icon-yellow {
    color: #f59e0b;
    margin-right: 0.75rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.cta-icon-blue {
    color: #0077b5;
    margin-right: 0.75rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 119, 181, 0.3));
}

.cta-card:hover .cta-icon-purple {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.4));
}

.cta-card:hover .cta-icon-pink {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(219, 39, 119, 0.4));
}

.cta-card:hover .cta-icon-yellow {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.cta-card:hover .cta-icon-blue {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 119, 181, 0.4));
}

.cta-card-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.cta-card:hover .cta-card-description {
    color: var(--text-primary);
}

.cta-button,
a.cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

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

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

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.4);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.cta-button:active {
    transform: translateY(0) scale(1.02);
}

/* Dark mode enhancements for CTA cards */
[data-theme="dark"] .cta-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.9) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 180, 216, 0.2);
}

[data-theme="dark"] .cta-card:hover {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 41, 59, 0.95) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-blue);
}

[data-theme="dark"] .cta-card-title {
    color: var(--text-primary);
}

[data-theme="dark"] .cta-card:hover .cta-card-title {
    color: var(--accent-blue);
}

[data-theme="dark"] .cta-card-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .cta-card:hover .cta-card-description {
    color: var(--text-primary);
}

[data-theme="dark"] .cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.4);
}

[data-theme="dark"] .cta-button:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    box-shadow: 0 8px 25px rgba(0, 150, 199, 0.5);
}



/* Responsive adjustments for new content */
@media (max-width: 768px) {
    .intro-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .content-text-area {
        order: 2;
        padding: 1rem;
    }
    
    .content-image-container {
        order: 1;
        min-height: 250px;
    }
    
    .progression-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-card {
        max-width: none;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .cta-card-title {
        font-size: 1.25rem;
    }
    
    .cta-icon-purple,
    .cta-icon-pink,
    .cta-icon-yellow,
    .cta-icon-blue {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Additional styles for what-is-ai-training.html */
.gradient-cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.centered-text {
    text-align: center;
}

.centered-box {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.example-box-inline {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.example-box-inline p {
    margin: 0;
    font-style: italic;
    color: #6c757d;
}

/* Dark mode example-box-inline styles */
[data-theme="dark"] .example-box-inline {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .example-box-inline p {
    color: var(--text-secondary);
}

.x-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 3px;
    margin-right: 0.5rem;
    position: relative;
}

.x-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 10px;
}

/* Social media X icon styling */
.social-link .x-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    margin-right: 0;
    position: static;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    font-family: "Arial Black", "Helvetica Bold", sans-serif;
    transform: scale(1.1);
}

/* Responsive adjustments for gradient cards grid */
@media (max-width: 768px) {
    .gradient-cards-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .gradient-cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Career Ladder Styles */
.career-ladder {
    max-width: 1000px;
    margin: 3rem auto;
    position: relative;
}

.career-level {
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.career-level:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.career-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.entry-level::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.intermediate-level::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.advanced-level::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.expert-level::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.level-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.level-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pay-range {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.role-container {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.role-info {
    flex: 1;
}

.role-info h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.role-for {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.role-tasks {
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.role-pay {
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.role-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.expert-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.expert-roles .role-container {
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.career-progression-arrows {
    text-align: center;
    margin: 2rem 0;
}

.arrow-up {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.arrow-up i {
    font-size: 1.1rem;
}

/* Dark mode adjustments */
[data-theme="dark"] .career-level {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .level-header {
    background: var(--bg-primary);
}

/* Job Listing Cards - Single Column Style */
.jobs-listing-container {
    max-width: 1000px;
    margin: 3rem auto;
}

.job-listing-card {
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.job-header {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-level-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-pay {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.job-body {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.job-info {
    flex: 1;
}

.job-title {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.job-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.job-company strong,
.job-type strong,
.job-location strong,
.job-posted strong,
.job-notes strong {
    color: var(--text-secondary);
}

.job-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

/* Mobile adjustments for job cards */
@media (max-width: 768px) {
    .job-body {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-icon {
        width: 100%;
        margin: 0 auto;
    }
    
    .job-header {
        padding: 1rem 1.5rem;
    }
    
    .job-body {
        padding: 1.5rem;
    }
    
    .job-action {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

.job-action {
    padding: 0 2rem 2rem 2rem;
}

/* Dark mode adjustments for job cards */
[data-theme="dark"] .job-listing-card {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .job-header {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .job-icon {
    color: var(--white);
}

[data-theme="dark"] .role-info h3 {
    color: var(--white);
}

[data-theme="dark"] .role-for {
    color: var(--text-primary);
}

[data-theme="dark"] .role-tasks {
    color: var(--text-secondary);
}

[data-theme="dark"] .role-pay {
    color: var(--accent-blue);
}

[data-theme="dark"] .role-icon {
    color: var(--accent-blue);
}

[data-theme="dark"] .expert-roles .role-container {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Dark mode steps carousel styles */
[data-theme="dark"] .steps-carousel {
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .steps-carousel::before {
    background: var(--bg-card);
}

[data-theme="dark"] .step-content h3 {
    color: var(--white);
}

[data-theme="dark"] .step-content p {
    color: var(--text-secondary);
}

[data-theme="dark"] .step-progress {
    color: var(--white);
}

/* Responsive design */
@media (max-width: 768px) {
    .career-ladder {
        margin: 2rem auto;
    }
    
    .level-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .role-container {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .role-icon {
        width: auto;
        font-size: 2.5rem;
    }
    
    .expert-roles {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .expert-roles .role-container {
        padding: 1rem;
    }
    
    .pay-range {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .expert-roles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Next Steps List Styles */
/* Steps Carousel Styles */
.steps-list {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.step-progress {
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.steps-carousel {
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
    min-height: 300px;
    margin: 0 2rem;
    position: relative;
}

.steps-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue), var(--primary-dark));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.step-item {
    padding: 3rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.15s ease-out, transform 0.6s ease-out, visibility 0.15s ease-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    pointer-events: none;
    visibility: hidden;
}

.step-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.carousel-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: -25px;
}

.carousel-arrow.next {
    right: -25px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--bg-card);
}

.carousel-arrow:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: var(--bg-card);
    color: var(--text-secondary);
}

/* Carousel Dots Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: var(--text-secondary);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .steps-carousel {
        background: var(--bg-card);
        box-shadow: var(--card-shadow);
    }
    
    .step-content h3 {
        color: var(--text-primary);
    }
    
    .step-content p {
        color: var(--white);
    }
    
    .carousel-arrow {
        background: var(--bg-card);
        border-color: var(--border-color);
        color: var(--text-secondary);
    }
    
    .carousel-arrow:hover {
        background: var(--primary-blue);
        color: var(--white);
    }
    
    .carousel-dot {
        background: var(--border-color);
    }
    
    .carousel-dot:hover {
        background: var(--text-secondary);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow.prev {
        left: -20px;
    }
    
    .carousel-arrow.next {
        right: -20px;
    }
    
    .step-item {
        padding: 2rem 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-arrow.prev {
        left: -15px;
    }
    
    .carousel-arrow.next {
        right: -15px;
    }
}

/* Glossary Page Styles */
.search-section {
    text-align: center;
    margin-bottom: 3rem;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 3px solid var(--primary-blue);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.1);
    transform: translateY(-2px);
}

.search-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.search-btn:hover {
    color: var(--primary-blue);
    background: rgba(0, 150, 199, 0.1);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.search-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.1), rgba(0, 180, 216, 0.1));
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.search-tag:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.glossary-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.glossary-term {
    background: var(--bg-card);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.glossary-term:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-blue);
}

.glossary-term.highlight {
    animation: searchHighlight 2s ease-out;
}

.glossary-term.hidden {
    display: none;
}

.term-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: -2rem -2rem 1.5rem -2rem;
}

.term-header h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.term-category {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.term-content {
    display: grid;
    gap: 1.5rem;
}

.term-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.term-content h4::before {
    content: '';
    width: 4px;
    height: 1.1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 2px;
}

.term-definition p,
.term-details p,
.term-applications p,
.term-impact p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.term-tip {
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.1), rgba(0, 180, 216, 0.1));
    border-left: 4px solid var(--primary-cyan);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.term-tip h4 {
    color: var(--primary-blue);
}

.term-tip p {
    color: var(--text-primary);
    font-weight: 500;
}

.term-visual {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.visual-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    color: var(--text-muted);
}

.visual-placeholder p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.visual-placeholder .caption {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

@keyframes searchHighlight {
    0% {
        background: rgba(0, 150, 199, 0.2);
        transform: scale(1.02);
    }
    50% {
        background: rgba(0, 150, 199, 0.1);
        transform: scale(1.01);
    }
    100% {
        background: var(--bg-card);
        transform: scale(1);
    }
}

/* Dark mode overrides for glossary */
[data-theme="dark"] .search-input {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .search-input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

[data-theme="dark"] .search-tag {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .search-tag:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}

[data-theme="dark"] .glossary-term {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .term-header h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .term-header {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .term-tip h4 {
    color: var(--primary-cyan);
}

[data-theme="dark"] .term-tip {
    background: linear-gradient(135deg, rgba(0, 150, 199, 0.15), rgba(0, 180, 216, 0.15));
}

[data-theme="dark"] .term-visual {
    background: var(--bg-secondary);
}

[data-theme="dark"] .visual-placeholder {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-muted);
}

[data-theme="dark"] .no-results {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-muted);
}

/* Responsive design for glossary */
@media (max-width: 768px) {
    .search-container {
        margin: 0 auto 1rem;
    }
    
    .search-input {
        padding: 0.875rem 2.5rem 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .search-tags {
        gap: 0.5rem;
    }
    
    .search-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .glossary-term {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .term-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .term-header h3 {
        font-size: 1.3rem;
    }
    
    .term-category {
        align-self: flex-start;
    }
    
    .term-content {
        gap: 1.25rem;
    }
    
    .term-content h4 {
        font-size: 1rem;
    }
    
    .term-visual {
        padding: 1rem;
    }
    
    .visual-placeholder {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .search-input {
        padding: 0.75rem 2.25rem 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        right: 0.5rem;
        font-size: 1.1rem;
    }
    
    .glossary-term {
        padding: 1.25rem;
    }
    
    .term-header h3 {
        font-size: 1.2rem;
    }
    
    .term-content {
        gap: 1rem;
    }
}

/* Contact Form Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    padding: 4rem 0;
}

[data-theme="dark"] .contact-form-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--gray-900);
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.form-checkbox {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-sidebar-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.quick-help-list li {
    margin-bottom: 0.75rem;
}

.quick-help-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.quick-help-list a:hover {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 22, 122, 0.3);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--gray-700);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--primary-blue);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Dark Mode Styles */
[data-theme="dark"] .contact-info-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

[data-theme="dark"] .contact-info-card h3 {
    color: var(--white);
}

[data-theme="dark"] .contact-info-card p {
    color: var(--gray-300);
}

[data-theme="dark"] .contact-form-content {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: var(--gray-700);
    border-color: var(--gray-600);
    color: var(--white);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.2);
}

[data-theme="dark"] .checkbox-label {
    color: var(--gray-300);
}

[data-theme="dark"] .contact-sidebar-card {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

[data-theme="dark"] .contact-sidebar-card h3 {
    color: var(--white);
}

[data-theme="dark"] .quick-help-list a {
    color: var(--primary-cyan);
}

[data-theme="dark"] .quick-help-list a:hover {
    color: var(--light-blue);
}

[data-theme="dark"] .faq-item {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

[data-theme="dark"] .faq-question {
    color: var(--white);
}

[data-theme="dark"] .faq-answer {
    color: var(--gray-300);
}

[data-theme="dark"] .faq-answer a {
    color: var(--primary-cyan);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-sidebar {
        flex-direction: row;
        gap: 1rem;
    }
    
    .contact-sidebar-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-content {
        padding: 1.5rem;
    }
    
    .contact-sidebar {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-content {
        padding: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .btn-full {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Featured Blog Post Preview Section - Add to styles.css */
.featured-post-section {
    padding: 0.5rem 0;
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    /* Chrome compatibility */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: calc(100vh - 70px - 4rem);
    min-height: calc(100vh - 70px - 4rem);
    /* Chrome compatibility */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

.featured-post-image {
    position: relative;
    overflow: hidden;
}

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

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

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    gap: 1rem;
}

/* Override general h3 margin for featured post content */
.featured-post-content h3 {
    margin-bottom: 0;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    /* margin-bottom: 0.5rem; */
}

.featured-post-content .post-title,
.featured-post-content h3.post-title,
.featured-post-content h3 {
    /* margin: 0.25rem 0 0.5rem 0 !important; */
    padding: 0 !important;
    line-height: 1.2 !important;
    margin-top: -0.5rem !important;
}

/* Force override for all h3 elements in featured posts */
.featured-post-section h3,
.featured-post-card h3,
.featured-post-content h3 {
    /* margin: 0.25rem 0 0.5rem 0 !important; */
    padding: 0 !important;
    line-height: 1.2 !important;
    margin-top: -0.5rem !important;
}

/* Most specific selector to override browser defaults */
.featured-post-section .featured-post-card .featured-post-content h3.post-title {
    /* margin: 0.25rem 0 0.5rem 0 !important; */
    padding: 0 !important;
    line-height: 1.2 !important;
    margin-top: -0.5rem !important;
}

.post-title a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.2s ease;
}

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

.post-excerpt {
    /* margin-bottom: 1rem; */
    line-height: 1.5;
}

.post-excerpt p {
    /* margin-bottom: 0.75rem; */
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.post-excerpt p:last-child {
    margin-bottom: 0;
}

.post-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* margin-bottom: 1rem; */
}

.highlight-tag {
    background: var(--lightest-blue);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--accent-blue);
}

.continue-reading-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--button-border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    min-width: 180px;
    justify-content: center;
    margin-top: 0.25rem;
}

.continue-reading-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 22, 122, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.continue-reading-btn i {
    transition: transform 0.2s ease;
}

.continue-reading-btn:hover i {
    transform: translateX(3px);
}

/* Dark Mode Support for Blog Preview */
[data-theme="dark"] .highlight-tag {
    background: rgba(72, 202, 228, 0.2);
    color: var(--text-primary);
    border-color: var(--accent-blue);
}

[data-theme="dark"] .post-category-badge {
    background: var(--accent-blue);
    color: var(--primary-dark);
}

[data-theme="dark"] .continue-reading-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: var(--primary-dark);
}

[data-theme="dark"] .continue-reading-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    box-shadow: 0 8px 25px rgba(72, 202, 228, 0.3);
}

[data-theme="dark"] .post-title a {
    color: var(--accent-blue);
}

[data-theme="dark"] .post-title a:hover {
    color: white;
}

/* Responsive Design for Blog Preview */
@media (max-width: 968px) {
    .featured-post-card {
        grid-template-columns: 1fr;
        gap: 0;
        height: calc(100vh - 70px - 2rem);
        min-height: calc(100vh - 70px - 2rem);
    }
    
    .post-image {
        min-height: 350px;
        height: 350px;
    }
    
    .featured-post-content {
        padding: 1.5rem 1.25rem;
        gap: 0.75rem;
    }
    
    .post-title a {
        font-size: 1.5rem;
    }
    
    .featured-post-content .post-title {
        margin: 0.25rem 0 0.5rem 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .featured-post-section {
        height: auto !important;
        min-height: auto !important;
        padding: 2rem 0;
    }
    
    .featured-post-card {
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 2rem;
    }
    
    .post-image {
        min-height: 300px;
        height: 300px;
    }
    
    .featured-post-content {
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }
    
    .post-title a {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .post-excerpt p {
        margin-bottom: 1rem;
    }
    
    .post-highlights {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .highlight-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .continue-reading-btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .featured-post-section {
        padding: 1.5rem 0;
        min-height: auto;
    }
    
    .featured-post-card {
        height: auto;
        min-height: auto;
        margin-bottom: 1.5rem;
    }
    
    .post-image {
        min-height: 250px;
        height: 250px;
    }
    
    .featured-post-content {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
    }
    
    .post-title a {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .featured-post-content .post-title {
        margin: 0.25rem 0 0.5rem 0 !important;
        padding: 0 !important;
    }
    
    .post-highlights {
        gap: 0.3rem;
    }
    
    .highlight-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .continue-reading-btn {
        width: 100%;
        justify-content: center;
    }
}