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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #ff9800;
    --accent-color: #2196F3;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

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

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Patterns */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(44, 95, 45, 0.1) 35px, rgba(44, 95, 45, 0.1) 70px);
    pointer-events: none;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ===========================
   Header Section
   =========================== */
.header {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
    padding: 5px;
}

.site-title h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.site-title p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    transform: scale(1.2);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   Hero Section with Slider
   =========================== */
.hero-section {
    background: var(--bg-light);
    padding: 30px 0;
}

.hero-wrapper {
    display: flex;
    gap: 20px;
}

/* Slider (80% width) */
.slider-container {
    flex: 0 0 78%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 40px;
    transform: translateY(20px);
    transition: var(--transition);
}

.slide.active .slide-content {
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
    border-radius: 0 10px 10px 0;
}

.slider-btn.next {
    right: 20px;
    border-radius: 10px 0 0 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

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

/* Leadership Scroll (20% width) */
.leadership-scroll {
    flex: 0 0 20%;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.leadership-scroll h3 {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.leadership-wrapper {
    height: 440px;
    overflow: hidden;
    position: relative;
}

.leadership-list {
    animation: scrollLeaders 20s linear infinite;
    padding: 20px 10px;
}

.leadership-list:hover {
    animation-play-state: paused;
}

@keyframes scrollLeaders {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.leader-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.leader-card:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.leader-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.leader-card:hover .leader-image {
    border-color: var(--secondary-color);
    transform: rotate(360deg);
}

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

.leader-info h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
}

.leader-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-in-out;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    animation: expandWidth 1.5s ease-in-out forwards;
}

@keyframes expandWidth {
    to {
        width: 100%;
    }
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 20px;
    border-radius: 2px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.header-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.5;
    animation: ripple 2s ease-in-out infinite;
}

@keyframes ripple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    animation: fadeIn 1.2s ease-in-out;
    font-weight: 500;
}

/* ===========================
   Card Hover Effect
   =========================== */
.card-hover {
    transition: var(--transition);
    position: relative;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,95,45,0.05), rgba(255,152,0,0.05));
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    border-radius: inherit;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-hover:hover::before {
    opacity: 1;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #80deea 100%);
    position: relative;
    animation: fadeIn 0.8s ease-in-out;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    pointer-events: none;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: zoomIn 0.8s ease-in-out;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-in-out;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 45, 0.1), transparent);
    transition: var(--transition);
}

.highlight-item:hover::before {
    left: 100%;
    transition: left 0.5s;
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.highlight-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
    display: inline-block;
}

.highlight-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 5px 15px rgba(255, 152, 0, 0.5));
}

.highlight-item h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   Info Section (Notifications & News)
   =========================== */
.info-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 50%, #ffcc80 100%);
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.info-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: slideInUp 0.8s ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.3s;
}

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

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

.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.card-header h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    transform: translateX(5px);
}

.scroll-container {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.scroll-content {
    padding: 20px;
    animation: scrollContent 25s linear infinite;
}

.scroll-content:hover {
    animation-play-state: paused;
}

@keyframes scrollContent {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.notification-item,
.news-item {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.notification-item:hover,
.news-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left-color: var(--secondary-color);
}

.notification-link,
.news-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: block;
    transition: var(--transition);
}

.notification-link:hover,
.news-link:hover {
    color: var(--primary-color);
}

.notification-link strong,
.news-link strong {
    font-weight: 600;
}

.notification-item .date,
.news-item .date {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.notification-item h4,
.news-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.notification-item p,
.news-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.badge.new {
    background: #4CAF50;
    color: var(--white);
    animation: pulse 2s infinite;
}

.badge.trending {
    background: #FF5722;
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===========================
   Services Section
   =========================== */
.services-section {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 50%, #9fa8da 100%);
    position: relative;
    animation: fadeIn 1.2s ease-in-out;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.6s ease-in-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.1) 0%, transparent 70%);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.service-card:hover::before {
    width: 500px;
    height: 500px;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(44, 95, 45, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.2);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.8rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===========================
   Statistics Section
   =========================== */
.stats-section {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-in-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.stat-card:hover::before {
    animation: shimmer 1.5s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: var(--transition);
    display: inline-block;
}

.stat-card:hover .stat-icon {
    transform: scale(1.3) rotateY(360deg);
    color: var(--secondary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.stat-card:hover .stat-number {
    transform: scale(1.2);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===========================
   Career Section
   =========================== */
.career-section {
    background: var(--bg-light);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.career-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.career-card:hover {
    border-color: var(--primary-color);
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.career-header h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.career-location {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.career-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.career-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.career-date {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.apply-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.apply-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: rotateY(360deg);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #1e4620;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   Footer Section
   =========================== */
.footer {
    background: linear-gradient(135deg, #1e1e1e 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-5px) rotate(360deg);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-column ul.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}

.footer-column ul.contact-list i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.scroll-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .slider-container {
        flex: 0 0 100%;
    }

    .leadership-scroll {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .leadership-wrapper {
        height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .leadership-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        animation: none;
        padding: 20px 10px;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .career-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        width: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav a {
        padding: 12px 15px;
    }

    .site-title h1 {
        font-size: 1.3rem;
    }

    .site-title p {
        font-size: 0.75rem;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .slider {
        height: 300px;
    }

    .slide img {
        object-fit: cover;
    }

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

    .slide-content p {
        font-size: 0.95rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .leadership-scroll {
        max-width: 100%;
    }

    .leadership-wrapper {
        height: 350px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .leadership-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px 10px;
    }

    .leader-card {
        padding: 12px;
        margin-bottom: 0;
    }

    .leader-image {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
    }

    .leader-info h4 {
        font-size: 0.9rem;
    }

    .leader-info p {
        font-size: 0.75rem;
    }

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

    .about-card {
        padding: 30px 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-wrapper {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .site-title h1 {
        font-size: 1.1rem;
    }

    .slider {
        height: 220px;
    }

    .slide img {
        object-fit: cover;
    }

    .slide-content {
        padding: 20px;
    }

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

    .slide-content p {
        font-size: 0.85rem;
    }

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

    .service-card,
    .career-card,
    .contact-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===========================
   Page Header (Internal Pages)
   =========================== */
.page-header {
    background: linear-gradient(135deg, #ff9800 0%, #1e4620 100%);
    padding: 80px 0 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header p a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.page-header p a:hover {
    color: var(--secondary-color);
}

/* ===========================
   Vision Mission Section
   =========================== */
.vision-mission-section {
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid transparent;
}

.vm-card:hover {
    border-color: var(--primary-color);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: rotateY(360deg);
}

.vm-icon i {
    font-size: 3rem;
    color: var(--white);
}

.vm-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===========================
   Components Section
   =========================== */
.components-section {
    background: var(--white);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.component-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.component-card:hover {
    border-color: var(--primary-color);
}

.component-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(44,95,45,0.1);
    transition: var(--transition);
}

.component-card:hover .component-number {
    color: rgba(255,152,0,0.2);
    transform: scale(1.2);
}

.component-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.component-card:hover .component-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: scale(1.1) rotate(360deg);
}

.component-icon i {
    font-size: 2rem;
    color: var(--white);
}

.component-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.component-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits-section {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1e4620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: rotateY(360deg);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-card h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card ul li {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.benefit-card ul li i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* ===========================
   Leadership Section (Full Cards)
   =========================== */
.leadership-section {
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leader-full-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.leader-full-card:hover {
    border-color: var(--primary-color);
}

.leader-full-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    transition: var(--transition);
}

.leader-full-card:hover .leader-full-image {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.leader-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-full-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.leader-full-info .designation {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.leader-full-info .description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Notifications Page Styles
   =========================== */
.notifications-list-section {
    background: var(--white);
}

.notifications-grid {
    display: grid;
    gap: 20px;
}

.notification-full-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
}

.notification-full-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

.notification-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.notification-full-header h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    flex: 1;
}

.notification-full-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.notification-full-content {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.notification-full-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.notification-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===========================
   Career Page Styles
   =========================== */
.career-list-section {
    background: var(--white);
}

.career-full-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.career-full-card:hover {
    border-color: var(--primary-color);
}

.career-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.career-full-title h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 10px;
}

.career-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.career-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.career-meta-item i {
    color: var(--primary-color);
}

.career-full-description {
    margin-bottom: 30px;
}

.career-full-description h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.career-full-description p,
.career-full-description ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.career-full-description ul {
    padding-left: 20px;
}

.career-full-description ul li {
    margin-bottom: 10px;
}

.career-full-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.apply-btn-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.apply-btn-large:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-page-section {
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card-large {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.contact-card-large:hover {
    border-color: var(--primary-color);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-card-large .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0;
}

.contact-card-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.map-section {
    margin-top: 40px;
}

.map-container {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Print Styles */
@media print {
    .header,
    .slider-btn,
    .scroll-to-top,
    .mobile-menu-toggle {
        display: none;
    }

    .slide {
        opacity: 1 !important;
        position: relative !important;
    }

    .card-hover:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ===========================
   Responsive Design - Additional Pages
   =========================== */
@media (max-width: 1024px) {
    .vm-grid,
    .leadership-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .components-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .components-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 30px;
    }

    .leader-full-card {
        flex-direction: column;
        text-align: center;
    }

    .career-full-header {
        flex-direction: column;
    }

    .career-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===========================
   Career Table Section & Notifications Table Section
   =========================== */
.career-table-section,
.notifications-table-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.table-responsive {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

#careerTable,
#notificationsTable {
    width: 100% !important;
    border-collapse: collapse;
}

#careerTable thead,
#notificationsTable thead {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: var(--white);
}

#careerTable thead th,
#notificationsTable thead th {
    padding: 15px !important;
    text-align: left;
    font-weight: 600;
    border: none !important;
}

#careerTable tbody tr,
#notificationsTable tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

#careerTable tbody tr:hover,
#notificationsTable tbody tr:hover {
    background-color: #f5f5f5;
}

#careerTable tbody td,
#notificationsTable tbody td {
    padding: 15px !important;
    vertical-align: middle;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 5px;
}

.download-btn {
    background: var(--accent-color);
    color: var(--white);
}

.download-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

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

.view-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* DataTables Custom Styling */
.dataTables_wrapper .dataTables_length select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 5px;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-left: 10px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 12px !important;
    margin: 0 3px;
    border-radius: 5px !important;
    border: 1px solid #ddd !important;
    background: var(--white) !important;
    color: var(--text-dark) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.dataTables_wrapper .dataTables_info {
    padding-top: 15px;
    color: var(--text-light);
}

/* Responsive Table */
@media screen and (max-width: 768px) {
    .table-responsive {
        padding: 15px;
    }

    #careerTable,
    #notificationsTable {
        font-size: 14px;
    }

    #careerTable thead th,
    #careerTable tbody td,
    #notificationsTable thead th,
    #notificationsTable tbody td {
        padding: 10px !important;
    }

    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ===========================
   Media Gallery Styles
   =========================== */

/* Upload Section */
.media-upload-section {
    background: var(--bg-light);
}

.upload-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.upload-area {
    border: 3px dashed #ddd;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(44, 95, 45, 0.02);
}

.upload-area.drag-over {
    border-color: var(--secondary-color);
    background: rgba(255, 152, 0, 0.05);
}

.upload-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.upload-area h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.upload-area p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.upload-info {
    font-size: 0.9rem;
    color: #999;
}

.upload-preview {
    margin-top: 30px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.preview-item img,
.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.preview-remove:hover {
    background: #c00;
    transform: scale(1.1);
}

.upload-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: #1e3f1f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Filter Section */
.media-filter-section {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.view-controls {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Media Gallery */
.media-gallery-section {
    background: var(--bg-light);
}

.year-group {
    margin-bottom: 50px;
}

.year-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.month-group {
    margin-bottom: 40px;
}

.month-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.media-grid.list-view {
    grid-template-columns: 1fr;
}

.media-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.media-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f0f0f0;
}

.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-item:hover .media-thumbnail img,
.media-item:hover .media-thumbnail video {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.media-overlay i {
    font-size: 3rem;
    color: white;
}

.media-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(44, 95, 45, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-type-badge.video {
    background: rgba(255, 152, 0, 0.9);
}

.media-info {
    padding: 15px;
}

.media-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.media-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* List View Styles */
.media-grid.list-view .media-item {
    display: flex;
    flex-direction: row;
}

.media-grid.list-view .media-thumbnail {
    width: 300px;
    flex-shrink: 0;
}

.media-grid.list-view .media-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-media-container {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-media-container img,
.lightbox-media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
}

.lightbox-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.lightbox-info p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: center;
    }

    .view-controls {
        justify-content: center;
    }

    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .media-grid.list-view .media-item {
        flex-direction: column;
    }

    .media-grid.list-view .media-thumbnail {
        width: 100%;
    }

    .year-title {
        font-size: 1.5rem;
    }

    .month-title {
        font-size: 1.2rem;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .upload-container {
        padding: 20px;
    }

    .upload-area {
        padding: 40px 15px;
    }

    .preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        flex: 1;
        justify-content: center;
    }
}
