:root {
    --primary-color: #4a6bff;
    --secondary-color: #ff6b6b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #fd7e14;
    --info-color: #17a2b8;
}

.hero {
    background: linear-gradient(135deg, #4a6bff, #6a5acd);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Modern Features Section */
.features-modern {
    padding: 80px 0;
    background: #ffffff;
}

.features-intro {
    padding-right: 2rem;
}

.features-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.features-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-features-primary {
    display: inline-block;
    background: #2B6CB0;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
    border: none;
}

.btn-features-primary:hover {
    background: #2563A5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 108, 176, 0.4);
    color: #ffffff;
}

.btn-features-secondary {
    display: inline-flex;
    align-items: center;
    background: #E0EDF8;
    color: #2B6CB0;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: 8px;
}

.btn-features-secondary:hover {
    background: #D0E0F0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #2B6CB0;
}

.btn-features-secondary svg {
    width: 20px;
    height: 20px;
    fill: #2B6CB0;
    flex-shrink: 0;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card-modern {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.feature-icon-modern {
    color: #212529;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.feature-icon-modern svg {
    border: 2px solid #212529;
    border-radius: 6px;
    padding: 0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    stroke: #212529;
    fill: none;
}

.feature-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.75rem;
}

.feature-text-modern {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .features-intro {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .features-heading {
        font-size: 2rem;
    }
    
    .features-cta-buttons {
        justify-content: center;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-modern {
        padding: 60px 0;
    }
    
    .features-heading {
        font-size: 1.75rem;
    }
    
    .features-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-features-primary,
    .btn-features-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
}

/* Live Competition Section */
.live-competition-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.live-competition-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-left: 4px solid #EF4444;
    position: relative;
    overflow: hidden;
}

.live-card-content {
    flex: 1;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EF4444;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.live-tag svg {
    width: 12px;
    height: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.live-description {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.live-description p {
    margin: 0.5rem 0;
}

.live-card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-join-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EF4444;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    white-space: nowrap;
}

.btn-join-live:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    color: #ffffff;
}

.btn-join-live svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-join-live:hover svg {
    transform: translateX(3px);
}

.live-participants {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.live-participants svg {
    width: 16px;
    height: 16px;
    fill: #6B7280;
}

/* Responsive */
@media (max-width: 768px) {
    .live-competition-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .live-card-action {
        width: 100%;
        align-items: stretch;
    }
    
    .btn-join-live {
        width: 100%;
        justify-content: center;
    }
    
    .live-title {
        font-size: 1.5rem;
    }
}

/* Modern Hero Slider */
.modern-hero-slider {
    background: #ffffff;
    padding: 0 0 4rem 0;
    margin-top: 0;
    margin-bottom: 0rem;
    position: relative;
    overflow: hidden;

/* 2. Background Layers (The order matters! Top definition sits on top) */
background-image: 
  /* LAYER 1: The Fade Effect (White at top -> Transparent at bottom) */
  linear-gradient(to bottom,rgb(248, 248, 248) 5%, rgba(255, 255, 255, 0) 60%),
  
  /* LAYER 2: The Dots (Color: #ececec) - Centered in the square */
  radial-gradient(circle at center, #ececec 1.5px, transparent 1.6px),
  
  /* LAYER 3: Vertical Lines (Very Light Gray) */
  linear-gradient(to right, transparent 19px, #f9f9f9 1px, transparent 20px),
  
  /* LAYER 4: Horizontal Lines (Very Light Gray) */
  linear-gradient(to bottom, transparent 19px, #f9f9f9 1px, transparent 20px);

/* 3. Sizing and Positioning */
background-size: 
  100% 100%,  /* The fade covers the whole container */
  40px 40px,  /* Dot spacing */
  40px 40px,  /* Vertical line spacing */
  40px 40px;  /* Horizontal line spacing */
  
background-position: 0 0;

/* 4. Ensure container takes full height */
width: 100%;
height: 100vh;
}

.modern-hero-slider .min-vh-50 {
    min-height: 60vh;
}

.modern-hero-slider .carousel-item {
    transition: transform 0.6s ease-in-out;
    padding: 2rem 0 2rem 0;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.title-highlight-blue {
    color: #4a6bff;
}

.title-highlight-yellow {
    color: #ffc107;
}

.title-highlight-red {
    color: #dc3545;
}

.title-highlight-green {
    color: #28a745;
}

.hero-description {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn-now-free {
    display: inline-block;
    background: linear-gradient(135deg, #4a6bff 0%, #6a5acd 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-now-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
    color: #ffffff;
}

.students-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-icons {
    display: flex;
    gap: -0.5rem;
    align-items: center;
}

.student-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.student-icon:first-child {
    margin-left: 0;
    z-index: 4;
}

.student-icon:nth-child(2) {
    z-index: 3;
}

.student-icon:nth-child(3) {
    z-index: 2;
}

.student-icon:nth-child(4) {
    z-index: 1;
}

.student-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.student-icon-plus .student-avatar-placeholder {
    background: #212529;
}

.plus-icon {
    font-size: 1.5rem;
}

.students-count {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

.hero-illustration {
    text-align: center;
    position: relative;
}

.illustration-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-illustration {
        margin-top: 2rem;
    }
    
    .modern-hero-slider .min-vh-50 {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-now-free {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .student-icon {
        width: 40px;
        height: 40px;
    }
    
    .students-count {
        font-size: 0.85rem;
    }
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 1rem;
}

/* Top Exams Section - Modern Design */
.top-exams-modern {
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0;
    padding: 80px 0;
}

.top-exams-header {
    margin-bottom: 3rem;
}

.top-exams-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.top-exams-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

.top-exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exam-card-modern {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.exam-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.exam-card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.exam-logo-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #fafafa;*/
    border-radius: 12px;
    padding: 0.75rem;
    transition: background 0.3s ease;
}

.exam-card-modern:hover .exam-logo-wrapper {
    background: #f5f5f5;
}

.exam-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.exam-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    flex: 1;
}

.btn-exam-practice {
    display: inline-block;
    background: #2563EB;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-exam-practice:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    color: #ffffff;
}

.btn-exam-practice:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .top-exams-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .top-exams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-exams-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-exams-modern {
        padding: 60px 0;
    }
    
    .top-exams-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .top-exams-title {
        font-size: 1.75rem;
    }
    
    .exam-card-content {
        padding: 1.5rem 1.25rem;
    }
    
    .exam-logo-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
}

.hover-shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.hover-shadow:hover {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.object-fit-contain {
    object-fit: contain;
}

.practice-btn {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.practice-btn:hover {
    background-color: #3a5bef;
}

/* Modern Testimonials Section */
.testimonials-modern {
    background: #ffffff;
    padding: 4rem 0;
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonials-title .text-purple {
    color: #667eea;
}

.testimonials-icon-left,
.testimonials-icon-right {
    font-size: 1.75rem;
    color: #667eea;
    opacity: 0.8;
}

.testimonials-description {
    font-size: 1rem;
    color: #495057;
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.testimonial-card-modern {
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #f8daff, #d8e3fe) border-box;
    border: 6px solid transparent;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;

    
}

.testimonial-header-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-profile {
    flex-shrink: 0;
}

.testimonial-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.testimonial-profile-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-user-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.testimonial-rating {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-star-filled {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-star-outline {
    color: #dee2e6;
    font-size: 0.9rem;
}

.testimonial-title-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.testimonial-body-text {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials-icon-left,
    .testimonials-icon-right {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card-modern {
        padding: 16px;
        border-width: 4px;
        border-radius: 12px;
    }
}

#allTestimonials.d-none {
    display: none;
}

/* Homepage dark mode */
html[data-theme="dark"] .homepage {
    background: #0f172a;
}

html[data-theme="dark"] .modern-hero-slider {
    background-color: #0f172a;
    background-image:
      linear-gradient(to bottom, rgba(15, 23, 42, 0.9) 5%, rgba(15, 23, 42, 0.45) 60%),
      radial-gradient(circle at center, rgba(148, 163, 184, 0.18) 1.2px, transparent 1.3px),
      linear-gradient(to right, transparent 19px, rgba(148, 163, 184, 0.08) 1px, transparent 20px),
      linear-gradient(to bottom, transparent 19px, rgba(148, 163, 184, 0.08) 1px, transparent 20px);
}

html[data-theme="dark"] .hero-subtitle,
html[data-theme="dark"] .hero-description,
html[data-theme="dark"] .students-count {
    color: #cbd5e1;
}

html[data-theme="dark"] .student-icon {
    border-color: #1e293b;
    background: #1e293b;
}

html[data-theme="dark"] .features-modern,
html[data-theme="dark"] .testimonials-modern {
    background: #111827;
}

html[data-theme="dark"] .top-exams-modern {
    background: #0f172a;
    background-image: radial-gradient(circle, rgba(148, 163, 184, 0.25) 1px, transparent 1px);
}

html[data-theme="dark"] .features-tag {
    background: #1f2937;
    border-color: #334155;
    color: #cbd5e1;
}

html[data-theme="dark"] .features-heading,
html[data-theme="dark"] .feature-title-modern,
html[data-theme="dark"] .top-exams-title,
html[data-theme="dark"] .exam-name,
html[data-theme="dark"] .testimonials-title,
html[data-theme="dark"] .testimonial-name,
html[data-theme="dark"] .testimonial-title-text,
html[data-theme="dark"] .live-title {
    color: #f8fafc;
}

html[data-theme="dark"] .features-description,
html[data-theme="dark"] .feature-text-modern,
html[data-theme="dark"] .top-exams-subtitle,
html[data-theme="dark"] .testimonials-description,
html[data-theme="dark"] .testimonial-body-text,
html[data-theme="dark"] .testimonial-location,
html[data-theme="dark"] .live-description,
html[data-theme="dark"] .live-participants {
    color: #cbd5e1;
}

html[data-theme="dark"] .feature-card-modern,
html[data-theme="dark"] .exam-card-modern,
html[data-theme="dark"] .live-competition-card,
html[data-theme="dark"] .testimonial-card-modern {
    background: #1f2937;
    border-color: #334155;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .feature-card-modern:hover,
html[data-theme="dark"] .exam-card-modern:hover {
    background: #243244;
}

html[data-theme="dark"] .feature-icon-modern,
html[data-theme="dark"] .feature-icon-modern svg {
    color: #e2e8f0;
    stroke: #e2e8f0;
    border-color: #475569;
}

html[data-theme="dark"] .exam-card-modern:hover .exam-logo-wrapper {
    background: #253244;
}

html[data-theme="dark"] .testimonial-card-modern {
    background: linear-gradient(#1f2937, #1f2937) padding-box, linear-gradient(135deg, #7c3aed, #2563eb) border-box;
}

html[data-theme="dark"] .testimonial-profile-img {
    border-color: #334155;
}

html[data-theme="dark"] .testimonial-star-outline {
    color: #64748b;
}

html[data-theme="dark"] .carousel-control-prev-icon,
html[data-theme="dark"] .carousel-control-next-icon {
    filter: invert(1);
}

html[data-theme="dark"] marquee {
    background-color: #111827 !important;
    color: #93c5fd !important;
}

html[data-theme="dark"] #viewMoreTestimonials.btn-primary {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

html[data-theme="dark"] .modal-content {
    background: #1f2937;
    color: #e5e7eb;
    border-color: #374151;
}

html[data-theme="dark"] .modal-header,
html[data-theme="dark"] .modal-footer {
    border-color: #374151;
}