<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        :root {
            --primary-color: #2d4697;
            --secondary-color: #ffc107;
            --accent-color: #4a148c;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        /* */
  /* Hero Section with Background Carousel */
      .hero-section {
            position: relative;
            min-height: 80vh;
            color: #fff;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .hero-background .item {
            height: 80vh;
            background-size: cover;
            background-position: center;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(39, 39, 40, 0.7);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 100px;
            /* padding-bottom: 65px; */
        }
        
        .logo {
            max-width: 200px;
            margin-bottom: 20px;
        }
        
        .main-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }  
        
        /* Custom Owl Carousel Styling */
        .owl-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .owl-theme .owl-dots .owl-dot span {
            background: rgba(255, 255, 255, 0.5);
        }
        
        .owl-theme .owl-dots .owl-dot.active span,
        .owl-theme .owl-dots .owl-dot:hover span {
            background: #fff;
        }
        
        /* Custom Navigation Arrows */
        .owl-prev, .owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem !important;
            background: rgba(0, 0, 0, 0.3) !important;
            color: #fff !important;
            padding: 10px !important;
            width: 50px;
            height: 50px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            border-radius: 50% !important;
            transition: all 0.3s ease;
        }
        
        .owl-prev {
            left: 20px;
        }
        
        .owl-next {
            right: 20px;
        }
        
        .owl-prev:hover, .owl-next:hover {
            background: rgba(0, 0, 0, 0.6) !important;
        }

        .btn-primary-custom {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #ffb300;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        
        .feature-box {
            padding: 30px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-align: center;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .schedule-item {
            border-left: 3px solid var(--secondary-color);
            padding-left: 25px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .schedule-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 5px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--secondary-color);
        }
        
        .schedule-time {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .gallery-img {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .gallery-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        footer {
            background: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgb(12 22 51 / 29%);
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .hero-section {
                padding: 80px 0;
            }
        }
 /* Medal Winners Section Styles */
 #medal-winners {
        background-color: #f8f9fa;
    }
    
    .medal-card {
        border: none;
        border-radius: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        overflow: hidden;
        position: relative;
    }
    
    .medal-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .medal-card.gold {
        border-top: 4px solid #FFD700;
    }
    
    .medal-card.silver {
        border-top: 4px solid #C0C0C0;
    }
    
    .medal-badge {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -40px auto 20px;
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .medal-badge.gold {
        background: linear-gradient(135deg, #FFD700, #D4AF37);
        color: white;
    }
    
    .medal-badge.silver {
        background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
        color: white;
    }
    
    .student-details {
        background: rgba(0,0,0,0.02);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .nav-tabs .nav-link {
        color: #495057;
        font-weight: 500;
        border: none;
        padding: 10px 20px;
        position: relative;
    }
    
    .nav-tabs .nav-link.active {
        color: #1a237e;
        background: transparent;
        border-bottom: 3px solid #1a237e;
    }
    
    .nav-tabs .nav-link::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        background: #1a237e;
        transition: width 0.3s;
    }
    
    .nav-tabs .nav-link:hover::after {
        width: 100%;
    }
    
    .filter-btn.active {
        background-color: #1a237e;
        color: white;
    }
    
    @media (max-width: 768px) {
        .medal-badge {
            width: 50px;
            height: 50px;
            font-size: 20px;
            margin: -30px auto 15px;
        }
        
        .nav-tabs .nav-link {
            padding: 8px 12px;
            font-size: 14px;
        }
    }


@media (max-width: 575px) {
    /* Hero Section Adjustments */
    .hero-section {
        min-height: 40vh;
        height: auto;
    }
    
    .hero-background .item {
        height: 80vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .main-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .logo {
        max-width: 150px;
        margin-bottom: 15px;
    }
    
    /* Button adjustments */
    .btn-primary-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Carousel Navigation adjustments */
    .owl-prev, .owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem !important;
    }
    
    .owl-prev {
        left: 10px;
    }
    
    .owl-next {
        right: 10px;
    }
    
    /* Ensure full image display */
    .hero-background {
        background-position: center center;
        background-attachment: scroll;
    }
    
    /* Dots positioning */
    .owl-dots {
        bottom: 10px;
    }
    
    /* Content padding for very small screens */
    .hero-content .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 400px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .hero-background .item {
        height: 70vh;
    }
    
    .btn-primary-custom {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

</pre></body></html>