/* Modern Enhancements for Paradigm Institute Website */

/* Enhanced Color Scheme */
:root {
    /* Core palette: Primary (navy), Secondary (gold), Neutral (white/greys) */
    --primary-color: #07294d;
    --secondary-color: #ffc600;
    --accent-color: #07294d; /* keep within 3-color system: use primary as accent */
    --text-dark: #1d2025;
    --text-light: #505050;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #0a3d6b 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ffd34d 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(7, 41, 77, 0.85) 0%, rgba(7, 41, 77, 0.65) 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

/* Modern Button Styles */
.main-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

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

.main-btn::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;
}

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

.main-btn-2 {
    background: var(--gradient-secondary);
    color: var(--primary-color);
}

/* Enhanced Header */
.header-top {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 0;
}

/* Keep top contact items on one line with comfortable spacing */
.header-contact ul {
    display: flex;
    align-items: center;
    gap: 18px;               /* tighter base spacing */
    flex-wrap: nowrap;        /* never wrap to next line */
    overflow: hidden;         /* avoid layout shift */
}
.header-contact ul li { white-space: nowrap; }
.header-contact ul li img { width: 16px; height: auto; margin-right: 6px; }
.header-contact ul li span { display: inline-block; font-size: 14px; }

/* Slightly tighten spacing and text size as width reduces (helps at 150% zoom) */
@media (max-width: 1400px) {
    .header-contact ul { gap: 14px; }
    .header-contact ul li span { font-size: 13px; }
}
@media (max-width: 1200px) {
    .header-contact ul { gap: 10px; }
    .header-contact ul li span { font-size: 12px; }
}

.navigation {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* ========================================
   ENHANCED PROFESSIONAL SLIDER STYLES (Gulu University Style)
======================================== */

.enhanced-slider {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove padding-top from pt-150 class on enhanced slider */
.single-slider.enhanced-slider.pt-150 {
    padding-top: 0 !important;
}

/* Remove dark overlay - images should be 100% visible */
.slider-overlay {
    display: none;
}

/* Enhanced Slider Content - Positioned at bottom */
.enhanced-slider-content {
    position: absolute !important;
    top: auto !important;
    bottom: 30px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 999 !important;
    color: var(--white);
    text-align: center;
    width: 85%;
    max-width: 1100px;
    background: rgba(40, 167, 69, 0.92);
    padding: 20px 35px;
    margin: 0;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Override original slider-cont styles */
.enhanced-slider .slider-cont.enhanced-slider-content {
    position: absolute !important;
    bottom: 30px !important;
    top: auto !important;
    transform: translateX(-50%) !important;
}

/* Director's Message Section */
#category-part {
    background: linear-gradient(135deg, #07294d 0%, #0a3d6b 100%);
    padding: 60px 0;
}

.director-image {
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, #ffc600, #ffd700);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.director-image img {
    border-radius: 10px;
    width: 100%;
    display: block;
    border: 4px solid white;
}

.director-message-content h5 {
    color: #28a745;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 800;
}

.director-message-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.director-message-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.director-message-content .main-btn {
    background: #28a745;
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
}

/* Slider Badge - Hidden for cleaner look */
.slider-badge {
    display: none;
}

/* Enhanced Heading with Better Visibility */
.enhanced-slider-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: none;
    line-height: 1.4;
    letter-spacing: 0;
}

/* Enhanced Paragraph with Better Readability */
.enhanced-slider-content p {
    display: none;
}

/* Slider Buttons */
.slider-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-buttons li {
    margin: 0;
}

.slider-buttons .main-btn {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dc3545;
    border: 2px solid #dc3545;
    color: #ffffff;
    text-transform: capitalize;
}

.slider-buttons .main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #c82333;
    border-color: #c82333;
}

.slider-buttons .main-btn i {
    display: none;
}

/* Slider Stats Section - Hidden */
.slider-stats {
    display: none;
}

/* Slider Features Section - Hidden */
.slider-features {
    display: none;
}

/* Video Section Styling */
.video-section {
    width: 100%;
    max-width: 100%;
}

/* Reduce overall section height to fit video + facilities neatly */
#video-feature { padding: 40px 0 !important; }

.video-title-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 10px 10px 0 0;
    margin-bottom: -5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-title-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.video-title-box p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    min-height: 380px;
    height: 380px;
}

.video-player {
    width: 100%;
    height: 380px;
    display: block;
    border-radius: 0 0 15px 15px;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc600, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 198, 0, 0.5);
    z-index: 10;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 198, 0, 0.7);
}

.video-play-button i {
    font-size: 30px;
    color: #07294d;
    margin-left: 5px;
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-btn:hover {
    background: rgba(255, 198, 0, 0.9);
    border-color: #ffc600;
    transform: scale(1.1);
}

.fullscreen-btn i {
    font-size: 20px;
}

.video-player::-webkit-media-controls {
    display: none;
}

.video-player.playing::-webkit-media-controls {
    display: flex;
}

/* Enhanced Course Cards */
.singel-course {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.singel-course:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.singel-course .thum {
    position: relative;
    overflow: hidden;
}

.singel-course .thum img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.singel-course:hover .thum img {
    transform: scale(1.1);
}

.singel-course .price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.singel-course .cont {
    padding: 25px;
}

.singel-course h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    transition: color 0.3s ease;
}

.singel-course:hover h4 {
    color: var(--accent-color);
}

/* Enhanced Testimonials */
.singel-testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
    margin: 20px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
}

/* Our Facilities (icons + spacing) */
#video-feature .feature ul { margin: 0; padding: 0; list-style: none; }
#video-feature .feature ul li { margin-bottom: 10px; }
#video-feature .singel-feature { display: flex; align-items: center; gap: 12px; }
#video-feature .singel-feature .icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
#video-feature .singel-feature .icon img { width: 32px; height: 32px; object-fit: contain; }
#video-feature .singel-feature .cont h4 { margin: 0; line-height: 1.2; font-size: 18px; }

.singel-testimonial .testimonial-thum {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.singel-testimonial .testimonial-thum img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.singel-testimonial .testimonial-thum .quote {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.singel-testimonial .testimonial-cont {
    flex: 1;
    padding-left: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.singel-testimonial p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333 !important;
    line-height: 1.6;
}

.singel-testimonial h6 {
    color: #07294d !important;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.singel-testimonial span {
    color: #666 !important;
    font-size: 0.9rem;
}

/* Enhanced Gallery */
.singel-patnar {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin: 10px;
}

.singel-patnar:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.singel-patnar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.singel-patnar:hover img {
    transform: scale(1.1);
}

/* Enhanced Footer */
#footer-part {
    background: var(--gradient-primary);
    color: var(--white);
}

.copyright p, .copyright a {
    color: rgba(255,255,255,0.9);
}

/* Backbone overlay card */
.backbone-hero .backbone-image {
    position: relative;
}

.backbone-hero .backbone-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.backbone-card {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    background: rgba(7, 41, 77, 0.82);
    color: #fff;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    border: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    max-height: none;
    overflow-y: auto;
}

.backbone-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* left tall card, right stack */
    gap: 16px;
    height: 100%;
}

.backbone-col-left,
.backbone-col-right .backbone-card-item {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 16px;
}

.backbone-col-left { overflow-y: auto; }
.backbone-col-right { display: grid; grid-template-rows: 1fr 1.2fr; gap: 16px; }
.backbone-card-top { overflow-y: auto; }
.backbone-card-bottom { overflow-y: auto; }

@media (max-width: 992px) {
    .backbone-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .backbone-col-right { grid-template-rows: auto auto; }
}

.backbone-title {
    margin: 0 0 5px 0;
    font-weight: 800;
    color: #ffffff;
}

.backbone-subtitle {
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #ffc600;
}
.backbone-title,
.backbone-subtitle,
.backbone-card h5,
.backbone-card h6 {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.backbone-title::after,
.backbone-subtitle::after,
.backbone-card h5::after,
.backbone-card h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #ff4da6; /* pink */
    transform: scaleX(0.6);
    transform-origin: left center;
    transition: transform 250ms ease;
}

.backbone-title:hover::after,
.backbone-subtitle:hover::after,
.backbone-card h5:hover::after,
.backbone-card h6:hover::after {
    transform: scaleX(1);
}

.backbone-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}

.backbone-meta i { color: #ffc600; margin-right: 6px; }

.backbone-list {
    padding-left: 18px;
    margin-top: 10px;
}

.backbone-card p,
.backbone-card li,
.backbone-card h5,
.backbone-card h6 {
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.backbone-card h5,
.backbone-card h6 {
    margin-top: 10px;
}

/* subtle scrollbar for overflow */
.backbone-card::-webkit-scrollbar { width: 8px; }
.backbone-card::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 8px; }
.backbone-card::-webkit-scrollbar-track { background: transparent; }

@media (max-width: 768px) {
    .backbone-card {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: 0;
        border-width: 0;
        max-height: none;
        overflow: auto;
    }
}

.footer-about .logo img {
    max-height: 80px;
    width: auto;
}

.footer-link ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-link ul li a:hover {
    color: var(--secondary-color);
}

.footer-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social ul li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   NEWSLETTER SUBSCRIPTION SECTION
======================================== */

.newsletter-section {
    background: linear-gradient(135deg, #07294d 0%, #2c5aa0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.newsletter-wrapper {
    position: relative;
    z-index: 2;
}

/* Newsletter Content */
.newsletter-content {
    color: var(--white);
    padding-right: 30px;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 198, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

.newsletter-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.newsletter-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.newsletter-benefits li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Newsletter Form Wrapper */
.newsletter-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-form-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Newsletter Form Styles */
.newsletter-form .form-group {
    margin-bottom: 25px;
}

.newsletter-form label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.newsletter-form label i {
    margin-right: 8px;
    color: var(--accent-color);
}

.newsletter-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.newsletter-form .form-control:focus {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
    outline: none;
}

.newsletter-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2307294d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Form Checkbox */
.form-check {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.form-check-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--primary-color);
}

/* Newsletter Button */
.newsletter-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(7, 41, 77, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 41, 77, 0.4);
    background: var(--gradient-primary);
    color: var(--white);
}

.newsletter-btn i {
    font-size: 20px;
}

/* Newsletter Message */
.newsletter-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.newsletter-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Additional Slider Styling */
.single-slider.enhanced-slider {
    background-position: center center;
    background-size: cover;
}

/* Slider container adjustments */
#slider-part .container {
    max-width: 100%;
    padding: 0;
    position: static;
    height: auto;
}

.enhanced-slider .row {
    margin: 0;
    width: 100%;
    position: static;
    height: auto;
}

.enhanced-slider .col-12 {
    padding: 0;
    max-width: 100%;
    flex: 0 0 100%;
    position: static;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    #video-feature { padding: 30px 0 !important; }
    .video-container { min-height: 300px; height: 300px; }
    .video-player { height: 300px; }
    .enhanced-slider {
        min-height: 450px;
    }
    
    .enhanced-slider-content {
        padding: 25px 20px;
        width: 90%;
        bottom: 20px !important;
        border-radius: 10px;
        border-width: 2px;
    }
    
    .enhanced-slider-content h1 {
        font-size: 1.3rem;
    }
    
    .slider-buttons {
        gap: 8px;
        margin-top: 15px;
    }
    
    .slider-buttons .main-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .slider-top-categories {
        top: 20px;
        gap: 10px;
        flex-wrap: wrap;
        width: 90%;
    }
    
    .category-box {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .category-box i {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .category-box span {
        font-size: 14px;
    }
    
    .singel-course {
        margin-bottom: 30px;
    }
    
    .newsletter-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form-wrapper {
        padding: 30px 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .enhanced-slider-content h1 {
        font-size: 1.6rem;
    }
}

/* Ensure all slider action buttons fit on one row on large screens */
@media (min-width: 992px) {
    .slider-buttons { flex-wrap: nowrap; justify-content: center; gap: 10px; }
    .slider-buttons .main-btn { padding: 10px 24px; font-size: 14px; }
}

/* Loading animation removed */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp button */
.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 80px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.3); }
.whatsapp-fab i { font-size: 26px; }

/* Enhanced Form Elements */
input, textarea, select {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 16px;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    outline: none;
}

/* Enhanced Section Spacing */
section {
    padding: 80px 0;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title h5 {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

