:root {
            --primary: #FF0000;
            --secondary: #0000FF;
            --accent: #FFD700;
            --light: #f8f9fa;
            --dark: #212529;
            --accent-orange: #ff6b35;
            --accent-green: #2ecc71;
            --accent-purple: #9b59b6;
            --accent-yellow: #f1c40f;
            --primary-blue: #0072ce;
            --light-sky-blue: #e3f2fd;
        }
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .logo-container {
            text-align: center;
        }

        .logo {
            width: 70%; /* Adjust based on your logo size */
            height: auto;
            animation: pulse 1.5s infinite ease-in-out;
        }

        .loading-text {
            margin-top: 20px;
            font-family: Arial, sans-serif;
            color: #333;
        }

        .loading-bar {
            width: 100%;
            height: 2vh;
            background: #f0f0f0;
            margin: 10px auto;
            border-radius: 10px;
            overflow: hidden;
        }

        .loading-progress {
            width: 0%;
            height: 100%;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        .content {
            display: none;
            padding: 20px;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
        }

        .bg-primary {
            background-color: var(--primary) !important;
        }

        .bg-accent {
            background-color: var(--accent) !important;
        }

        .text-primary {
            color: var(--primary) !important;
        }

        .text-secondary {
            color: var(--secondary) !important;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: #e00000;
            border-color: #e00000;
        }

        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--dark);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
        }

        .btn-accent:hover {
            background-color: #e6c200;
            border-color: #e6c200;
            color: var(--dark);
        }

        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
        }

        .logo-placeholder {
            width: 150px;
            height: 100%;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 10px;
        }

        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1519457431-44ccd64a579b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        .section-padding {
            padding: 80px 0;
        }

        /* .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
            text-align: center;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        } */

        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
         .section-title {
            background-color: var(--primary);
            border-radius: 50% / 60%;
            padding: 25px 60px;
            font-size: 2 rem;
            color: white;
            margin: 0;
            font-weight: bold;
            text-align: center;
            display: inline-block;
            transform: rotate(-5deg);
            transition: all 0.3s ease;
            margin-bottom: 3%;
        }
        
        .section-title:hover {
            transform: rotate(0deg) scale(1.05);
            background-color: var(--primary);
        }
        .section-sub-title{
            font-weight: bold;
            font-size: 30px;
        }
        
        /* .section-title-text{
            font-size: 2.5rem;
            color: white;
            margin: 0;
            font-weight: bold;
        } */
        .bg-blue {
            background: linear-gradient(135deg, var(--light-sky-blue) 0%, var(--primary-blue) 100%);
            color: #FFFFFF;
        }

        .program-card {
            text-align: center;
            padding: 30px 20px;
            height: 100%;
        }

        .program-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .bg-purple{
            background-color: #9b59b6;
            color: #f1c40f;
        }

        .facility-card {
            height: 100%;
        }

        .staff-card {
            text-align: center;
        }

        .staff-ime {
              width: 100%;
              max-width: 260px;        /* controls the displayed size */
              aspect-ratio: 1 / 1;     /* forces a square */
              object-fit: cover;       /* fills square without distortion */
              border-radius: 0 !important; /* override any circle rule */
              display: block;
              margin: 0 auto 16px;
              box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            
        }

        .gallery-item {
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .event-item {
            padding: 15px 0;
            border-bottom: 1px dashed #dee2e6;
        }

        .event-date {
            background-color: var(--primary);
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: bold;
            margin-right: 15px;
            min-width: 100px;
            text-align: center;
        }

        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                height: 80vh;
            }

            .section-title:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .event-date {
                margin-bottom: 10px;
            }
        }
        
.image-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 320px;
}

.marquee-track {
  display: flex;
  animation: scroll-horizontal 10s linear infinite;
  gap: 20px; /* Space between images */
}

.marquee-track img {
  height: 300px; /* Fixed height */
  object-fit: cover; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional styling */
}

@keyframes scroll-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.image-marquee:hover .marquee-track {
  animation-play-state: paused;
}


li a{
    text-decoration: none;
    color: white;
}