/* ============================================
   ULTRAMODERN STYLES - CDOT Landing Page
   Sticky Hero Effect + Premium Design
   ============================================ */

/* Import Modern Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES - BRAND COLORS
   ============================================ */
:root {
    /* Brand Colors */
    --cdot-primary: #007bff;
    --cdot-primary-dark: #0056b3;
    --cdot-primary-light: #3395ff;
    --cdot-primary-alpha-10: rgba(0, 123, 255, 0.1);
    --cdot-primary-alpha-20: rgba(0, 123, 255, 0.2);

    --cdot-accent: #ffc107;
    --cdot-accent-dark: #f59e0b;
    --cdot-accent-light: #ffd54f;

    /* Ultramodern Dark Theme */
    --bg-dark: #0f172a;
    --bg-dark-lighter: #1e293b;
    --bg-dark-card: #1e293b;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;

    /* Glassmorphism */
    --glass-bg: rgba(2, 2, 2, 0.3);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: 12px;
}

/* Ensure video players occupy full width and auto height across ultramodern overrides */
.content-wrapper .video-section iframe,
.content-wrapper .video-section video,
.content-wrapper .video-section #mp4Player_html5_api,
.content-wrapper .video-section .message-video,
.content-wrapper .video-section .sp-embed-player iframe,
.content-wrapper .video-section .video-wrapper iframe {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Ensure any poster thumbnail inside ultramodern sections scales */
.content-wrapper .video-section img,
.content-wrapper .video-section .vjs-poster,
.content-wrapper .video-section .vjs-poster img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

@media (max-width: 767.98px) {
    .content-wrapper .video-section iframe,
    .content-wrapper .video-section video,
    .content-wrapper .video-section #mp4Player_html5_api,
    .content-wrapper .video-section .sp-embed-player iframe {
        width: 100% !important;
        height: auto !important;
        min-height: 180px !important;
    }
}

/* ============================================
   STICKY HERO EFFECT
   ============================================ */

/* Hero stays fixed in viewport */
.hero-section {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated blue gradient overlay */
.hero-section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 123, 255, 0.15) 0%,
            rgba(0, 123, 255, 0.05) 50%,
            transparent 100%);
    animation: gradientShift 8s ease infinite;
    z-index: 1; */
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateX(50%) translateY(50%) rotate(180deg);
    }
}

/* Content wrapper - scrolls over hero */
.content-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 100vh;
    /* Push content below hero */
    background: transparent;
    /* Removed background to eliminate white overlay */
}

/* Ensure sections maintain their own backgrounds */
.content-wrapper>section {
    position: relative;
}

/* Override specific section backgrounds within content-wrapper */
.content-wrapper .pea-section {
    background: #ffffff !important;
}

.content-wrapper .pea-section h1,
.content-wrapper .pea-section h2,
.content-wrapper .pea-section h3,
.content-wrapper .pea-section h4,
.content-wrapper .pea-section h5,
.content-wrapper .pea-section h6 {
    color: #1e293b !important;
}

.content-wrapper .pea-section p,
.content-wrapper .pea-section .text-muted {
    color: #475569 !important;
}

.content-wrapper .pea-section .pea-header {
    color: #1e293b !important;
}

.content-wrapper .about-CDOT-section {
    background: #f8f9fa !important;
    color: #333 !important;
}

.content-wrapper .about-CDOT-section h1,
.content-wrapper .about-CDOT-section h2,
.content-wrapper .about-CDOT-section h3,
.content-wrapper .about-CDOT-section h4,
.content-wrapper .about-CDOT-section h5,
.content-wrapper .about-CDOT-section h6 {
    color: #2d3748 !important;
}

.content-wrapper .about-CDOT-section p,
.content-wrapper .about-CDOT-section .text-muted {
    color: #555 !important;
}

/* Enhanced image styling for about-CDOT-section */
.about-CDOT-section img {
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Better spacing for text columns */
.about-CDOT-section .col-md-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-CDOT-section img {
        max-height: 350px;
    }
    
    .about-CDOT-section .ps-md-4,
    .about-CDOT-section .pe-md-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.content-wrapper .video-section {
    background: white !important;
}

.content-wrapper .get-paid-section {
    background: white !important;
}

.content-wrapper .secure-position-section {
    background: #f8f9fa !important;
}

.content-wrapper .helping-sellers-section {
    background: white !important;
}

.content-wrapper .pea-membership-tier-section {
    background: #f8f9fa !important;
}

.content-wrapper .trusted-testimonial-section {
    background: white !important;
}

.content-wrapper .faq-section {
    background: #f8f9fa !important;
}

.content-wrapper .digital-journey-section {
    background: white !important;
}

.content-wrapper .store-owner-section {
    background: #f8f9fa !important;
}

/* ============================================
   FLOATING SHAPES - HERO SECTION
   ============================================ */

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    /* background: linear-gradient(135deg, var(--cdot-accent), var(--cdot-accent-dark)); */
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    /* background: linear-gradient(135deg, var(--cdot-primary-light), var(--cdot-primary)); */
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) translateX(-20px) rotate(240deg);
    }
}

/* ============================================
   GLASSMORPHISM ENHANCEMENTS
   ============================================ */

.glass-panel {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Enhanced content box in hero */
.hero-section .content-box {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */

.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-up-element:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-up-element:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-up-element:nth-child(3) {
    animation-delay: 0.5s;
}

/* Parallax scroll effect for content wrapper entrance */
@media (prefers-reduced-motion: no-preference) {
    .content-wrapper {
        animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Section entrance animations disabled to maintain 100% opacity throughout page */
.content-wrapper section {
    opacity: 1 !important;
}

/* Kept for compatibility but not used */
@keyframes fadeIn {
    from {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   MODERN CARD STYLES
   ============================================ */

.modern-card {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: white;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
    border-color: var(--cdot-primary-alpha-20);
}

.modern-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modern-card:hover img {
    transform: scale(1.08);
}

.modern-card .card-body {
    padding: 1.5rem;
}

.modern-card .card-title {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modern-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.modern-card .badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Card Glow effect on hover */
.modern-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-card:hover::before {
    opacity: 1;
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--cdot-primary), var(--cdot-primary-dark)) !important;
    border: none !important;
    box-shadow: 0 4px 20px var(--cdot-primary-alpha-20);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--cdot-primary-alpha-20);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--cdot-primary) !important;
    color: var(--cdot-primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--cdot-primary) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--cdot-primary-alpha-20);
}

.btn-dark {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */

.pea-section {
    background: #ffffff;
    color: #1e293b;
    position: relative;
    overflow: hidden;
}

/* Add blue gradient at bottom for seamless transition */
/* .pea-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 123, 255, 0.1) 100%);
} */

    @media (max-width: 768px) {

        /* Disable fixed hero on mobile for better UX */
        .hero-section {
            position: relative !important;
            height: auto;
            min-height: auto;
            padding: 140px 15px 60px !important;
        }

        .hero-section::before {
            display: none;
        }

        .content-wrapper {
            margin-top: 0;
            animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-shape {
            display: none;
        }

        .hero-section .content-box {
            padding: 1.5rem !important;
        }

        .hero-section h1 {
            font-size: 1.75rem !important;
        }

        .pea-tabs {
            flex-direction: column;
            gap: 10px;
            margin-bottom: 30px;
        }

        .pea-header {
            font-size: 1rem;
            padding-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .pea-panel {
            margin-top: 1rem;
            padding: 1.5rem;
        }

        /* Mobile: Maintain same color scheme as desktop */
        .pea-section {
            background: #ffffff !important;
            color: #1e293b !important;
            overflow: visible !important;
            padding-bottom: 80px !important;
        }

        .pea-section h1,
        .pea-section h2,
        .pea-section h3,
        .pea-section h4,
        .pea-section h5,
        .pea-section h6 {
            color: #1e293b !important;
        }

        .pea-section p,
        .pea-section .text-muted {
            color: #475569 !important;
        }

        .pea-section .pea-header {
            color: #1e293b !important;
        }

        .pea-section::after {
            display: none !important;
        }

        /* Mobile: About section maintains blue gradient and white text */
        .about-CDOT-section {
            background: linear-gradient(135deg, var(--cdot-primary) 0%, var(--cdot-primary-dark) 50%, #1e3a8a 100%) !important;
            color: white !important;
        }

        .about-CDOT-section h1,
        .about-CDOT-section h2,
        .about-CDOT-section h3,
        .about-CDOT-section h4,
        .about-CDOT-section h5,
        .about-CDOT-section h6 {
            color: white !important;
        }

        .about-CDOT-section p,
        .about-CDOT-section .text-muted {
            color: rgba(255, 255, 255, 0.95) !important;
        }

        /* On mobile, ensure content flows naturally */
        .content-wrapper {
            box-shadow: none;
        }

        .content-wrapper section {
            animation: none;
            opacity: 1;
        }

        .fade-up-element {
            animation: none;
            opacity: 1;
            transform: none;
        }

        /* Mobile: Enable section entrance animations - DISABLED for 100% opacity */
        .content-wrapper section {
            opacity: 1 !important;
            animation: none !important;
        }
    }

    /* ============================================
   PREMIUM TYPOGRAPHY & SPACING
   ============================================ */

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: #1e293b;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .display-1,
    .display-2,
    .display-3,
    .display-4,
    .display-5 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
        color: #0f172a;
    }

    .display-3,
    .display-4,
    .display-5 {
        line-height: 1.2;
        font-weight: 800;
    }

    .lead {
        font-size: 1.15rem;
        font-weight: 500;
        line-height: 1.7;
        color: #475569;
    }

    p {
        color: #64748b;
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Links with gradient underline */
    a {
        color: var(--cdot-primary);
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
    }

    a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--cdot-primary), var(--cdot-accent));
        transition: width 0.3s ease;
    }

    a:hover::after {
        width: 100%;
    }

    /* Section spacing */
    section {
        padding: 5rem 0;
    }

    section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    @media (min-width: 992px) {
        section {
            padding: 6rem 0;
        }

        section.py-5 {
            padding-top: 4rem !important;
            padding-bottom: 4rem !important;
        }
    }

    /* Text highlights */
    .text-warning {
        color: var(--cdot-accent) !important;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    /* Hero content spacing */
    .hero-section .content-box {
        margin: 0 auto;
    }

.hero-section h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-section .lead {
    color: white;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
}

/* ============================================
   RESPONSIVE HERO SCALING - PROPORTIONAL BREAKPOINTS
   ============================================ */

/* Extra Large screens (1400px+) - Full experience */
@media (min-width: 1400px) {
    .hero-section .content-box {
        max-width: 550px;
        padding: 3rem;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.3rem;
    }
}

/* Large screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-section .content-box {
        max-width: 480px;
        padding: 2.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section .lead {
        font-size: 1.15rem;
    }
}

/* Medium-Large screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section .content-box {
        max-width: 420px;
        min-width: unset;
        padding: 2rem 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.4rem;
    }
    
    .hero-section .lead {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Medium screens (768px - 991px) - Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px !important;
    }
    
    .hero-section .content-box {
        max-width: 380px;
        min-width: unset;
        padding: 1.75rem 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .floating-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        right: 5%;
    }
    
    .floating-shape.shape-2 {
        width: 150px;
        height: 150px;
        bottom: 10%;
        left: 5%;
    }
}

/* Small screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 90px 0 60px !important;
        min-height: auto;
    }
    
    .hero-section .content-box {
        max-width: 90%;
        min-width: unset;
        padding: 1.5rem 1.25rem;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Extra small screens (below 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 80px 0 50px !important;
        min-height: auto;
    }
    
    .hero-section .content-box {
        max-width: 95%;
        min-width: unset;
        padding: 1.25rem 1rem;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================
   AURORA EFFECT REMOVAL CLASS
   ============================================ */
.hero-section.aurora-disabled::before,
.hero-section.aurora-disabled::after,
.hero-section.aurora-disabled .floating-shape {
    animation: none !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-out;
}

/* ============================================
   IMAGE SHARPENING - CSS-BASED
   Using contrast and brightness to create perceived sharpness
   ============================================ */

/* Apply subtle sharpening to all images */
.hero-section img,
.content-wrapper img:not(.rounded-circle),
.modern-card img,
.elevated-card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Subtle contrast boost for perceived sharpness */
    filter: contrast(1.02) brightness(1.01);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Sharper images on retina/high-DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section img,
    .content-wrapper img:not(.rounded-circle) {
        filter: contrast(1.03) brightness(1.01);
    }
}

/* Optional: Hover sharpening effect for interactive images */
.modern-card img:hover,
.elevated-card img:hover {
    filter: contrast(1.05) brightness(1.02);
}

/* ============================================
   MICRO-INTERACTIONS & POLISH
   ============================================ */

    /* Smooth hover on all interactive elements */
    a,
    button,
    .card,
    .btn {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Focus states for accessibility */
    a:focus,
    button:focus,
    .btn:focus {
        outline: 2px solid var(--cdot-primary);
        outline-offset: 2px;
    }

    /* Accordion enhancement */
    .accordion-button {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        color: #1e293b;
        border: none;
        border-bottom: 2px solid #e2e8f0;
        padding: 1.5rem;
        transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--cdot-primary-alpha-10), rgba(56, 189, 248, 0.05));
        color: var(--cdot-primary);
        border-color: var(--cdot-primary);
        box-shadow: none;
    }

    .accordion-button:hover {
        background: linear-gradient(135deg, var(--cdot-primary-alpha-10), rgba(56, 189, 248, 0.08));
    }

    .accordion-body {
        color: #64748b;
        padding: 1.5rem;
        line-height: 1.8;
    }

    /* Form enhancements */
    .form-control,
    .form-select {
        border: 1.5px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--cdot-primary);
        box-shadow: 0 0 0 3px var(--cdot-primary-alpha-10);
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #334155;
    }

    /* Input placeholder styling */
    .form-control::placeholder {
        color: #cbd5e1;
    }

    /* Badge enhancements */
    .badge {
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .badge:hover {
        transform: scale(1.05);
    }

    /* Divider enhancement */
    hr {
        border: none;
        height: 1px;
        background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        margin: 2rem 0;
    }

    /* List styling */
    ul,
    ol {
        color: #64748b;
        line-height: 2;
    }

    li {
        margin-bottom: 0.5rem;
    }

    /* Image enhancements */
    img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .img-fluid {
        display: block;
    }

    /* Carousel enhancements */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
        transition: all 0.3s ease;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        transform: scale(1.1);
    }

    /* Testimonial card styling */
    .carousel-item .card {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .carousel-item .card:hover {
        box-shadow: 0 16px 40px rgba(0, 123, 255, 0.15);
    }

    /* ============================================
   SCROLL INDICATOR & ENTRANCE EFFECTS
   ============================================ */

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        animation: bounce 2s infinite;
        cursor: pointer;
    }

    .scroll-indicator-icon {
        width: 24px;
        height: 40px;
        border: 2px solid white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .scroll-indicator-icon::after {
        content: '';
        width: 3px;
        height: 8px;
        background: white;
        border-radius: 2px;
        animation: scrollDot 1.5s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        40% {
            transform: translateX(-50%) translateY(-10px);
        }

        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }

    @keyframes scrollDot {

        0%,
        100% {
            opacity: 1;
            transform: translateY(-6px);
        }

        50% {
            opacity: 0;
            transform: translateY(6px);
        }
    }

    /* Stagger animations for multiple elements */
    @supports (animation-timeline: view()) {
        .content-wrapper section {
            animation-timeline: view();
            animation-range: entry 0% cover 30%;
        }

        .modern-card {
            animation-timeline: view();
            animation-range: entry 0% cover 30%;
        }
    }