/* style.css */
        :root {
            --primary: #2E7D32;
            --primary-dark: #1B5E20;
            --secondary: #FFC107;
            --light: #f8f9fa;
            --dark: #212121;
            --gray: #757575;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 50px;
            width: auto;
            border-radius: 50%;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 0;
            line-height: 1.2;
        }
        
        .logo-text span {
            font-size: 0.9rem;
            color: var(--gray);
            display: block;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        nav a:hover, nav a.active {
            color: var(--primary);
            background-color: rgba(46, 125, 50, 0.1);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero.png') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background-color: #ffca28;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            margin-right: 15px;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        /* About Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
        .services {
            background-color: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Results Section */
        .results {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('hero1.jpg') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
        }
        
        .results .section-title h2 {
            color: var(--white);
        }
        
        .results .section-title h2::after {
            background-color: var(--secondary);
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .stat-item {
            margin: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--white);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            margin: 20px;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        /* Tutors Section */
        .tutors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .tutor-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .tutor-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .tutor-image {
            height: 250px;
            overflow: hidden;
        }
        
        .tutor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .tutor-card:hover .tutor-image img {
            transform: scale(1.1);
        }
        
        .tutor-info {
            padding: 20px;
        }
        
        .tutor-info h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .tutor-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--white);
        }
        
        .contact-container {
            display: flex;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .map-container {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Apply Section */
        .apply {
            text-align: center;
            background-color: var(--light);
        }
        
        .apply-options {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .apply-option {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            width: 300px;
            transition: var(--transition);
        }
        
        .apply-option:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .apply-option i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .apply-option h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-col ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                display: block;
                width: 100%;
                margin-bottom: 15px;
            }
            
            .btn-primary {
                margin-right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .stats {
                flex-direction: column;
            }
            
            .apply-options {
                flex-direction: column;
                align-items: center;
            }
        }
/* Pricing Section Styles */
.pricing {
    background-color: var(--white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 30px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pricing-tier {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-amount {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-amount span {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-popular {
    position: relative;
    border: 2px solid var(--secondary);
}

.pricing-popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
/* Application Form Styles */
.application-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}
/* Add these new styles to your existing style.css */

/* Subject selection container */
.subject-selection-container {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.subject-selection-container.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grade selection prompt */
.grade-prompt {
    background-color: rgba(46, 125, 50, 0.1);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 500;
}

/* File upload improvements */
.file-upload-label.drag-over {
    border-color: var(--primary);
    background-color: rgba(46, 125, 50, 0.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .subject-options {
        grid-template-columns: 1fr !important;
    }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        margin-right: 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
}

.testimonial-submission {
    background-color: #f9f9f9;
}

.testimonial-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-form .form-group {
    margin-bottom: 20px;
}

.testimonial-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-form input[type="text"],
.testimonial-form textarea,
.testimonial-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.testimonial-form textarea {
    min-height: 120px;
}

.testimonial-form small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.8em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2em;
    color: var(--primary);
    line-height: 1;
}

.testimonial-meta {
    font-size: 0.9em;
    color: #555;
    text-align: right;
}

/* Video Section Styles */
.video-section {
    background-color: var(--light);
    padding: 80px 0;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.utp-video {
    width: 100%;
    display: block;
    background: #000;
}

.video-fallback {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
}

.no-video .video-fallback {
    display: block;
}

.no-video .utp-video {
    display: none;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.video-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Custom video controls */
.utp-video::-webkit-media-controls {
    background: rgba(0,0,0,0.5);
}

.utp-video::-webkit-media-controls-play-button {
    color: var(--primary);
}

.utp-video::-webkit-media-controls-current-time-display,
.utp-video::-webkit-media-controls-time-remaining-display {
    color: white;
}

/* Subject selection container */
.subject-selection-container {
display: none;
animation: fadeIn 0.3s ease-out;
}
.subject-selection-container.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Grade selection prompt */
.grade-prompt {
background-color: rgba(46, 125, 50, 0.1);
padding: 15px;
border-radius: 5px;
text-align: center;
margin-top: 10px;
color: var(--primary);
font-weight: 500;
}
/* File upload improvements */
.file-upload-label.drag-over {
border-color: var(--primary);
background-color: rgba(46, 125, 50, 0.05);
}
/* Responsive adjustments */
@media (max-width: 576px) {
.subject-options {
grid-template-columns: 1fr !important;
}
}
/* Footer */
footer {
background-color: var(--dark);
color: var(--white);
padding: 50px 0 20px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
}
.footer-col h3 {
color: var(--secondary);
margin-bottom: 20px;
font-size: 1.2rem;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 10px;
}
.footer-col ul li a {
color: var(--gray);
text-decoration: none;
transition: var(--transition);
}
.footer-col ul li a:hover {
color: var(--white);
padding-left: 5px;
}
.copyright {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: var(--gray);
font-size: 0.9rem;
}
/* Responsive Styles */
@media (max-width: 768px) {
.header-container {
flex-direction: column;
text-align: center;
gap: 15px;
}
nav ul {
flex-direction: column;
gap: 10px;
}
.hero {
height: 50vh;
}
.hero h2 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.btn {
display: block;
width: 100%;
margin-bottom: 15px;
}
.btn-primary {
margin-right: 0;
}
.form-row {
flex-direction: column;
gap: 0;
}
}
@media (max-width: 576px) {
.section {
padding: 60px 0;
}
.section-title h2 {
font-size: 1.8rem;
}
.application-form {
padding: 20px;
}
.mobile-menu-btn {
display: block;
}
nav ul {
display: none;
}
nav ul.show {
display: flex;
}
}
.testimonial-submission {
background-color: #f9f9f9;
}
.testimonial-form {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-form .form-group {
margin-bottom: 20px;
}
.testimonial-form label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--primary);
}
.testimonial-form input[type="text"],
.testimonial-form textarea,
.testimonial-form select {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 5px;
font-family: inherit;
}
.testimonial-form textarea {
min-height: 120px;
}
.testimonial-form small {
display: block;
margin-top: 5px;
color: #666;
font-size: 0.8em;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
margin-top: 30px;
}
.testimonial-card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.testimonial-content {
font-style: italic;
margin-bottom: 15px;
position: relative;
padding-left: 20px;
}
.testimonial-content::before {
content: '"';
position: absolute;
left: 0;
top: 0;
font-size: 2em;
color: var(--primary);
line-height: 1;
}
.testimonial-meta {
font-size: 0.9em;
color: #555;
text-align: right;
}
/* Video Section Styles */
.video-section {
background-color: var(--light);
padding: 80px 0;
}
.video-container {
position: relative;
max-width: 900px;
margin: 30px auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.utp-video {
width: 100%;
display: block;
background: #000;
}
.video-fallback {
display: none;
text-align: center;
padding: 20px;
background: #f5f5f5;
}
.no-video .video-fallback {
display: block;
}
.no-video .utp-video {
display: none;
}
.video-actions {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.video-control {
display: flex;
align-items: center;
gap: 8px;
}
/* Custom video controls */
.utp-video::-webkit-media-controls {
background: rgba(0,0,0,0.5);
}
.utp-video::-webkit-media-controls-play-button {
color: var(--primary);
}
.utp-video::-webkit-media-controls-current-time-display,
.utp-video::-webkit-media-controls-time-remaining-display {
color: white;
}
/* Countdown Styles */
#countdown-container {
text-align: center;
margin-bottom: 40px;
padding: 20px;
background-color: #f0f8f0;
border-radius: 10px;
box-shadow: var(--shadow);
}
#countdown-container h3 {
color: var(--primary);
margin-bottom: 20px;
}
#countdown {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.countdown-item {
background: linear-gradient(135deg, var(--light), rgba(46, 125, 50, 0.1));
border: 1px solid var(--primary);
padding: 20px 25px;
border-radius: 8px;
min-width: 100px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
transition: var(--transition);
animation: pulse 2s infinite ease-in-out;
}
.countdown-item:hover {
transform: translateY(-5px) scale(1.05);
}
.countdown-number {
display: block;
font-size: 3.5rem;
font-weight: 700;
color: #228B22;
line-height: 1;
}
.countdown-label {
display: block;
font-size: 1.1rem;
color: var(--gray);
text-transform: uppercase;
margin-top: 5px;
}
@media (max-width: 576px) {
#countdown {
gap: 10px;
}
.countdown-item {
padding: 15px 20px;
min-width: 80px;
}
.countdown-number {
font-size: 2.5rem;
}
.countdown-label {
font-size: 0.8rem;
}
}
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

