/* ===================================================
   APSAC Website - Main Stylesheet
   Author: Dept. of IT & Communication, GoAP
   Version: 2.0
   Last Updated: 06 May 2025
=================================================== */

/* ===== CSS Variables ===== */
:root {
    --primary: #0066cc;
    --primary-dark: #004999;
    --primary-light: #3399ff;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #00c9a7;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gradient-1: linear-gradient(135deg, #0066cc 0%, #00c9a7 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Header ===== */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}

.header-top {
    background: var(--gradient-1);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.header-top a:hover {
    opacity: 0.8;
}

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo-section img:hover {
    transform: scale(1.05);
}

.header-title {
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.header-title h1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.header-title p {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.header-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ===== Navigation ===== */
.navbar {
    background: var(--gradient-1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 18px 16px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    background: rgba(255,255,255,0.2);
}

.nav-link i.fa-chevron-down,
.nav-link i.fa-chevron-right {
    font-size: 10px;
    transition: var(--transition);
}

.nav-item:hover > .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 10px 0;
}

.nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .nav-item {
    width: 100%;
}

.dropdown-menu .nav-link {
    color: var(--dark);
    padding: 12px 20px;
    justify-content: space-between;
    border-radius: 0;
}

.dropdown-menu .nav-link:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

/* Sub-dropdown - Desktop */
.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 5px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.slide-content {
    color: white;
    max-width: 600px;
}

.slide-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 15px;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* ===== Marquee ===== */
.marquee-section {
    background: var(--gradient-1);
    padding: 15px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    padding: 0 50px;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--secondary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: var(--dark);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

/* ===== Leaders Section - CIRCULAR STYLE ===== */
.leaders-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
    padding: 40px 30px 30px;
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Circular Image Container */
.leader-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.leader-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-1);
    z-index: -1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* ?? Face top pe */
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 0;
}

.leader-info h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.leader-info .designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.leader-info p {
    color: var(--gray);
    font-size: 13px;
    margin: 0;
}

/* Badge Style */
.leader-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ===== Geo Portal Section ===== */
.geo-portal-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.geo-portal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.geo-portal-section .section-subtitle,
.geo-portal-section .section-title {
    color: white;
}

.geo-portal-section .section-line {
    background: var(--secondary);
}

.geo-portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.portal-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.portal-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    border-color: var(--primary);
}

.portal-image {
    height: 200px;
    overflow: hidden;
}

.portal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portal-card:hover .portal-image img {
    transform: scale(1.1);
}

.portal-info {
    padding: 20px;
    text-align: center;
}

.portal-info h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.portal-info p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.portal-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.05);
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--gradient-1);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col p,
.footer-col li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col li i {
    color: var(--secondary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Page Header (For Inner Pages) ===== */
.page-header {
    background: var(--gradient-1);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb a:hover {
    color: white;
}

/* ===== Content Section (For Inner Pages) ===== */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-section .container {
    max-width: 1000px;
}

.content-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .menu-overlay {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu::before {
        content: 'Menu';
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 700;
        color: var(--primary);
        border-bottom: 2px solid var(--light);
        margin-bottom: 10px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        color: var(--dark);
        padding: 15px 20px;
        border-radius: 0;
        justify-content: space-between;
    }

    .nav-link:hover {
        background: var(--light);
        color: var(--primary);
    }

    .nav-link i.fa-home {
        display: none;
    }

    .has-dropdown > .nav-link i.fa-chevron-down,
    .has-dropdown > .nav-link i.fa-chevron-right {
        transition: transform 0.3s ease;
    }

    .has-dropdown.open > .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        background: #f5f5f5;
    }

    .has-dropdown.open > .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-menu .nav-link {
        padding-left: 35px;
        font-size: 13px;
        background: #f5f5f5;
    }

    .dropdown-menu .nav-link:hover {
        padding-left: 40px;
        background: #eee;
    }

    .dropdown-menu .dropdown-menu {
        background: #ebebeb;
    }

    .dropdown-menu .dropdown-menu .nav-link {
        padding-left: 50px;
        background: #ebebeb;
    }

    .dropdown-menu .dropdown-menu .nav-link:hover {
        padding-left: 55px;
        background: #e0e0e0;
    }

    .nav-item:hover > .dropdown-menu {
        max-height: 0;
    }

    .has-dropdown.open > .dropdown-menu {
        max-height: 1000px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-image::before {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        justify-content: center;
    }

    .logo-section {
        justify-content: center;
    }

    .header-logos {
        justify-content: center;
        width: 100%;
    }

    .hero-slider {
        height: 350px;
    }

    .section {
        padding: 50px 0;
    }

    .btn-outline {
        display: none;
    }

    .slider-arrows {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 14px;
        display: none;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        width: 280px;
        right: -280px;
    }

    .footer {
        padding-top: 50px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }



/* ===============================
   Announcement Table Styling
================================ */

.table-container {
    margin: 40px auto;
    max-width: 1100px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.table-heading {
    text-align: center;
    margin-bottom: 20px;
}

.table-heading h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

thead {
    background-color: #2c3e50;
    color: #ffffff;
}

thead th {
    padding: 12px;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

tbody tr:hover {
    background-color: #f2f7fb;
}

tbody td {
    padding: 12px;
    color: #333;
}

/* Links */
tbody a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

tbody a:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 25px;
}

.pagination a {
    display: inline-block;
    margin: 4px;
    padding: 6px 12px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a:hover {
    background: #333;
    color: #fff;
}

.pagination a.active {
    background: #333;
    color: #fff;
    font-weight: bold;
}

/* Responsive Table */
@media (max-width: 768px) {

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    tbody tr {
        margin-bottom: 15px;
        background: #fff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    tbody td {
        padding: 8px 10px;
        text-align: right;
        position: relative;
    }

    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }
}




