/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    background: #4860ca;
    padding: 1rem;
  }
}


/* Pre-Header Area */
.pre-header {
    background: #ffffff; /* white background */
    padding: 15px 0;
    color: #6a1b9a; /* deep purple text */
    font-size: 0.9rem;
    position: relative;
    z-index: 1020;
    border-bottom: 1px solid #e5e7eb;
}

/* Left info links */
.pre-header .left-info ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.pre-header .left-info li a {
    color: #6a1b9a; /* purple text */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pre-header .left-info li a:hover {
    color: #9c27b0; /* lighter purple on hover */
}

.pre-header .left-info li a i {
    font-size: 1rem;
    color: #6a1b9a; /* purple icons */
}

/* Social icons */
.pre-header .social-icons ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    gap: 1rem;
}

.pre-header .social-icons li a {
    color: #6a1b9a; /* purple icons */
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(106, 27, 154, 0.1); /* soft purple background */
}

.pre-header .social-icons li a:hover {
    color: #9c27b0; /* lighter purple on hover */
    background: rgba(106, 27, 154, 0.2);
    transform: translateY(-2px);
}

/* =========================
   NAVIGATION (IMPROVED MODERN VERSION)
   ========================= */

.navbar {
    background: linear-gradient(135deg, #4860ca 0%, #764ba2 100%);
    padding: 0.9rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2000;
    transition: all 0.3s ease;
}

/* Optional scroll effect */
.navbar-scrolled {
    background: rgba(72, 96, 202, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15) !important;
}

/* =========================
   BRAND
   ========================= */

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.08);
}

.brand-text {
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* =========================
   DESKTOP LINKS
   ========================= */

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    margin: 0 8px;
    padding: 8px 10px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover lift effect */
.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* Active state */
.navbar-nav .nav-link.active {
    color: #fff !important;
}

/* underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* =========================
   TOGGLER (FIXED)
   ========================= */

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler i {
    font-size: 1.8rem;
    color: #fff;
}

/* =========================
   OFFCANVAS MOBILE MENU (UPGRADED)
   ========================= */
/* =========================
   MODERN OFFCANVAS (OVERLAY STYLE)
   ========================= */

/* Panel */
.offcanvas {
    width: 320px;
    border: none;
    background: #ffffff;
    box-shadow: -10px 0 35px rgba(0,0,0,0.25);
}

/* Header */
.offcanvas-header {
    background: linear-gradient(135deg, #4860ca, #764ba2);
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.2rem;
}

/* Title */
.offcanvas-title {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Close button */
.offcanvas-header .btn-close {
    filter: invert(1);
    opacity: 0.9;
    transition: 0.3s ease;
}

.offcanvas-header .btn-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

/* =========================
   BACKDROP (IMPORTANT PART)
   ========================= */

.offcanvas-backdrop.show {
    background: rgba(0,0,0,0.65) !important;
    backdrop-filter: blur(5px);
    opacity: 1 !important;
}

/* Lock scroll when open */
body.offcanvas-open {
    overflow: hidden;
}

/* =========================
   MOBILE LINKS
   ========================= */

.offcanvas .nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 12px 12px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* hover */
.offcanvas .nav-link:hover {
    background: #f3f4ff;
    color: #4860ca !important;
    padding-left: 18px;
}

/* active */
.offcanvas .nav-link.active {
    color: #4860ca !important;
    background: #eef1ff;
}

@media (max-width: 768px) {
    .pre-header {
        display: none !important;
    }
}

/* remove underline */
.offcanvas .nav-link::after {
    display: none;
}

/* =========================
   CUSTOM TOGGLER (HAMBURGER → X)
   ========================= */

.custom-toggler {
    border: none !important;
    background: transparent;
    padding: 0;
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

/* Remove Bootstrap default icon */
.custom-toggler .navbar-toggler-icon {
    display: none;
}

/* Base lines */
.toggler-icon {
    position: relative;
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.toggler-icon::before,
.toggler-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 2.5px;
    background: #fff;
    border-radius: 5px;
    left: 0;
    transition: all 0.3s ease;
}

/* top line */
.toggler-icon::before {
    top: -8px;
}

/* bottom line */
.toggler-icon::after {
    top: 8px;
}

/* =========================
   OPEN STATE (X ICON)
   ========================= */

.navbar-toggler[aria-expanded="true"] .toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .brand-text {
        font-size: 1rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }
}
/* Mission & Vision Flowchart */
.mission-section {
    padding: 90px 0;
    background: #f8f9ff;
}

.mission-section .section-header h2 {
    color: #2d386f;
}

.mission-flow .flow-node {
    background: #ffffff;
    border: 2px solid rgba(102, 112, 240, 0.18);
    border-radius: 22px;
    padding: 1.4rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(46, 68, 160, 0.09);
}

.mission-flow .flow-node h5 {
    font-size: 1.1rem;
    color: #4050c2;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mission-flow .flow-node p {
    color: #4a567f;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mission-flow .flow-arrow {
    font-size: 2.4rem;
    color: #5f6ce2;
    font-weight: 700;
    margin: 0 auto;
}

.mission-flow .row + .row {
    margin-top: 1rem;
}


/* =========================
   HERO SECTION
   ========================= */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1; /* hero stays behind navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-color: #ff6b6b;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.hero-buttons .btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

/* =========================
   SECTION HEADERS
   ========================= */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* News & Events Section */
.news-events-section {
    padding: 100px 0;
    background: #f5f7ff;
}

.news-events-section .event-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 16px 35px rgba(67, 95, 179, 0.13);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-events-section .event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(67, 95, 179, 0.2);
}

.news-events-section .event-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-events-section .badge {
    background: rgba(102, 126, 234, 0.13);
    color: #2b367a;
    border-radius: 12px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.news-events-section .event-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1f2a68;
}

.news-events-section .event-card p {
    color: #555;
    margin-bottom: 0.8rem;
}

.news-events-section .event-card .stretched-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.news-events-section .event-card .stretched-link:hover {
    color: #3f49d1;
}

/* Why Choose SKA Section */
.why-ska-section {
    padding: 100px 0;
    background: #fff;
}

.why-ska-section .why-card {
    background: linear-gradient(180deg, #f8f9ff, #ffffff);
    border: 1px solid #e4ebff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(64, 84, 177, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-ska-section .why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(64, 84, 177, 0.18);
}

.why-ska-section .why-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.why-ska-section .why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.why-ska-section .why-card p {
    color: #576088;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #4860ca 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.cta-section p {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    opacity: 0.95;
}

.btn-cta {
    background: #ffffff;
    color: #4860ca;
    border: none;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(27, 71, 179, 0.18);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f5f5ff;
    color: #3f4fb8;
    transform: translateY(-3px);
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: #fff;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    opacity: 0.9;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 15px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 20px;
}

.contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Footer */
.footer {
    background: #2d3748;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #667eea;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

/* =========================
   PAGE HEADER
   ========================= */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 2;
}

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

.page-header .breadcrumb-item.active {
    color: #fff;
}

/* =========================
   ACTIVITIES SECTION
   ========================= */
.activities-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.activity-category {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-header i {
    font-size: 2.5rem;
    color: #667eea;
    margin-right: 1rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.activity-list {
    list-style: none;
    padding: 0;
}

.activity-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
}

.activity-list li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* =========================
   ADMISSION SECTION
   ========================= */
.admission-section {
    padding: 100px 0;
    background: #fff;
}

.admission-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #e4ebff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 12px 25px rgba(64, 84, 177, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.admission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(64, 84, 177, 0.18);
}

.admission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.admission-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.admission-card p {
    color: #666;
    line-height: 1.6;
}

/* =========================
   FACILITIES SECTION
   ========================= */
.facilities-section {
    padding: 100px 0;
    background: #f5f7ff;
}

.facility-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.facility-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.facility-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    color: #333;
}

.facility-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

/* =========================
   GALLERY SECTION
   ========================= */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* =========================
   EVENTS SECTION
   ========================= */
.events-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.event-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.event-date {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.event-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-card .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* =========================
   ANNOUNCEMENTS SECTION
   ========================= */
.announcements-section {
    padding: 100px 0;
    background: #fff;
}

.announcement-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #e4ebff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.announcement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.announcement-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.announcement-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* =========================
   HISTORY SECTION
   ========================= */
.history-section {
    padding: 100px 0;
    background: #f5f7ff;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 3px solid #fff;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* =========================
   ADMINISTRATION SECTION
   ========================= */
.administration-section {
    padding: 100px 0;
    background: #fff;
}

.admin-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.admin-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 3rem;
}

.admin-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.admin-card p {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.admin-card .role {
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================
   ACADEMICS SECTIONS
   ========================= */
.primary-section, .secondary-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.academic-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.academic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.academic-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.academic-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.academic-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pre-header .left-info ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pre-header .social-icons ul {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .project-card {
        margin-bottom: 2rem;
    }

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

    .stats {
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
} 