:root {
    --primary-color: #046c4e;
    /* Deep Green */
    --secondary-color: #03543f;
    /* Darker Green */
    --accent-color: #d4af37;
    /* Gold */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f0fdf4;
    /* Very light green tint */
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #d1fae5 100%);
    padding: 100px 0;
}

.hero-title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-outline-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Features Section */
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer .text-muted {
    color: #9ca3af !important;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Policy Pages */
.policy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}

.policy-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Technology Section */
.tech-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.tech-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    top: 50%;
    right: -100px;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Title Styles */
.tech-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: rgba(4, 108, 78, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.tech-main-title {
    font-size: 2.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badge {
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Tech Cards */
.tech-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    margin-top: 25px; /* Space for badge */
}

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

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

.tech-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(4, 108, 78, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover .card-glow {
    opacity: 1;
}

/* Featured Card */
.tech-card-featured {
    background: linear-gradient(135deg, #046c4e 0%, #03543f 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px -10px rgba(4, 108, 78, 0.4);
    margin-top: 25px; /* Space for badge */
}

.tech-card-featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 30px 60px -15px rgba(4, 108, 78, 0.5);
}

.tech-card-featured .text-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.tech-card-featured h4 {
    color: white;
}

/* Card Shine Effect */
.card-shine {
    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.6s ease;
}

.tech-card-featured:hover .card-shine {
    left: 100%;
}

/* Icon Wrapper */
.tech-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 25px -5px rgba(4, 108, 78, 0.3);
}

.tech-card-featured .tech-icon-wrapper {
    background: white;
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.3);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.tech-icon {
    font-size: 2.75rem;
    color: white;
    z-index: 1;
}

.tech-card-featured .tech-icon {
    color: var(--primary-color);
}

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

/* Tech Badge */
.tech-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 16px -4px rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.tech-badge i {
    font-size: 0.75rem;
}

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

/* Progress Bars */
.tech-progress {
    margin-top: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.tech-card-featured .progress-label {
    color: white;
}

.progress-bar-custom {
    height: 8px;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.tech-card-featured .progress-bar-custom {
    background: rgba(255, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1rem;
    position: relative;
    animation: fillProgress 1.5s ease-out;
    box-shadow: 0 0 10px rgba(4, 108, 78, 0.5);
}

.progress-fill-featured {
    background: linear-gradient(90deg, white, var(--accent-color));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes fillProgress {
    from {
        width: 0 !important;
    }
}

/* Feature Tags */
.tech-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(4, 108, 78, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.875rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-card-featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-tag:hover {
    transform: scale(1.05);
}

/* Enhanced Benefits Section */
.tech-benefits-enhanced {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(4, 108, 78, 0.1);
}

.benefit-item-enhanced {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid transparent;
}

.benefit-item-enhanced:hover {
    background: linear-gradient(135deg, #f0fdf4, #d1fae5);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-item-enhanced:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

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

.benefit-item-enhanced h6 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-item-enhanced p {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-main-title {
        font-size: 1.75rem;
    }
    
    .tech-card-featured {
        transform: scale(1);
    }
    
    .tech-card-featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
}

/* How It Works Section */
.how-it-works-section {
    background: #f9fafb;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: rgba(4, 108, 78, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.how-step-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.how-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 6px -1px rgba(4, 108, 78, 0.3);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(4, 108, 78, 0.1), rgba(3, 84, 63, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-step-card:hover .step-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.how-step-card:hover .step-icon-wrapper i {
    color: white;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    animation: arrowBounce 2s ease-in-out infinite;
}

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

/* Enhanced CTA Button */
.cta-glow {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px -5px rgba(4, 108, 78, 0.4);
    transition: all 0.3s ease;
}

.cta-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-glow:hover::before {
    width: 300px;
    height: 300px;
}

.cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(4, 108, 78, 0.5);
}

.cta-glow:active {
    transform: translateY(-1px);
}

/* Responsive for How It Works */
@media (max-width: 768px) {
    .how-step-card {
        margin-bottom: 2rem;
    }
    
    .step-arrow {
        display: none !important;
    }
}
/* ========================================
   PREMIUM HERO SLIDER STYLES
   ======================================== */

/* Premium Hero Slider */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Backgrounds */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-bg-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 50%, #0f3460 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
}

/* Add animated particles to backgrounds */
.slide-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(4, 108, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(4, 108, 78, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Slider Content */
.hero-slider-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text-slider {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.hero-slider-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

/* Feature Pills */
.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-pill i {
    font-size: 1.1rem;
}

/* Visual Cards */
.slide-visual {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: cardFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

/* Interview Card */
.interview-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin: -2rem -2rem 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    height: 60px;
    margin: 1.5rem 0;
}

.waveform span {
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: waveAnimation 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 20px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 30px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 45px; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 35px; animation-delay: 0.7s; }
.waveform span:nth-child(9) { height: 50px; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 25px; animation-delay: 0.9s; }

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.5);
    }
}

.ai-question {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(4, 108, 78, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
}

.score-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

/* Resume Card */
.resume-preview {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    min-height: 400px;
}

.resume-header {
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    animation: shimmer 2s ease-in-out infinite;
}

.resume-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
    animation: shimmer 2s ease-in-out infinite;
}

.resume-line.short {
    width: 60%;
}

.resume-section {
    height: 40px;
    background: rgba(4, 108, 78, 0.1);
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
    color: var(--primary-color);
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    left: -20px;
    color: var(--accent-color);
    animation-delay: 1.5s;
}

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

/* Document Card */
.doc-stack {
    position: relative;
    height: 400px;
}

.doc-item {
    position: absolute;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doc-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.doc-item span {
    font-weight: 700;
    color: var(--text-dark);
}

.doc-1 {
    top: 0;
    left: 10%;
    transform: rotate(-5deg);
    z-index: 3;
    animation: docFloat1 4s ease-in-out infinite;
}

.doc-2 {
    top: 80px;
    left: 5%;
    transform: rotate(3deg);
    z-index: 2;
    animation: docFloat2 4s ease-in-out infinite;
}

.doc-3 {
    top: 160px;
    left: 0;
    transform: rotate(-2deg);
    z-index: 1;
    animation: docFloat3 4s ease-in-out infinite;
}

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

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

@keyframes docFloat3 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

.ai-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(4, 108, 78, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.indicator i {
    font-size: 1.25rem;
}

.indicator span {
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hero-slider-title {
        font-size: 2.5rem;
    }
    
    .slide-indicators {
        display: none;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .doc-stack {
        height: 300px;
    }
}

/* Fix button and indicator overlapping issues */
.hero-slide .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-slide .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Adjust slide indicators positioning */
@media (min-width: 1200px) {
    .slide-indicators {
        right: 20px;
    }
}

@media (max-width: 1400px) {
    .slide-indicators {
        display: none;
    }
}

/* Better button spacing */
.hero-slide .d-flex.gap-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Ensure buttons don't overlap on smaller screens */
@media (max-width: 992px) {
    .hero-slide .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-slide .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

/* Fix z-index layering */
.slider-controls {
    z-index: 100;
}

.slide-indicators {
    z-index: 99;
}

.hero-slide {
    z-index: 1;
}

.hero-slide.active {
    z-index: 2;
}

/* Better container management for slider */
.hero-slide .container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1400px) {
    .hero-slide .container {
        max-width: 1200px; /* Prevent overlap with side indicators */
    }
}

/* Improve button styling */
.hero-slide .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-slide .btn-primary {
    box-shadow: 0 10px 25px rgba(4, 108, 78, 0.4);
}

.hero-slide .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.hero-slide .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* Fix button container */
.hero-slide .d-flex.gap-3.flex-wrap {
    gap: 1rem !important;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .slide-indicators {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-slide .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-slider-title {
        font-size: 2rem !important;
    }
    
    .hero-slider-subtitle {
        font-size: 1rem;
    }
}

/* Improved slide indicators - less intrusive */
.slide-indicators {
    right: 30px;
    gap: 1rem;
}

.indicator {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.indicator.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.indicator i {
    font-size: 1.1rem;
}

.indicator span {
    font-size: 0.85rem;
}

/* Hide indicators on medium screens too */
@media (max-width: 1400px) {
    .slide-indicators {
        display: none !important;
    }
    
    .hero-slide .container {
        max-width: 100%;
    }
}

/* Ensure proper spacing on all screen sizes */
@media (min-width: 1400px) {
    .hero-slide .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .hero-slide .col-lg-6 {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

/* Ensure consistent transition timing */
.hero-slide {
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out !important;
}

/* Prevent any animation conflicts */
.hero-slide * {
    animation-play-state: running;
}

/* Ensure smooth transitions for all slide elements */
.hero-slide .hero-slider-title,
.hero-slide .hero-slider-subtitle,
.hero-slide .slide-badge,
.hero-slide .feature-pill,
.hero-slide .btn {
    transition: opacity 0.5s ease-in-out 0.3s;
}

.hero-slide:not(.active) .hero-slider-title,
.hero-slide:not(.active) .hero-slider-subtitle,
.hero-slide:not(.active) .slide-badge,
.hero-slide:not(.active) .feature-pill,
.hero-slide:not(.active) .btn {
    opacity: 0;
}

.hero-slide.active .hero-slider-title,
.hero-slide.active .hero-slider-subtitle,
.hero-slide.active .slide-badge,
.hero-slide.active .feature-pill,
.hero-slide.active .btn {
    opacity: 1;
}

/* Hide slide indicators completely */
.slide-indicators {
    display: none !important;
}

/* ========================================
   PREMIUM ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
    z-index: -1;
}

.about-hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(4, 108, 78, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.min-vh-75 {
    min-height: 75vh;
}

.about-hero-title {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Stats Section */
.hero-stats {
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background: rgba(4, 108, 78, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(4, 108, 78, 0.1), rgba(3, 84, 63, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hover-lift:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.hover-lift:hover .icon-wrapper i {
    color: white !important;
}

/* Feature List */
.feature-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, rgba(4, 108, 78, 0.05), rgba(212, 175, 55, 0.05));
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(4, 108, 78, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
}
