body {
    padding-top: 80px;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.5);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-30%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
    color: #FFD54F;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-caption p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    margin-bottom: 30px;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-apply-hero {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1B5E20;
    font-weight: bold;
    padding: 18px 50px;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.5);
    animation: pulse 2s infinite;
}

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

.btn-apply-hero:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 213, 79, 0.7);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator i {
    font-size: 2.5rem;
    color: #FFD54F;
}

/* ========================================
   NEW ENROLLMENT & PROGRAMS SECTIONS
======================================== */

.enrollment-section {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.enrollment-section::before {
    content: '🎓';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.1;
}

.enrollment-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.enrollment-badge {
    background: #1B5E20;
    color: #FFD54F;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.enrollment-box h2 {
    color: #1B5E20;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.class-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #1B5E20;
}

.class-list h4 {
    color: #1B5E20;
    font-weight: bold;
    margin-bottom: 15px;
}

.class-list ul {
    list-style: none;
    padding: 0;
}

.class-list ul li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.class-list ul li:last-child {
    border-bottom: none;
}

.class-list ul li i {
    color: #FFD54F;
    margin-right: 10px;
}

.btn-download-flier {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.4);
}

.btn-download-flier:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(27, 94, 32, 0.6);
    color: white;
}

.contact-info-box {
    background: #FFF9E6;
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    border: 2px dashed #1B5E20;
}

.contact-info-box h5 {
    color: #1B5E20;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info-box p {
    margin: 8px 0;
    font-size: 1.1rem;
}

.contact-info-box i {
    color: #FFD54F;
    margin-right: 10px;
}

.contact-info-box a {
    color: #1B5E20;
    font-weight: bold;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

/* Programs Download Section */
.programs-download-section {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.programs-download-section::before {
    content: '📚';
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 15rem;
    opacity: 0.1;
}

.programs-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    color: #333;
    position: relative;
    z-index: 1;
}

.programs-box h2 {
    color: #1B5E20;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.programs-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.program-type-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #FFD54F;
    transition: all 0.3s;
}

.program-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.program-type-card h4 {
    color: #1B5E20;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.program-type-card ul {
    list-style: none;
    padding: 0;
}

.program-type-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
}

.program-type-card ul li i {
    color: #1B5E20;
    margin-right: 8px;
}

.btn-download-program {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1B5E20;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.4);
}

.btn-download-program:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 213, 79, 0.6);
    color: #1B5E20;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    color: #1B5E20;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FFD54F 0%, #1B5E20 100%);
    border-radius: 10px;
}

.section-subtitle {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-bottom: 50px;
}

/* Feature Boxes */
.feature-box {
    padding: 40px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 5px solid #FFD54F;
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(27, 94, 32, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg);
}

/* Program Cards */
.program-card {
    border: none;
    transition: all 0.4s ease;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.3);
}

.program-card .card-header {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    padding: 30px;
    font-size: 3rem;
    text-align: center;
}

.program-card .card-body {
    padding: 30px;
}

.program-card h5 {
    color: #1B5E20;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    color: #FFD54F;
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: #FFD54F;
    color: #1B5E20;
    font-weight: bold;
    padding: 20px 60px;
    font-size: 1.3rem;
    border: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 213, 79, 0.4);
}

.btn-cta:hover {
    background: #FFC107;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 213, 79, 0.6);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: #FFD54F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

/* ===========================
   MOBILE RESPONSIVE STYLES
=========================== */

/* Tablets and below (768px) */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* Hero Carousel - Reduce height on mobile */
    .hero-carousel {
        height: 70vh;
    }
    
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .btn-apply-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator i {
        font-size: 1.8rem;
    }
    
    /* New Sections - Enrollment & Programs */
    .enrollment-section,
    .programs-download-section {
        padding: 50px 0;
    }
    
    .enrollment-box,
    .programs-box {
        padding: 25px;
    }
    
    .enrollment-box h2,
    .programs-box h2 {
        font-size: 1.8rem;
    }
    
    .class-list {
        padding: 20px;
    }
    
    .programs-types {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .program-type-card {
        padding: 20px;
    }
    
    .btn-download-flier,
    .btn-download-program {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .contact-info-box {
        padding: 15px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Feature Boxes */
    .feature-box {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Program Cards */
    .program-card .card-header {
        padding: 20px;
        font-size: 2rem;
    }
    
    .program-card .card-body {
        padding: 20px;
    }
    
    .program-card h5 {
        font-size: 1.3rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .btn-cta {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 15px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
}

/* Mobile phones (576px and below) */
@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    /* Hero Carousel - Further reduce on small mobile */
    .hero-carousel {
        height: 60vh;
    }
    
    .carousel-item {
        height: 60vh;
    }
    
    .carousel-caption {
        padding: 0 15px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .btn-apply-hero {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* New Sections - Mobile */
    .enrollment-section,
    .programs-download-section {
        padding: 40px 0;
    }
    
    .enrollment-section::before,
    .programs-download-section::before {
        font-size: 8rem;
    }
    
    .enrollment-box,
    .programs-box {
        padding: 20px;
    }
    
    .enrollment-box h2,
    .programs-box h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .enrollment-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .class-list {
        padding: 15px;
        margin: 20px 0;
    }
    
    .class-list h4 {
        font-size: 1.2rem;
    }
    
    .class-list ul li {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .program-type-card h4 {
        font-size: 1.3rem;
    }
    
    .program-type-card ul li {
        font-size: 0.95rem;
    }
    
    .btn-download-flier,
    .btn-download-program {
        padding: 10px 25px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .contact-info-box {
        padding: 15px;
        margin-top: 20px;
    }
    
    .contact-info-box h5 {
        font-size: 1.1rem;
    }
    
    .contact-info-box p {
        font-size: 1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Section Padding */
    .section-padding {
        padding: 40px 0;
    }
    
    /* Feature Boxes */
    .feature-box {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-box h5 {
        font-size: 1.1rem;
    }
    
    /* Program Cards */
    .program-card {
        margin-bottom: 20px;
    }
    
    .program-card .card-header {
        padding: 15px;
        font-size: 1.8rem;
    }
    
    .program-card .card-body {
        padding: 15px;
    }
    
    .program-card h5 {
        font-size: 1.2rem;
    }
    
    .program-card ul {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .contact-info h5 {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Very small devices (400px and below) */
@media (max-width: 400px) {
    .carousel-caption h1 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
    }
    
    .btn-apply-hero {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .enrollment-box h2,
    .programs-box h2 {
        font-size: 1.3rem;
    }
}

/* ========================================
   ACTIVITIES SECTION (Home Page)
======================================== */

.activities-showcase {
    padding: 30px;
}

.activities-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.3);
}

.activities-icon-wrapper i {
    font-size: 2.5rem;
    color: #FFD54F;
}

.activities-showcase .section-title {
    color: #1B5E20;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.activities-showcase .section-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.activities-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.activity-feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.2);
}

.activity-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-right: 10px;
}

.activity-feature span {
    color: #1B5E20;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-activities {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    display: inline-flex;
    align-items: center;
}

.btn-activities:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.5);
    color: white;
}

.btn-activities i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.activities-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.activities-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activities-image-wrapper:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activities-image-wrapper:hover .video-play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 152, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 152, 0, 1);
}

.play-btn i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-play-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive for Activities Section */
@media (max-width: 992px) {
    .activities-showcase {
        padding: 20px;
    }
    
    .activities-showcase .section-title {
        font-size: 2rem;
    }
    
    .activities-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .activities-icon-wrapper i {
        font-size: 2rem;
    }
    
    .activities-image-wrapper img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .activities-showcase {
        padding: 15px;
    }
    
    .activities-showcase .section-title {
        font-size: 1.8rem;
    }
    
    .activities-showcase .section-text {
        font-size: 1rem;
    }
    
    .btn-activities {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .activities-image-wrapper {
        margin-top: 30px;
    }
    
    .activities-image-wrapper img {
        height: 300px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .activities-showcase .section-title {
        font-size: 1.5rem;
    }
    
    .activities-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .activities-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .activities-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .activity-feature {
        padding: 10px 18px;
    }
    
    .activity-feature span {
        font-size: 0.9rem;
    }
    
    .activities-image-wrapper img {
        height: 250px;
    }
}

/* ========================================
   STUDENT EXPERIENCE SECTION
======================================== */

.student-experience-section {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.student-experience-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 50%;
}

.student-experience-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 213, 79, 0.08);
    border-radius: 50%;
}

.student-experience-section .section-title {
    color: #FFD54F;
    font-weight: 900;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.student-experience-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #FFD54F;
    border-radius: 10px;
}

.student-experience-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.section-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 213, 79, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon-wrapper i {
    font-size: 2rem;
    color: #FFD54F;
}

.student-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.student-slide-content {
    position: relative;
    height: 500px;
}

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

.student-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(27, 94, 32, 0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.student-caption {
    text-align: center;
    color: white;
}

.student-caption i {
    font-size: 2.5rem;
    color: #FFD54F;
    margin-bottom: 15px;
    display: block;
}

.student-caption h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.student-caption p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.student-carousel .carousel-indicators {
    bottom: 20px;
}

.student-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #FFD54F;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.student-carousel .carousel-indicators button.active {
    background: #FFD54F;
    transform: scale(1.2);
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 213, 79, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav-btn i {
    font-size: 1.2rem;
    color: #1B5E20;
}

.carousel-nav-btn:hover {
    background: #FFD54F;
    transform: scale(1.1);
}

.student-carousel .carousel-control-prev,
.student-carousel .carousel-control-next {
    width: auto;
    opacity: 1;
}

.student-carousel .carousel-control-prev {
    left: 20px;
}

.student-carousel .carousel-control-next {
    right: 20px;
}

.experience-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 213, 79, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 213, 79, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    font-size: 1.3rem;
    color: #FFD54F;
}

.highlight-item span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Student Experience Responsive */
@media (max-width: 992px) {
    .student-experience-section {
        padding: 60px 0;
    }
    
    .student-slide-content {
        height: 400px;
    }
    
    .student-caption h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .student-experience-section {
        padding: 50px 0;
    }
    
    .student-experience-section .section-title {
        font-size: 2rem;
    }
    
    .student-experience-section .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .section-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .student-slide-content {
        height: 350px;
    }
    
    .student-caption {
        padding: 0 20px;
    }
    
    .student-caption i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .student-caption h4 {
        font-size: 1.3rem;
    }
    
    .student-caption p {
        font-size: 1rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-btn i {
        font-size: 1rem;
    }
    
    .student-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .student-carousel .carousel-control-next {
        right: 10px;
    }
    
    .experience-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .highlight-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .student-experience-section {
        padding: 40px 0;
    }
    
    .student-experience-section .section-title {
        font-size: 1.6rem;
    }
    
    .student-experience-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .section-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .section-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .student-slide-content {
        height: 300px;
    }
    
    .student-caption i {
        font-size: 1.8rem;
    }
    
    .student-caption h4 {
        font-size: 1.2rem;
    }
    
    .student-caption p {
        font-size: 0.9rem;
    }
    
    .student-overlay {
        padding-bottom: 25px;
    }
    
    .experience-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .highlight-item {
        width: fit-content;
    }
}
