* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6600; /* Vibrant Orange */
    --secondary-color: #FF8533; /* Soft Orange */
    --accent-color: #FF3D00; /* Deep Orange Red */
    --dark-color: #121212;
    --light-color: #FFFFFF;
    --bg-gray: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.logo a {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.2;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 20px; /* Adjusted size */
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0; /* Reduced padding slightly to accommodate logos */
    transition: var(--transition);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-right img {
    height: 50px; /* Matched size for both logos */
    margin-left: 0; /* Override previous change */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.hero .container {
    padding-top: 130px;
    padding-bottom: 90px;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    width: 100%;
}

/* Left Content */
.hero-content {
    flex: 0 0 50%;
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

.hero h1 {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.hero-highlight {
    color: var(--primary-color);
}

/* College name — equal prominence to hub title */
.hero-college-name {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    line-height: 1.3;
}

.hero-college-name::first-letter {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-desc-title {
    font-weight: 700;
    color: var(--dark-color);
}

.hero-desc-sub {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 4px;
    font-style: italic;
}

/* Primary CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 52px;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 102, 0, 0.28);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: #ebebeb;
}

/* Right Carousel */
.hero-carousel {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.carousel-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.06);
}

.carousel-item {
    display: none;
}

.carousel-item.active {
    display: block;
    animation: carouselFadeIn 0.65s ease-out forwards;
}

@keyframes carouselFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

.carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 7s ease;
}

.carousel-item.active img {
    transform: scale(1.04);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots .cdot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .cdot.active {
    width: 24px;
    border-radius: 6px;
    background: var(--primary-color);
}

/* Sections Common Styling */
section {
    padding: 140px 0;
}

h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
}

/* Our Work */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.work-card {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.work-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 102, 0, 0.2);
    box-shadow: 0 30px 60px rgba(255, 102, 0, 0.15);
}

.work-image {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative; /* Create positioning context for absolute dots or children */
}

.work-image .carousel-frame {
    height: 100%;
    box-shadow: none; /* Remove shadow if it conflicts or is unwanted inside the card image area */
}

.work-image .carousel-item {
    height: 100%;
}

.work-image .carousel-item img {
    width: 100%;
    height: 100%; /* Fill container */
    object-fit: cover;
    transition: var(--transition);
}

.work-image .carousel-dots {
    margin-top: 0;
    /* Dots are absolutely positioned in HTML for work-image. 
       If I want to enforce it here: 
       position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); 
       But I put it inline in HTML to be safe/quick.
    */
}

.work-image img {
/* This rule might conflict if I don't target .carousel-item img which has higher specificity if defined later? 
   Wait, .carousel-item img is defined above. 
   .work-image img is defined below it. 
   Actually, the previous rule .carousel-item img had heigth 520px. 
*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


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

.work-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--bg-gray);
    border-radius: 80px 80px 0 0;
    margin-top: -80px;
}

.about-wrapper {
    display: block;
    width: 100%;
}

.about h2 {
    text-align: left;
    margin-bottom: 35px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: justify;
}



/* Benefits Section */
.benefits {
    background: var(--dark-color);
    color: white;
}

.benefits h2 {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Team Section */
.team {
    background: #fdfdfd;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.team-member:hover::before {
    opacity: 1;
}

.member-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 5px solid white;
    transition: var(--transition);
}

.team-member:hover .member-img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-member p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: #fff;
}

.gallery h2 {
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

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

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

.gallery-overlay i {
    color: white;
    font-size: 30px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Specific Spans for Masonry Feel */
.span-col-2 {
    grid-column: span 2;
}

.span-row-2 {
    grid-row: span 2;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .span-col-2 {
        grid-column: span 1;
    }
}

/* Who Can Benefit Section */
.who-can-benefit {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    padding: 120px 0;
    overflow: hidden;
}

.who-can-benefit h2 {
    color: var(--dark-color);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.who-can-benefit h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.benefit-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    padding: 40px 25px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.benefit-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.benefit-tag:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
    border-color: transparent;
}

.benefit-tag:hover::before {
    opacity: 0.05;
}

.benefit-tag i {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
    background: rgba(255, 102, 0, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.benefit-tag:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-tag span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

/* What We Offer Section */
.what-we-offer {
    background: white;
    padding: 120px 0;
}

.offer-header {
    text-align: center;
    margin-bottom: 80px;
}

.offer-header h2 {
    margin-bottom: 0;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.offer-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #eee;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.offer-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.offer-card:hover .offer-icon i {
    color: white;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.offer-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ── News Clippings Section ──────────────────────────────── */
.news-section {
    padding: 120px 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.news-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    display: inline-block;
}

.news-header h2 {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(28px, 4vw, 40px);
    text-transform: uppercase; /* Match other headings style */
}

/* Nav Buttons */
.news-nav { display: flex; gap: 12px; }

.news-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.04);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.news-nav-btn::after {
    content: '';
    display: block;
    clear: both;
}

.news-nav-btn i {
    display: inline-block;
    line-height: 1;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.news-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 16px rgba(255,102,0,0.25);
}

.news-nav-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(255,102,0,0.20);
}

/* Track */
.news-track-wrap { overflow: hidden; }

.news-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

/* Clipping cards */
.news-clip {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
        0 2px 6px rgba(0,0,0,0.10),
        0 8px 24px rgba(0,0,0,0.09);
    transition: var(--transition);
    background: #fff;
}

.news-clip:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 6px 16px rgba(0,0,0,0.12),
        0 24px 48px rgba(0,0,0,0.12);
}

.news-clip img {
    display: block;
    max-height: 440px;
    width: auto;
    max-width: 520px;
    object-fit: contain;
    background: #f9f6f0;
}

/* Zoom icon overlay */
.clip-zoom {
    position: absolute;
    inset: 0;
    background: rgba(18, 18, 18, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.clip-zoom i {
    font-size: 26px;
    color: white;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.news-clip:hover .clip-zoom {
    background: rgba(18, 18, 18, 0.28);
}

.news-clip:hover .clip-zoom i {
    opacity: 1;
    transform: scale(1);
}

/* ── Lightbox ────────────────────────────────────────────── */
.news-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal.open {
    pointer-events: all;
    opacity: 1;
}

.news-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.clip-lightbox {
    position: relative;
    z-index: 2;
    max-width: min(90vw, 880px);
    max-height: 90vh;
    transform: scale(0.93);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-modal.open .clip-lightbox {
    transform: scale(1);
}

.clip-lightbox img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    object-fit: contain;
    background: #f9f6f0;
}

.news-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 3;
    overflow: hidden;
}

.news-modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 120px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Animations */
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9) rotate(0deg); }
    to { opacity: 1; transform: scale(1) rotate(2deg); }
}

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

@keyframes pulsing {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.news-nav-btn i, .contact-btn i, .news-modal-close i {
    position: relative;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        flex: unset;
        max-width: 100%;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .btn-primary { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-carousel {
        flex: unset;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        align-items: center;
    }
    .about-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 50px;
        gap: 25px;
    }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .carousel-item img { height: 360px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 22px; }
}

/* Media Coverage Section */
.media-coverage {
    padding: 100px 0;
    background: #f9f9f9;
}

/* Video Footages Section */
.video-footages {
    padding: 100px 0;
    background: #ffffff;
}

/* Video Footages Section Specifics */
.video-footages .video-wrapper {
    padding-bottom: 0;
    height: auto;
    background: transparent;
}

.video-footages .video-wrapper video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain; /* Maintain aspect ratio without cropping */
    display: block;
}

/* Common Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    background: #000;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}


/* Training Programs Table Section */
.training-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px; /* Ensure table is scrollable on small screens */
    font-family: 'Poppins', sans-serif;
}

.custom-table th, 
.custom-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--text-color);
}

.custom-table thead th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.custom-table tbody tr:hover {
    background-color: #fff8f5; /* Light orange tint on hover */
}

/* Zebra striping for better readability */
.custom-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.custom-table tfoot tr {
    background-color: #f0f0f0;
    font-weight: 700;
}

.custom-table tfoot td {
    color: var(--dark-color);
    border-top: 2px solid #ddd;
}
