/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo-reveal img {
    width: 150px;
    height: auto;
    animation: logoFadeScale 1.2s ease-out forwards;
    opacity: 0;
}
.home-preloader .logo-reveal img {
    width: 200px;
}
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loader-text-home {
    text-align: center;
    animation: textFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}
.loader-text-home h2 { font-size: 1.5rem; letter-spacing: 3px; }
.loader-text-home h1 { font-size: 3rem; letter-spacing: 5px; }

@keyframes logoFadeScale {
    0% { transform: scale(0.5); opacity: 0; filter: blur(10px); }
    100% { transform: scale(1); opacity: 1; filter: blur(0); }
}
@keyframes textFadeIn {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

:root {
    --primary-color: #00479b; /* Official Blue */
    --secondary-color: #ffc800; /* Official Yellow */
    --accent-color: #e41f26; /* Official Red */
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fcfcfc;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Outfit', sans-serif;
}

.navbar {
    background: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
    letter-spacing: -1px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-premium {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.sticky-announcement {
    background: var(--accent-color);
    color: white;
    padding: 10px 0;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1000;
}

/* User Requested Styles */
.section-title { 
    font-weight: 800; 
    color: var(--primary-color); 
    margin-bottom: 5px; 
} 

.title-underline { 
    width: 60px; 
    height: 4px; 
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color)); 
    border-radius: 2px; 
} 

.news-card { 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
} 

.news-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; 
}

/* Premium News Detail Styles */
.news-detail-hero {
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}
.news-content {
    font-size: 1.1rem;
    color: #4a4a4a;
}
.news-content::first-letter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: -0.2rem;
    font-family: 'Outfit', sans-serif;
}
.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

/* Quick Links Styles */
/* Swiper Custom Styles */
.quickLinksSwiper .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.2;
}
.quickLinksSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}
.quickLinksSwiper .swiper-slide {
    height: auto;
}
.quick-link-card {
    height: 100%;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.quick-link-card:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-5px);
}
.quick-link-card i {
    transition: all 0.3s ease;
}
.quick-link-card:hover i {
    color: var(--secondary-color) !important;
    transform: scale(1.2);
}

/* Event Styles */
.event-date {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
}

/* Testimonial Styles */
.testimonial-card {
    border-radius: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}
.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Video Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* FAQ Styles */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.accordion-button {
    font-weight: 600;
    padding: 1.2rem;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}
.accordion-button:after {
    background-size: 1.25rem;
}
