@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --tmc-purple: #6B2D8B;
    --tmc-purple-light: #8B4BA8;
    --tmc-purple-dark: #4A1D62;
    --tmc-green: #138808;
    --tmc-green-light: #22AA22;
    --tmc-green-dark: #0D6A06;
    --gold: #FFD700;
    --gold-light: #FFDF33;
    --dark-bg: #1A1A2E;
    --darker-bg: #0F0F1A;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-light: #6C757D;
    --gradient-purple: linear-gradient(135deg, var(--tmc-purple) 0%, var(--tmc-purple-light) 100%);
    --gradient-green: linear-gradient(135deg, var(--tmc-green) 0%, var(--tmc-green-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(107, 45, 139, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.2);
    --shadow-glow-purple: 0 0 30px rgba(107, 45, 139, 0.4);
    --shadow-glow-green: 0 0 30px rgba(19, 136, 8, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-text {
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preloader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Preloader Responsive */
@media (max-width: 768px) {
    .preloader-text {
        font-size: 1rem;
    }
    
    .preloader-progress {
        width: 160px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .preloader-content {
        padding: 15px;
    }
    
    .preloader-text {
        font-size: 0.9rem;
    }
    
    .preloader-progress {
        width: 140px;
        margin-top: 12px;
    }
}

/* ========== CURSOR ========== */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--tmc-purple);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor.hover {
    transform: scale(2);
    background: rgba(107, 45, 139, 0.2);
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-dot {
        display: none !important;
    }
}

/* Nav Menu Slide Animation */
.nav-menu {
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Header Styles */
@media (min-width: 1200px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .nav-menu {
        width: 350px;
    }
    
    .nav-links {
        gap: 30px;
        padding: 40px 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .nav-menu {
        width: 320px;
    }
    
    .nav-links {
        gap: 25px;
        padding: 30px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .nav-menu-header h3 {
        font-size: 1.1rem;
    }
    
    .nav-menu-header .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .nav-menu {
        width: 280px;
    }
    
    .nav-links {
        gap: 20px;
        padding: 25px 0;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .nav-menu-header h3 {
        font-size: 1rem;
    }
    
    .nav-menu-header .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        width: 250px;
    }
    
    .nav-links {
        gap: 15px;
        padding: 20px 0;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

@media (max-width: 575px) {
    .page-header {
        padding: 50px 0 30px;
    }
    
    .nav-menu-header h3 {
        font-size: 0.9rem;
    }
    
    .nav-menu-header .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .nav-menu {
        width: 220px;
    }
    
    .nav-links {
        gap: 12px;
        padding: 15px 0;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 5px 0;
    }
}

@media (max-width: 400px) {
    .page-header {
        padding: 40px 0 25px;
    }
    
    .nav-menu-header h3 {
        font-size: 0.85rem;
    }
    
    .nav-menu-header .logo-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 200px;
    }
    
    .nav-links {
        gap: 10px;
        padding: 12px 0;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        padding: 4px 0;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ECC40 0%, #22AA22 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(19, 136, 8, 0.3);
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(19, 136, 8, 0.4);
    background: linear-gradient(135deg, #22AA22 0%, #1A8A14 100%);
}

@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 575px) {
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ========== EXTRA LARGE - 1600px+ ========== */
@media (min-width: 1600px) {
    .logo-text h1 {
        font-size: 1.35rem;
    }
    
    .nav-menu > li > a {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1532375810709-75b1da00537c?w=1920') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.9) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(19, 136, 8, 0.7) 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: float-particle 15s infinite;
    opacity: 0.6;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-100px) translateX(50px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-200px) translateX(-30px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-100px) translateX(80px) rotate(270deg);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 25px;
    animation: slideInLeft 1s ease;
}

.hero-badge i {
    color: var(--gold);
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 35px;
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--tmc-purple-dark);
    box-shadow: var(--shadow-glow-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--tmc-purple);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease 0.3s both;
}

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

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

.hero-img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    border-radius: 30px;
    z-index: 1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.hero-img {
    width: 100%;
    max-width: 95%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideInLeft 1s ease 0.8s both;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.85rem;
    gap: 10px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-light {
    background: var(--light-bg);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--tmc-purple);
    margin-bottom: 15px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.7);
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.about-experience-badge .text {
    font-size: 0.9rem;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--tmc-purple);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.about-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.about-highlight:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.about-highlight i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.2rem;
}

/* ========== VISION CARDS ========== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.vision-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-glow-purple);
}

.vision-card h4 {
    font-size: 1.3rem;
    color: var(--tmc-purple);
    margin-bottom: 15px;
}

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

/* ========== COUNTER SECTION ========== */
.counter-section {
    background: var(--gradient-purple);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
}

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

.counter-item {
    text-align: center;
    color: var(--white);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== NEWS SECTION ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-card-content {
    padding: 25px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tmc-green);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.news-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tmc-purple);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-read-more:hover {
    gap: 15px;
    color: var(--tmc-green);
}

/* ========== GALLERY PREVIEW ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

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

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

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

/* ========== TESTIMONIALS ========== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.3rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.testimonial-author-info h5 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--gold);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

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

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 45, 139, 0.3) 0%, transparent 70%);
    animation: pulse-bg 10s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
    background: var(--darker-bg);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-icon {
    background: var(--gradient-green);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

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

.footer-social a:hover {
    background: var(--gradient-purple);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--gold);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3eb0a;
    border-radius: 10px;
    color: var(--white);
}

.footer-contact-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
/* ========== RESPONSIVE - DESKTOP ========== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 0;
    }
    
    .hero-btns,
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-img {
        max-width: 350px;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 992px) {
    /* About Section */
    .about-teaser {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-img-main {
        height: 350px !important;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Vision Grid */
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vision-card {
        padding: 30px 20px;
    }
    
    .vision-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* News Grid */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-card-image {
        height: 160px;
    }
    
    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item:first-child {
        grid-column: span 2;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* Counter */
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .counter-item {
        padding: 20px 10px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    /* Contact Section */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .contact-info-item i {
        margin: 0;
    }
    
    /* Office Locations - Tablet */
    .office-locations {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .office-card {
        padding: 25px;
    }
    
    /* Quick Contact - Tablet */
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-contact-card {
        padding: 25px 20px;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 50px;
        gap: 20px;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
    }
    
    .timeline-content::before,
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: -10px;
        top: -10px;
    }
    
    .timeline-dot {
        left: 20px;
        top: 0;
    }
    
    /* Agenda */
    .agenda-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-item {
        padding: 20px;
    }
    
    .agenda-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Video Grid */
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* News Featured */
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .news-featured-main {
        min-height: 300px;
    }
    
    .news-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Gallery Full */
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-full-item.tall {
        grid-row: span 1;
    }
    
    .gallery-full-item.wide {
        grid-column: span 2;
    }
    
    /* Hero Stats */
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 120px;
        padding: 15px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 768px) {
    /* Hide cursor on touch devices */
    .cursor,
    .cursor-dot {
        display: none !important;
    }
    
    /* Fix body overflow when nav is open */
    body.nav-open {
        overflow: hidden;
    }
    
    nav {
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo on mobile - Compact */
    .logo {
        flex: 1;
        max-width: calc(100% - 60px);
        gap: 8px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .logo-text {
        display: none;
    }
    
    /* Mobile Toggle */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        border-radius: 6px;
        transition: var(--transition);
        z-index: 10006;
        position: relative;
        flex-shrink: 0;
    }
    
    .mobile-toggle:hover {
        background: rgba(107, 45, 139, 0.1);
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
        background: var(--tmc-purple);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
        margin: 0 auto;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Nav Overlay - Completely invisible */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: none;
        opacity: 0;
        visibility: hidden;
        z-index: 10001;
        pointer-events: none;
    }
    
    .nav-overlay.active {
        opacity: 0;
        visibility: hidden;
        background: none;
        pointer-events: auto;
    }

    /* Nav Menu - Mobile Slide */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        display: flex !important;
        padding: 0;
        margin: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.25);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10002;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Nav Menu Header */
    .nav-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        background: var(--gradient-purple);
        color: var(--white);
        position: sticky;
        top: 0;
        z-index: 2;
        flex-shrink: 0;
    }
    
    .nav-menu-header h3 {
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }
    
    .nav-menu-header .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        font-weight: 700;
        background: rgba(255,255,255,0.25);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu-close {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.2);
        border: none;
        border-radius: 50%;
        color: var(--white);
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        flex-shrink: 0;
    }
    
    .nav-menu-close:hover {
        background: rgba(255,255,255,0.35);
        transform: rotate(90deg);
    }
    
    /* Nav Menu Items - Mobile */
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        width: 100%;
        padding: 14px 18px;
        justify-content: space-between;
        border-radius: 0;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        background: var(--white);
        transition: all 0.2s ease;
        color: var(--text-dark);
    }
    
    .nav-menu > li > a i:first-child {
        margin-right: 12px;
        color: var(--tmc-purple);
    }
    
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: rgba(107, 45, 139, 0.06);
        color: var(--tmc-purple);
    }
    
    .nav-menu > li > a i:last-child {
        transition: transform 0.3s ease;
        color: var(--text-light);
    }
    
    .nav-menu > li.submenu-open > a i:last-child {
        transform: rotate(180deg);
    }
    
    /* Dropdown Mobile */
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 1;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        transform: none;
        background: rgba(107, 45, 139, 0.04);
        border-radius: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .dropdown.active {
        max-height: 300px;
        padding: 8px 0;
    }
    
    .dropdown a {
        padding: 12px 18px 12px 48px !important;
        border-bottom: none !important;
        font-size: 0.85rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .dropdown a:hover {
        background: rgba(107, 45, 139, 0.08) !important;
        color: var(--tmc-purple) !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-width: 250px;
        margin: 30px auto 0;
    }
    
    .hero-img {
        max-width: 250px;
        height: 320px;
        border-radius: 20px;
    }
    
    .hero-img-frame {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-stat {
        width: 100%;
        max-width: 180px;
        padding: 15px;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    /* About */
    .about-image {
        max-width: 300px;
    }
    
    .about-img-main {
        height: 280px !important;
    }
    
    .about-experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-block;
        padding: 15px 20px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-highlight {
        padding: 12px;
        justify-content: flex-start;
        text-align: left;
    }
    
    .about-highlight i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    /* Vision Grid */
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vision-card {
        padding: 25px 20px;
    }
    
    .vision-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .vision-card h4 {
        font-size: 1.1rem;
    }
    
    .vision-card p {
        font-size: 0.9rem;
    }
    
    /* Counter */
    .counter-section {
        padding: 40px 0;
    }
    
    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .counter-item {
        padding: 15px 10px;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    .counter-icon {
        font-size: 1.8rem;
    }
    
    /* News */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card {
        border-radius: 15px;
    }
    
    .news-card-image {
        height: 180px;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .news-card h4 {
        font-size: 1rem;
    }
    
    .news-card p {
        font-size: 0.85rem;
    }
    
    .news-featured {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-featured-main {
        min-height: 220px;
    }
    
    .news-featured-overlay {
        padding: 25px;
    }
    
    .news-featured-overlay h2 {
        font-size: 1.2rem;
    }
    
    .news-featured-overlay p {
        font-size: 0.85rem;
    }
    
    .news-full-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-filters {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-filter {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-full-item {
        min-height: 150px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-about .logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Page Header */
    .page-header {
        padding: 90px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-section {
        gap: 30px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Video Grid */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-card {
        border-radius: 15px;
    }
    
    .video-play {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h4 {
        font-size: 1rem;
    }
    
    /* Timeline */
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    /* Agenda */
    .agenda-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 15px;
    }
    
    .agenda-icon {
        margin: 0 auto 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .agenda-content h4 {
        font-size: 1rem;
    }
    
    .agenda-content p {
        font-size: 0.85rem;
    }
    
    .agenda-progress {
        margin-top: 12px;
    }
    
    /* Press Kit */
    .press-kit {
        padding: 25px 15px;
    }
    
    .press-kit h3 {
        font-size: 1.4rem;
    }
    
    .press-downloads {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Lightbox */
    .lightbox-nav {
        font-size: 2rem;
        padding: 10px;
    }
    
    .lightbox-close {
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
    
    /* Quick Contact Cards */
    .vision-card {
        margin-bottom: 0;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE ========== */
@media (max-width: 480px) {
    /* Hide cursor on touch devices */
    .cursor,
    .cursor-dot {
        display: none !important;
    }
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Logo */
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
    
    /* Mobile Toggle */
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
    
    /* Nav Menu */
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu-header h3 {
        font-size: 1rem;
    }
    
    .nav-menu-header .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-menu-close {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .nav-menu > li > a {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .dropdown a {
        padding: 12px 15px 12px 40px !important;
        font-size: 0.9rem;
    }
    
    /* Hero */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-img {
        max-width: 220px;
        height: 280px;
    }
    
    .hero-stat-number {
        font-size: 1.6rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* About */
    .about-img-main {
        height: 250px !important;
    }
    
    .about-content h3 {
        font-size: 1.3rem;
    }
    
    .about-content p {
        font-size: 0.85rem;
    }
    
    .about-highlight i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .about-highlight span {
        font-size: 0.9rem;
    }
    
    /* Vision Card */
    .vision-card {
        padding: 20px 15px;
    }
    
    .vision-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .vision-card h4 {
        font-size: 1rem;
    }
    
    .vision-card p {
        font-size: 0.85rem;
    }
    
    /* Counter */
    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .counter-item {
        padding: 12px 8px;
    }
    
    .counter-number {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
    
    .counter-icon {
        font-size: 1.5rem;
    }
    
    /* News */
    .news-card-image {
        height: 160px;
    }
    
    .news-card-content {
        padding: 15px;
    }
    
    .news-card h4 {
        font-size: 0.95rem;
    }
    
    .news-card p {
        font-size: 0.8rem;
    }
    
    .news-featured-main {
        min-height: 200px;
    }
    
    .news-featured-overlay {
        padding: 20px;
    }
    
    .news-featured-overlay h2 {
        font-size: 1.1rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .gallery-filter {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .gallery-full-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .gallery-full-item {
        min-height: 120px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-quote {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author-info h5 {
        font-size: 1rem;
    }
    
    .testimonial-author-info span {
        font-size: 0.8rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    /* Contact */
    /* Contact Section - Mobile */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .contact-info-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .contact-info-item:last-of-type {
        border-bottom: none;
    }
    
    .contact-info-item i {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .contact-info-item h5 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .contact-info-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .contact-map {
        height: 180px;
        margin-top: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--tmc-purple);
        box-shadow: 0 0 0 3px rgba(107, 45, 139, 0.1);
    }
    
    /* Video */
    .video-thumbnail {
        min-height: 180px;
    }
    
    .video-play {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-info h4 {
        font-size: 0.95rem;
    }
    
    .video-info span {
        font-size: 0.8rem;
    }
    
    /* Timeline */
    .timeline {
        padding: 20px 0;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h4 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .timeline-year {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    /* Agenda */
    .agenda-item {
        padding: 15px;
    }
    
    .agenda-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .agenda-content h4 {
        font-size: 0.95rem;
    }
    
    .agenda-content p {
        font-size: 0.8rem;
    }
    
    /* Press Kit */
    .press-kit {
        padding: 20px 12px;
    }
    
    .press-kit h3 {
        font-size: 1.2rem;
    }
    
    .press-kit p {
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer-about p {
        font-size: 0.85rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
}
    
    /* Hero */
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    /* Nav Menu */
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Vision Card */
    .vision-card {
        padding: 25px 15px;
    }
    
    .vision-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Counter */
    .counter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .counter-item {
        padding: 15px 10px;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-label {
        font-size: 0.75rem;
    }
    
    /* News */
    .news-card-content {
        padding: 15px;
    }
    
    .news-card h4 {
        font-size: 1rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-filter {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 70px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-section {
        gap: 20px;
    }
    
    .contact-info {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.25rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .contact-info-item i {
        margin: 0 auto;
        width: 40px;
        height: 40px;
    }
    
    .contact-info-item h5 {
        font-size: 0.95rem;
    }
    
    .contact-info-item p {
        font-size: 0.8rem;
    }
    
    .contact-map {
        height: 150px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    /* Office Locations - Mobile */
    .office-locations {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-card {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .office-card h4 {
        font-size: 1.15rem !important;
        margin-bottom: 15px !important;
    }
    
    .office-card p {
        font-size: 0.9rem;
    }
    
    /* Quick Contact - Mobile */
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contact-card {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .quick-contact-icon {
        width: 60px;
        height: 60px;
        margin: 0;
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    
    .quick-contact-card h4 {
        font-size: 1.15rem;
        margin-bottom: 5px;
    }
    
    .quick-contact-card p {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer {
        padding-top: 50px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* About Highlights */
    .about-highlight span {
        font-size: 0.85rem;
    }
    
    /* Lightbox */
    .lightbox-nav {
        font-size: 2rem;
        padding: 10px;
    }
    
    .lightbox-close {
        font-size: 1.5rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    /* Timeline */
    .timeline-item,
    .timeline-item:nth-child(odd) {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: 10px;
        width: 15px;
        height: 15px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    /* Video */
    .video-info h4 {
        font-size: 1rem;
    }
    
    /* Agenda */
    .agenda-item {
        padding: 15px;
    }
    
    .agenda-content h4 {
        font-size: 1rem;
    }
    
    .agenda-content p {
        font-size: 0.85rem;
    }
    
    /* Gallery Full */
    .gallery-full-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* News Pagination */
    .news-pagination a,
    .news-pagination span {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ========== RESPONSIVE - VERY SMALL MOBILE ========== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-nav:hover {
    color: var(--gold);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========== PAGE HEADERS ========== */
.page-header {
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--gradient-purple);
    border-radius: 20px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 1.3rem;
}

.contact-info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-map {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--tmc-purple);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--tmc-purple);
    box-shadow: 0 0 0 4px rgba(107, 45, 139, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Office Locations */
.office-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.office-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.quick-contact-card h4 {
    font-size: 1.2rem;
    color: var(--tmc-purple);
    margin-bottom: 10px;
}

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

/* ========== GALLERY PAGE ========== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 12px 30px;
    border: 2px solid var(--tmc-purple);
    border-radius: 50px;
    color: var(--tmc-purple);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: var(--tmc-purple);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-full-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-full-item.tall {
    grid-row: span 2;
}

.gallery-full-item.wide {
    grid-column: span 2;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ========== ABOUT PAGE STYLES ========== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-purple);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: 1;
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: var(--tmc-purple);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* ========== AGENDA SECTION ========== */
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.agenda-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.agenda-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.agenda-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--gradient-purple);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.agenda-content h4 {
    color: var(--tmc-purple);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.agenda-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.agenda-progress {
    margin-top: 15px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.agenda-progress-bar {
    height: 100%;
    background: var(--gradient-green);
    border-radius: 3px;
    transition: width 1s ease;
}

/* ========== MEDIA PAGE ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

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

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-glow-purple);
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gradient-gold);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.press-kit {
    background: var(--light-bg);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.press-kit h3 {
    font-size: 1.8rem;
    color: var(--tmc-purple);
    margin-bottom: 20px;
}

.press-kit p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.press-downloads {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-purple);
}

/* ========== NEWS PAGE ========== */
.news-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.news-featured-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.news-featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
}

.news-featured-overlay .news-category {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.news-featured-overlay h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.news-featured-overlay p {
    opacity: 0.8;
}

.news-featured-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-featured-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
}

.news-featured-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-featured-small .news-featured-overlay {
    padding: 20px;
}

.news-featured-small .news-featured-overlay h3 {
    font-size: 1.1rem;
}

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

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.news-pagination a,
.news-pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.news-pagination a {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
}

.news-pagination a:hover,
.news-pagination .active {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: var(--tmc-purple);
}

/* Vision Quote */
.vision-quote {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: var(--gradient-purple);
    border-radius: 20px;
    color: white;
}

.vision-quote i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.vision-quote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vision-quote .author {
    font-weight: 600;
    font-style: normal;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-page-section {
    padding: 80px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-page-image {
    position: sticky;
    top: 100px;
}

.about-profile-card {
    background: var(--gradient-purple);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.about-profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.about-profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.about-profile-info p {
    font-size: 1rem;
    opacity: 0.8;
}

.about-page-content h3 {
    font-size: 2rem;
    color: var(--tmc-purple);
    margin-bottom: 25px;
}

.about-page-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ========== FOOTER STYLES ========== */
.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    transition: var(--transition);
}

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

footer {
    background: linear-gradient(135deg, #0a7e4a 0%, #1e3c72 50%, #2a5298 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
    font-weight: 300;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    margin-right: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a i {
    color: #4CAF50;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover i {
    color: #2196F3;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: #000000;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 24px;
    transition: var(--transition);
}

.footer-contact-item:hover i {
    color: #2196F3;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    transition: var(--transition);
}

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

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ========== HEADER STYLES ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(243 243 243);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 15px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

header .logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

header nav {
    display: flex;
    align-items: center;
}

header .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

header .nav-links li {
    position: relative;
    overflow: hidden;
}

header .nav-links a {
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    letter-spacing: -0.3px;
}

header .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-purple);
    transition: width 0.4s ease;
}

header .nav-links a:hover {
    color: var(--tmc-purple);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

header .nav-links a:hover::before {
    width: 100%;
}

header .nav-links a.active {
    color: var(--tmc-purple);
    background: rgba(107, 45, 139, 0.08);
}

header .nav-links a.active::before {
    width: 100%;
}

header .nav-links a i {
    font-size: 1.1rem;
    line-height: 1;
}

header .nav-links a:hover i {
    animation: pulse 1.5s infinite;
}

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

header .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

header .menu-toggle .bar {
    height: 2px;
    width: 100%;
    background: var(--tmc-purple);
    border-radius: 1px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

header .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    transition-delay: 0.1s;
}

header .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transition-delay: 0.1s;
}

header .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    transition-delay: 0.1s;
}

@media (max-width: 991px) {
    header .container {
        height: 60px;
        padding: 0 12px;
    }
    
    header .logo-img {
        height: 24px;
    }
    
    header .nav-links {
        position: fixed;
        top: 50px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        max-width: 280px;
        height: calc(100vh - 50px);
        gap: 0;
        box-shadow: -2px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 15px 0;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    header .nav-links.active {
        right: 0;
    }
    
    header .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    header .nav-links li:last-child {
        border-bottom: none;
    }
    
    header .nav-links a {
        width: 100%;
        padding: 14px 18px;
        justify-content: flex-start;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 0;
        gap: 8px;
    }
    
    header .nav-links a::before {
        display: none;
    }
    
    header .nav-links a:hover {
        color: var(--tmc-purple);
        background: rgba(107, 45, 139, 0.06);
        transform: translateX(5px);
    }
    
    header .nav-links a.active {
        color: var(--tmc-purple);
        background: rgba(107, 45, 139, 0.1);
        border-left: 3px solid var(--tmc-purple);
        padding-left: 15px;
    }
    
    header .nav-links a.active::before {
        display: none;
    }
    
    header .menu-toggle {
        display: flex;
    }
    
    header .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    header .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    header .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

@media (max-width: 575px) {
    header .container {
        height: 40px;
        padding: 0 8px;
    }
    
    header .logo-img {
        height: 20px;
    }
}

@media (max-width: 991px) {
    header .container {
        height: 60px;
        padding: 0 12px;
    }
    
    header .logo-img {
        height: 40px;
    }
    
    header .nav-links {
        position: fixed;
        top: 50px;
        right: -100%;
        flex-direction: column;
        background: #ebebeb;
        width: 100%;
        max-width: 280px;
        height: calc(100vh - 50px);
        gap: 0;
        box-shadow: -2px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: 15px 0;
    }
    
    header .nav-links.active {
        right: 0;
    }
    
    header .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    header .nav-links li:last-child {
        border-bottom: none;
    }
    
    header .nav-links a {
        width: 100%;
        padding: 12px 15px;
        justify-content: flex-start;
    }
    
    header .menu-toggle {
        display: flex;
    }
    
    header .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    header .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    header .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

@media (max-width: 575px) {
    header .container {
        height: 60px;
        padding: 0 8px;
    }
    
    header .logo-img {
        height: 40px;
    }
}

