/* Base Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #2a5298;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f47920;
    border-radius: 2px;
}

.section-header h1::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #2a5298;
    border-radius: 2px;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2a5298;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f47920;
    border-radius: 2px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #2a5298;
    border-radius: 2px;
    z-index: 1;
}

.content-section {
    padding: 0px 0;
    position: relative;
    width: 100%;
}

.content-section:nth-child(even) {
    background-color: #f9f9f9;
}

/* Video Container Styles */
.video-text-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 524px;
    height: 300px;
    position: relative;
    background-color: #000;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.text-container {
    flex: 1;
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
}

.text-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.text-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #f47920;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Steps Styles */
.steps-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
}

.steps-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 10px;
    z-index: 2;
}

.steps-nav:before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 140px;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f47920, #ed5f26);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.2);
    margin: 0 auto;
}

.step-circle.active, .step-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4);
}

.step-circle i {
    font-size: 2rem;
}

.step-title {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 0 5px;
}

.step a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Step Content Styles */
.step-content-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 30px;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    text-align: center;
    padding-top: 0;
}

.step-content {
    display: block;
    animation: fadeIn 0.5s ease;
    padding: 0px 40px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.step-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 i {
    margin-right: 15px;
    color: #f47920;
    font-size: 1.5rem;
}

.step-content p {
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f47920;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.primary-btn {
    background: linear-gradient(135deg, #f47920, #ed5f26);
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #ed5f26, #f47920);
    box-shadow: 0 8px 20px rgba(244, 121, 32, 0.3);
    transform: translateY(-2px);
}

.secondary-btn {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.2);
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Full Width Sections */
.full-width-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.full-width-section.gray {
    background-color: #f9f9f9;
}

.full-width-section.white {
    background-color: #ffffff;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Competition Card Styles */
.competitions-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}



.competitions-grid {
    display: grid;
    /* Auto-fit collapses empty columns so 1/2/4/5 cards stay centered */
    grid-template-columns: repeat(auto-fit, minmax(160px, 180px));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    justify-items: center;
    justify-content: center;
}

.competition-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    z-index: 10;
}

.competition-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #f47920, #ed5f26);
    z-index: 11;
}

.competition-card:hover .icon {
    color: #f47920;
}

.competition-card:hover h3 {
    color: #f47920;
}

.competition-card:hover .date .day,
.competition-card:hover .date .month {
    color: #2a5298;
}

.competition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #f47920, #ed5f26);
}

.competition-card .icon {
    font-size: 2.2rem;
    color: #2a5298;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.competition-card h3 {
    font-size: 1rem;
    color: #2a5298;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.competition-card .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    color: #f27935;
    gap: 2px;
    transition: all 0.3s ease;
}

.competition-card .date .day {
    font-size: 1rem;
    font-weight: 700;
}

.competition-card .date .month {
    font-size: 0.85rem;
    font-weight: 600;
}

.competition-card .date .year {
    font-size: 0.75rem;
    color: #777;
    font-weight: 500;
}

/* Ribbon Styles */
.competition-card {
    position: relative;
}

/* On-Air Ribbon (Green with Check) */
.on-air-ribbon {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px;
    border-radius: 4px 0 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 5;
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.on-air-ribbon i {
    font-size: 0.8rem;
}



/* Completed Ribbon (Red with X) */
.completed-ribbon {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 6px;
    border-radius: 4px 0 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 5;
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.completed-ribbon i {
    font-size: 0.8rem;
}



/* Card States */
.competition-card.on-air {
    border: 2px solid #28a745;
}

.competition-card.on-air .icon {
    color: #28a745;
}

.competition-card.on-air h3 {
    color: #28a745;
}

.competition-card.completed {
    opacity: 0.8;
    border: 2px solid #dc3545;
}

.competition-card.completed:hover {
    opacity: 1;
}

.competition-card.completed .icon {
    color: #dc3545;
}

.competition-card.completed h3 {
    color: #dc3545;
}

/* Features Container */
.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #2a5298;
    max-width: 450px;
    width: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-box h3 {
    font-size: 1.5rem;
    color: #2a5298;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box h3 i {
    color: #f47920;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f47920, #ed5f26);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(244, 121, 32, 0.2);
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #2a5298;
    margin-bottom: 15px;
}

/* CTA Container */
.cta-container {
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-container h3 {
    font-size: 2rem;
    color: #2a5298;
    margin-bottom: 30px;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-option {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-option h3 {
    font-size: 1.8rem;
    color: #2a5298;
    margin-bottom: 20px;
}

/* Testimonial Styles */
.testimonial-content {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 5;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.student-profile-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.profile-info {
    text-align: center;
}

.student-name {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.student-details {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: sparkle 2s ease-in-out infinite;
}

.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.4s; }
.rating-stars i:nth-child(4) { animation-delay: 0.6s; }
.rating-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Big Quotes Styling */
.big-quotes {
    position: relative;
    padding: 10px 30px;
    margin-bottom: 20px;
}

.quote-start, .quote-end {
    position: absolute;
    color: #ffd700;
    line-height: 1;
    font-size: 3rem;
}

.quote-start i, .quote-end i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.quote-start {
    top: -5px;
    left: -10px;
}

.quote-end {
    bottom: -5px;
    right: 0;
}

/* Animated Background Elements */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 45%;
    right: 15%;
    animation-delay: 2s;
}

.circle-4 {
    width: 40px;
    height: 40px;
    top: 65%;
    right: 30%;
    animation-delay: 3s;
}

.circle-5 {
    width: 100px;
    height: 100px;
    top: 75%;
    right: 8%;
    animation-delay: 4s;
}

.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    animation: floatRotate 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 150px;
    top: 20%;
    right: 5%;
    transform: rotate(25deg);
    animation-delay: 0.5s;
}

.shape-2 {
    width: 150px;
    height: 100px;
    top: 55%;
    right: 20%;
    transform: rotate(-15deg);
    animation-delay: 2.5s;
}

.shape-3 {
    width: 180px;
    height: 120px;
    top: 10%;
    right: 35%;
    transform: rotate(45deg);
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 0.9; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .steps-nav {
        max-width: 700px;
    }

    .step {
        width: 120px;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        max-width: 100%;
    }

    .competitions-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
        gap: 10px;
        max-width: 1200px;
        padding: 10px 15px;
    }

    .competition-card {
        padding: 18px 12px;
        max-width: 160px;
    }

    .competition-card .icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .competition-card h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .competition-card .date .day {
        font-size: 0.9rem;
    }

    .competition-card .date .month {
        font-size: 0.8rem;
    }

    .competition-card .date .year {
        font-size: 0.7rem;
    }

    .on-air-ribbon, .completed-ribbon {
        padding: 5px;
        bottom: -1px;
        right: -1px;
    }

    .on-air-ribbon i, .completed-ribbon i {
        font-size: 0.7rem;
    }


}

@media (max-width: 768px) {
    .features-container, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-option {
        min-width: 100%;
    }

    .cta-container {
        padding: 30px;
    }

    .steps-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .steps-nav:before {
        display: none;
    }

    .competitions-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
        gap: 8px;
        max-width: 100%;
        padding: 10px 10px;
    }

    .competition-card {
        padding: 15px 10px;
        max-width: 140px;
    }

    .competition-card .icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .competition-card h3 {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .competition-card .date .day {
        font-size: 0.8rem;
    }

    .competition-card .date .month {
        font-size: 0.7rem;
    }

    .competition-card .date .year {
        font-size: 0.6rem;
    }

    .on-air-ribbon, .completed-ribbon {
        padding: 4px;
        bottom: -1px;
        right: -1px;
    }

    .on-air-ribbon i, .completed-ribbon i {
        font-size: 0.6rem;
    }



    .step-cards-container {
        flex-direction: column;
    }

    .step-cards-container .step-content {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .video-text-container {
        flex-direction: column;
        align-items: stretch;
    }

    .video-container {
        max-width: 100%;
        width: 100%;
        height: 250px;
    }

    .text-container {
        margin-top: 30px;
        min-height: auto;
    }

    .text-content {
        padding: 25px;
    }

    #specialdeals .desktop-view {
        flex-direction: column !important;
    }

    #specialdeals .image-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        height: 350px;
        position: relative;
        overflow: hidden;
    }

    #specialdeals .image-column img {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center center;
    }

    #specialdeals .text-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 40px 30px !important;
    }

    /* Adjust background elements for tablet */
    .bg-circle, .bg-shape {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .steps-nav {
        gap: 20px;
    }

    .step {
        width: 100px;
    }

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .step-circle i {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .competitions-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
        max-width: 100%;
        padding: 10px 15px;
    }

    .competition-card {
        padding: 15px 10px;
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 1.3rem;
    }

    .quote-start, .quote-end {
        font-size: 2.5rem;
    }

    .big-quotes {
        padding: 10px 25px;
    }
}

/* Mobile - Below 768px */
@media (max-width: 767px) {
    #specialdeals {
        padding: 30px 0 !important;
    }

    #specialdeals .desktop-view {
        flex-direction: column !important;
    }

    #specialdeals .image-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        height: 280px;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
    }

    #specialdeals .image-column img {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center center;
    }

    #specialdeals .text-column {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important;
    }

    .testimonial-content {
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 1.4rem !important;
        line-height: 1.6 !important;
    }

    .student-name {
        font-size: 1.2rem !important;
    }

    .student-details {
        font-size: 1.1rem !important;
    }

    .rating-stars i {
        font-size: 1.4rem !important;
    }

    .big-quotes {
        padding: 10px 20px !important;
    }

    .quote-start, .quote-end {
        font-size: 2.5rem !important;
    }

    /* Hide desktop background elements on mobile */
    .bg-elements {
        display: none !important;
    }

    /* Add simpler mobile background elements */
    #specialdeals::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="20" r="5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="8" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="70" r="6" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
        background-size: cover;
        opacity: 0.3;
        z-index: 1;
    }
}

/* Very Small Mobile - Below 480px */
@media (max-width: 480px) {
    #specialdeals {
        padding: 20px 0 !important;
    }

    #specialdeals .image-column {
        height: 220px;
    }

    #specialdeals .text-column {
        padding: 25px 15px !important;
    }

    .testimonial-quote {
        font-size: 1.2rem !important;
    }

    .student-name {
        font-size: 1.1rem !important;
    }

    .student-details {
        font-size: 1rem !important;
    }

    .rating-stars i {
        font-size: 1.2rem !important;
        gap: 5px;
    }

    .big-quotes {
        padding: 5px 15px !important;
    }

    .quote-start, .quote-end {
        font-size: 2rem !important;
    }

    .quote-start {
        left: -5px;
    }
}
