﻿/* ============================================
   EdTech/Corporate Homepage - Custom Styles
   Design: Glassmorphism, Modern, Professional
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --navy-blue: #001055;
    --navy-blue-dark: #000833;
    --orange: #ff7900;
    --orange-dark: #e66d00;

    /* Mapping old names to new colors for compatibility */
    --royal-blue: var(--navy-blue);
    --royal-blue-dark: var(--navy-blue-dark);
    --deep-red: var(--orange);
    --deep-red-dark: var(--orange-dark);

    /* Neutrals */
    --neutral-gray: #F5F5F5;
    --light-gray: #E8E8E8;
    --dark-gray: #2D3436;
    --text-muted: #636E72;
    --white: #FFFFFF;
    --black: #000000;

    /* Special */
    --light-blue-bg: #F0F8FF;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-strong: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(0, 0, 0, 0.05);
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);

    /* Spacing */
    --section-padding: 100px 0;
    --card-radius: 20px;
    --btn-radius: 12px;

    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.section-padding {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Global Glassmorphism Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   1. HERO BANNER
   ============================================ */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, #001055 0%, #001a8c 100%);
    position: relative;
    overflow: visible;
    padding-bottom: 180px;
}

.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 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 300px;
}

.hero-content {
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(135deg, #ff7900 0%, #ff9533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
    color: var(--navy-blue);
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--orange);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-blue);
    border-color: var(--white);
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 550px;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-float-card.top-left {
    top: 10%;
    left: -30px;
}

.hero-float-card.bottom-right {
    bottom: 15%;
    right: -30px;
}

.float-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.float-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dark-gray);
}

.float-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   2. USP CARDS - Overlapping Hero Section
   ============================================ */
.usp-section {
    position: relative;
    z-index: 20;
    margin-top: -150px;
    padding: 0 0 80px;
    background: transparent;
}

.usp-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    height: 100%;
}

.usp-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a6b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 16, 85, 0.3);
}

.usp-card:nth-child(2) .usp-icon {
    background: linear-gradient(135deg, var(--orange) 0%, #ff9533 100%);
    box-shadow: 0 10px 30px rgba(255, 121, 0, 0.3);
}

.usp-card:nth-child(3) .usp-icon {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--orange) 100%);
    box-shadow: 0 10px 30px rgba(0, 16, 85, 0.2);
}

.usp-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.usp-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   3. VIDEO TESTIMONIALS (Converted from News)
   ============================================ */
.video-testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #001055 0%, #000833 100%);
    color: var(--white);
    position: relative;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 121, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 16, 85, 0.1) 0%, transparent 50%);
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.video-testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.video-testimonials-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.video-scroll-container {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--royal-blue) transparent;
    position: relative;
    z-index: 2;
}

.video-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.video-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.video-scroll-container::-webkit-scrollbar-thumb {
    background: var(--royal-blue);
    border-radius: 3px;
}

.video-cards-wrapper {
    display: flex;
    gap: 24px;
    padding: 10px 5px;
    min-width: max-content;
}

.video-card {
    width: 280px;
    height: 400px;
    border-radius: var(--card-radius);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover {
    transform: scale(1.03);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 20px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.video-card-overlay h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-card-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-gray);
}

/* ============================================
   4. NEWS SECTION (Converted from Blogs)
   ============================================ */
.news-section {
    padding: var(--section-padding);
    background: #f8fafc;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 16, 85, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.news-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.news-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: var(--white);
}

.news-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.news-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.news-card:not(.featured) .news-content h3 {
    font-size: 1.125rem;
}

.news-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   5. BLOG SECTION (Alternating Cards Design)
   ============================================ */
.blog-section {
    padding: 80px 0;
    background: #E5EEF5;
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Blog Card Base Styles */
.blog-card {
    background: transparent;
    border-radius: 24px;
    overflow: visible;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Image First Card (Left & Right) */
.blog-card.image-top .blog-card-image {
    order: 1;
}

.blog-card.image-top .blog-card-content {
    order: 2;
}

/* Text First Card (Middle) */
.blog-card.text-top .blog-card-content {
    order: 1;
}

.blog-card.text-top .blog-card-image {
    order: 2;
}

.blog-card-image {
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-blue);
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Blog CTA Button */
.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a6b 100%);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.blog-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 16, 85, 0.3);
    color: var(--white);
}

.blog-cta-btn i {
    transition: transform 0.3s ease;
}

.blog-cta-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   6. ANNOUNCEMENTS
   ============================================ */
.announcements-section {
    padding: var(--section-padding);
    background: var(--neutral-gray);
    position: relative;
}

.announcements-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 121, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.announcements-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.announcements-header .section-title {
    font-size: 2rem;
    margin-bottom: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 16px;
    gap: 8px;
    min-width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    width: 100%;
    color: var(--dark-gray);
}

.search-box i {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.categories-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.categories-sidebar h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
    letter-spacing: -0.01em;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background: var(--navy-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 16, 85, 0.15);
}

.category-count {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.category-list a.active .category-count,
.category-list a:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
}

.announcement-list {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.announcement-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
}

.announcement-item:first-child {
    padding-top: 0;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-item:hover {
    background: #f8fafc;
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 12px;
    transform: translateX(5px);
}

.announcement-date {
    min-width: 65px;
    text-align: center;
    background: #f1f5f9;
    padding: 10px 5px;
    border-radius: 12px;
    height: fit-content;
}

.announcement-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.announcement-date .month {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.announcement-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
    letter-spacing: -0.01em;
}

.announcement-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   7. ALUMNI SLIDER
   ============================================ */
.alumni-section {
    display: flex;
    min-height: 600px;
}

.alumni-left {
    flex: 1;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2a6b 100%);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.alumni-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* Alumni Badge */
.alumni-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.alumni-badge i {
    font-size: 1.1rem;
    color: var(--orange);
}

/* Alumni Profile - Image + Details Side by Side */
.alumni-profile {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
    flex: 1;
    transition: opacity 0.5s ease;
}

.alumni-big-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    max-height: 400px;
}

.alumni-big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.alumni-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alumni-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.alumni-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alumni-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.alumni-info-list li:hover {
    background: rgba(255, 255, 255, 0.18);
}

.alumni-info-list li i {
    font-size: 1.2rem;
    color: var(--orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.alumni-info-list li div {
    display: flex;
    flex-direction: column;
}

.alumni-info-list .label {
    font-weight: 500;
    opacity: 0.75;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.alumni-info-list .value {
    font-weight: 700;
    font-size: 1.05rem;
}

/* Avatar Nav Container */
.alumni-avatars-nav {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.alumni-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 1rem;
}

.alumni-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: scale(1.1);
}

/* Avatar Wrapper */
.alumni-avatars-wrapper {
    overflow: hidden;
    max-width: 460px;
    flex: 1;
}

.alumni-avatars {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    transition: transform 0.5s ease;
    will-change: transform;
}

.alumni-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    object-fit: cover;
    opacity: 0.5;
    flex-shrink: 0;
}

.alumni-avatar:hover {
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.8;
}

.alumni-avatar.active {
    border-color: var(--white);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Smooth transition for testimonial */
.testimonial-quote {
    transition: opacity 0.5s ease;
}

.alumni-right {
    flex: .7;
    background: var(--white);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.alumni-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(65, 105, 225, 0.03);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonial-card {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--deep-red);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(65, 105, 225, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 0.875rem;
    color: var(--royal-blue);
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.company-badge i {
    color: var(--deep-red);
}

/* ============================================
   8. GALLERY WITH TABS
   ============================================ */
.gallery-section {
    padding: var(--section-padding);
    background: #FDF8F3;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.gallery-tab {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.gallery-tab:hover {
    color: var(--dark-gray);
}

.gallery-tab.active {
    color: var(--deep-red);
    font-weight: 600;
}

/* Gallery Grid - Dynamic Masonry-lite */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    /* Base height for rows */
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Hide items not in active category */
.gallery-item.hidden {
    display: none;
}

/* ============================================
   9. PARTNER LOGO SLIDER
   ============================================ */
.partners-section {
    padding: 80px 0;
    background: var(--dark-gray);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--dark-gray) 0%, transparent 10%, transparent 90%, var(--dark-gray) 100%);
    z-index: 3;
    pointer-events: none;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.partners-header h2 {
    color: var(--white);
}

.partners-header p {
    color: rgba(255, 255, 255, 0.6);
}

.partners-slider {
    display: flex;
    animation: scroll 30s linear infinite;
}

.partners-track {
    display: flex;
    gap: 80px;
    align-items: center;
}

.partner-logo {
    height: 50px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   10. FAQ SECTION - Wider Accordion
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--neutral-gray) 0%, #e8ecf4 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.9);
}

.faq-question h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-gray);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 16, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

.faq-answer-content {
    padding: 0 35px 28px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #001055 0%, #000833 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-card.featured {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .usp-section {
        margin-top: -100px;
    }

    .alumni-section {
        flex-direction: column;
    }

    .alumni-left,
    .alumni-right {
        padding: 60px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .faq-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .usp-section {
        margin-top: -80px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-card.featured {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }

    .news-card {
        height: 280px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .announcements-header {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 22px 25px;
    }

    .faq-question h5 {
        font-size: 1.05rem;
    }

    .faq-answer-content {
        padding: 0 25px 22px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-bottom: 220px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-glow,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }

    .usp-section {
        margin-top: -180px;
    }

    .usp-card {
        padding: 30px 20px;
    }

    .alumni-left,
    .alumni-right {
        padding: 40px 20px;
    }

    .alumni-left h2 {
        font-size: 2.25rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TRANSITION SECTION (Figma Import)
   ============================================ */
.intro-gallery-section {
    padding: 120px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f7ff;
    color: var(--navy-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 16, 85, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 121, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 0, 0);
    }
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.1;
    text-align: center;
}

.intro-title .accent-text {
    color: var(--orange);
}

.intro-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.intro-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 16, 85, 0.15);
    transform: perspective(1000px) rotateX(2deg);
    transition: var(--transition);
}

.intro-image-container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.intro-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.intro-image-container:hover .intro-img {
    transform: scale(1.05);
}

.intro-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 5;
}

.overlay-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 25px 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.glass-item {
    display: flex;
    flex-direction: column;
}

.item-num {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.item-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.glass-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .intro-title {
        font-size: 2.5rem;
    }

    .intro-overlay-content {
        position: relative;
        bottom: 20px;
        left: 20px;
        margin-top: -30px;
    }

    .overlay-glass {
        padding: 15px 25px;
        gap: 20px;
    }
}