/* Texas Tech Colors */
:root {
    --tech-red: #CC0000;
    --tech-black: #000000;
    --tech-white: #FFFFFF;
    --tech-gray: #666666;
    --tech-light-gray: #F5F5F5;
    --tech-dark-gray: #333333;
    
    /* ECS Official Colors */
    --ecs-blue: #1C2C69;  /* PMS 280C */
    --ecs-green: #00843D; /* PMS 348C */
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--tech-dark-gray);
    background-color: var(--tech-white);
}

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

/* Social Media Fixed Icons */
.social-media-fixed {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-media-fixed a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tech-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-fixed a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-media-fixed img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation */
.navbar {
    background: var(--tech-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

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

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

.chapter-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo h2 {
    color: var(--tech-red);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.ecs-official-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.ecs-official-link:hover {
    transform: scale(1.1);
}

.ecs-official-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
    padding: 2px;
    /* Use mix-blend-mode to make white background transparent */
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.1);
}

/* Legacy support for old nav-logo img selector */
.nav-logo img:not(.ecs-official-logo) {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--tech-dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--tech-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tech-red);
    transition: width 0.3s ease;
}

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

/* Special styling for Join Us nav link */
.join-highlight {
    background: var(--tech-red);
    color: var(--tech-white) !important;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.join-highlight:hover {
    background: var(--tech-black);
    transform: scale(1.05);
}

.join-highlight::after {
    display: none;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--tech-white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--tech-dark-gray);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--tech-light-gray);
    color: var(--tech-red);
    border-left-color: var(--tech-red);
    padding-left: 25px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--tech-white);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--tech-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--tech-red) 0%, var(--tech-black) 100%);
    color: var(--tech-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-logos {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 160px;
    height: 160px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--tech-white);
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Add white circular background for chapter logo */
.chapter-hero-logo {
    width: 160px !important;
    height: 160px !important;
    border: none !important;
    background: white !important;
    border-radius: 50% !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    object-fit: contain !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ecs-hero-logo {
    width: 160px !important;
    height: 160px !important;
    background: transparent;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.1);
    border: none !important;
}

.ecs-title {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 160px;
}

.ecs-title-line {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 2px 0;
}

.hero-ecs-link {
    display: block;
    transition: transform 0.3s ease;
}

.hero-ecs-link:hover {
    transform: scale(1.1);
}

.hero-ecs-link:hover .ecs-hero-logo {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: var(--tech-light-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--tech-white);
    color: var(--tech-red);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tech-red);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--tech-red);
    border-radius: 2px;
}

/* ================================================
   LOGO TRANSFORMATION SECTION STYLES
   ================================================ */

.logo-transformation {
    background: linear-gradient(135deg, var(--tech-light-gray) 0%, var(--tech-white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.logo-transformation::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.03"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.transformation-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.transformation-text {
    margin-bottom: 50px;
}

.transformation-text h3 {
    color: var(--tech-red);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.transformation-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--tech-gray);
    margin-bottom: 15px;
}

/* Logo Animation Container */
.logo-animation-container {
    margin: 60px 0;
}

.logo-stage {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tech-white), var(--tech-light-gray));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-logo {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: contain;
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.transformation-logo.old-logo {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

.transformation-logo.new-logo {
    opacity: 0;
    transform: scale(0.1) rotate(-180deg);
    z-index: 1;
    background: white;
    padding: 20px;
    box-sizing: border-box;
}

/* Animation States */
.transformation-logo.old-logo.fade-out {
    opacity: 0;
    transform: scale(0.1) rotate(180deg);
}

.transformation-logo.new-logo.fade-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

/* Sparkle Effects */
.transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: sparkleAnimation 0.8s ease-out;
    animation-fill-mode: forwards;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 1s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1.3s;
}

.sparkle-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 1.6s;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Control Buttons */
.transformation-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.transformation-btn {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 180px;
}

.transformation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Logo Comparison */
.logo-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.logo-item h4 {
    color: var(--tech-black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.logo-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin: 0 auto;
}

.logo-preview.new {
    padding: 10px;
    box-sizing: border-box;
}

.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transformation-arrow {
    font-size: 2rem;
    color: var(--tech-red);
    animation: pulse 2s infinite;
}

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

/* Contest Info */
.contest-info {
    background: var(--tech-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.contest-info h4 {
    color: var(--tech-red);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contest-info p {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-transformation {
        padding: 60px 0;
    }
    
    .transformation-text h3 {
        font-size: 1.8rem;
    }
    
    .logo-stage {
        width: 250px;
        height: 250px;
    }
    
    .transformation-logo {
        width: 200px;
        height: 200px;
    }
    
    .transformation-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .contest-info {
        padding: 20px;
        margin: 0 15px;
    }
}

/* ================================================
   END LOGO TRANSFORMATION STYLES
   ================================================ */

/* ================================================
   NEWS LOGO ANIMATION STYLES
   ================================================ */

.featured-news {
    border: 2px solid var(--tech-red);
    background: linear-gradient(135deg, var(--tech-white) 0%, var(--tech-light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.featured-news::before {
    content: '🎉';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

.news-logo-animation {
    margin: 20px 0;
    text-align: center;
}

.news-logo-stage {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tech-white), var(--tech-light-gray));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-transformation-logo {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.news-transformation-logo.news-old-logo {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

.news-transformation-logo.news-new-logo {
    opacity: 0;
    transform: scale(0.2) rotate(-180deg);
    z-index: 1;
    background: white;
    padding: 10px;
    box-sizing: border-box;
}

/* News Animation States */
.news-transformation-logo.news-old-logo.fade-out {
    opacity: 0;
    transform: scale(0.2) rotate(180deg);
}

.news-transformation-logo.news-new-logo.fade-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

/* News Sparkles */
.news-transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.news-sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
}

.news-sparkle-1 {
    top: 20%;
    left: 20%;
}

.news-sparkle-2 {
    bottom: 25%;
    right: 25%;
}

.news-play-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.news-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-play-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mobile News Animation */
@media (max-width: 768px) {
    .news-logo-stage {
        width: 120px;
        height: 120px;
    }
    
    .news-transformation-logo {
        width: 100px;
        height: 100px;
    }
}

/* ================================================
   END NEWS LOGO ANIMATION STYLES
   ================================================ */

/* ================================================
   EVENTS PAGE LOGO ANIMATION STYLES
   ================================================ */

.logo-competition-event {
    border-left: 4px solid var(--tech-red);
    background: linear-gradient(135deg, var(--tech-white) 0%, var(--tech-light-gray) 100%);
    position: relative;
}

.logo-competition-event::before {
    content: '🏆';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    animation: trophy-glow 3s infinite alternate;
}

@keyframes trophy-glow {
    0% { transform: scale(1) rotate(-5deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.logo-competition-history {
    border-left: 4px solid var(--tech-gray);
    background: var(--tech-light-gray);
    opacity: 0.95;
}

.events-logo-announcement {
    margin: 25px 0;
    padding: 20px;
    background: var(--tech-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.events-transformation-container {
    text-align: center;
    margin-bottom: 25px;
}

.events-transformation-container h5 {
    color: var(--tech-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.events-logo-stage {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--tech-white), var(--tech-light-gray));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-transformation-logo {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: contain;
    transition: all 1.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.events-transformation-logo.events-old-logo {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

.events-transformation-logo.events-new-logo {
    opacity: 0;
    transform: scale(0.2) rotate(-180deg);
    z-index: 1;
    background: white;
    padding: 15px;
    box-sizing: border-box;
}

/* Events Animation States */
.events-transformation-logo.events-old-logo.fade-out {
    opacity: 0;
    transform: scale(0.2) rotate(180deg);
}

.events-transformation-logo.events-new-logo.fade-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
}

/* Events Sparkles */
.events-transformation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.events-sparkle {
    position: absolute;
    font-size: 1.8rem;
    opacity: 0;
}

.events-sparkle-1 {
    top: 15%;
    left: 15%;
}

.events-sparkle-2 {
    top: 20%;
    right: 20%;
}

.events-sparkle-3 {
    bottom: 20%;
    left: 25%;
}

.events-play-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--tech-red);
    color: white;
    font-weight: 600;
}

.events-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    background: var(--tech-black);
}

.events-play-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.winner-details {
    background: var(--tech-light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.winner-details h6 {
    color: var(--tech-red);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.winner-details p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.historical-note {
    font-style: italic;
    color: var(--tech-gray);
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
}

.status-badge.winner-announced {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--tech-black);
    font-weight: 600;
}

.status-badge.winner-announced i {
    color: #b8860b;
}

/* Mobile Events Animation */
@media (max-width: 768px) {
    .events-logo-stage {
        width: 160px;
        height: 160px;
    }
    
    .events-transformation-logo {
        width: 130px;
        height: 130px;
    }
    
    .events-logo-announcement {
        margin: 20px 0;
        padding: 15px;
    }
    
    .winner-details {
        padding: 15px;
    }
}

/* ================================================
   END EVENTS PAGE LOGO ANIMATION STYLES
   ================================================ */

/* About Section */
.about {
    background: var(--tech-light-gray);
}

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

.mission-section h3 {
    font-size: 2rem;
    color: var(--tech-red);
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--tech-gray);
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h3 {
    font-size: 2rem;
    color: var(--tech-red);
    margin-bottom: 30px;
    text-align: center;
}

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

.benefit-item {
    background: var(--tech-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--tech-red);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--tech-dark-gray);
    margin-bottom: 15px;
}

.publications-list {
    background: var(--tech-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.publications-list h4 {
    font-size: 1.3rem;
    color: var(--tech-red);
    margin-bottom: 20px;
}

.publications-list ul {
    list-style: none;
    padding-left: 0;
}

.publications-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--tech-light-gray);
    position: relative;
    padding-left: 20px;
}

.publications-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
}

/* Join Us Section */
.join-us-section {
    margin: 60px 0;
    background: linear-gradient(135deg, var(--tech-red) 0%, #e60000 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.join-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 20s linear infinite;
    pointer-events: none;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5%, -5%) rotate(90deg); }
    50% { transform: translate(-10%, 5%) rotate(180deg); }
    75% { transform: translate(-5%, -10%) rotate(270deg); }
}

.join-us-content {
    padding: 50px 40px;
    text-align: center;
    color: var(--tech-white);
    position: relative;
    z-index: 1;
}

.join-us-header h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.join-us-header .fas {
    margin-right: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 50%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
}

.join-us-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.join-us-highlights {
    margin: 40px 0;
}

.highlight-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item .fas {
    color: #FFD700;
    font-size: 1.2rem;
}

.join-us-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.join-us-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.join-btn-primary, .join-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.join-btn-primary {
    background: var(--tech-white);
    color: var(--tech-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.join-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

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

.join-btn-secondary:hover {
    background: var(--tech-white);
    color: var(--tech-red);
    transform: translateY(-3px);
}

.membership-note {
    background: rgba(255, 215, 0, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

.membership-note p {
    margin: 0;
    font-size: 1rem;
    color: #FFD700;
}

.membership-note .fas {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

/* QR Code Section */
.qr-code-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.qr-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.qr-code-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: var(--tech-white);
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.qr-code-img:hover {
    transform: scale(1.05);
}

.qr-code-text {
    text-align: center;
    color: var(--tech-white);
}

.qr-code-text p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.qr-code-text p:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .join-us-content {
        padding: 40px 20px;
    }
    
    .join-us-header h3 {
        font-size: 2rem;
    }
    
    .highlight-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-btn-primary, .join-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .qr-code-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .qr-code-img {
        width: 100px;
        height: 100px;
    }
}

.divisions-section h3 {
    font-size: 2rem;
    color: var(--tech-red);
    margin-bottom: 10px;
    text-align: center;
}

.divisions-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--tech-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.division-item {
    background: var(--tech-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--tech-dark-gray);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--tech-red);
}

.division-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* ECS Today Section */
.ecs-today {
    background: var(--tech-red);
    color: var(--tech-white);
}

.ecs-today .section-title {
    color: var(--tech-white);
}

.ecs-today .section-title::after {
    background: var(--tech-white);
}

.ecs-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Events Section */
.events {
    background: var(--tech-light-gray);
}

.featured-event {
    background: var(--tech-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.event-header {
    background: linear-gradient(135deg, var(--tech-red), var(--tech-black));
    color: var(--tech-white);
    padding: 20px 30px;
    text-align: center;
}

.event-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.event-content {
    padding: 30px;
}

.event-content h4 {
    font-size: 2rem;
    color: var(--tech-red);
    margin-bottom: 20px;
    text-align: center;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.event-details p {
    font-size: 1.1rem;
    color: var(--tech-dark-gray);
}

.event-features h5 {
    font-size: 1.3rem;
    color: var(--tech-red);
    margin-bottom: 15px;
}

.event-features ul {
    list-style: none;
    padding-left: 0;
}

.event-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.event-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.event-registration {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--tech-light-gray);
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--tech-red), var(--tech-black));
    color: var(--tech-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--tech-black), var(--tech-red));
}

.register-btn i {
    font-size: 1.3rem;
}

/* Registration Buttons Layout */
.registration-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.interest-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--tech-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.interest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.interest-btn i {
    font-size: 1.3rem;
}

.official-registration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.register-btn.disabled {
    background: linear-gradient(135deg, #6c757d, #adb5bd);
    cursor: not-allowed;
    opacity: 0.7;
}

.register-btn.disabled:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.2);
    background: linear-gradient(135deg, #6c757d, #adb5bd);
}

.coming-soon-note {
    color: var(--tech-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.registration-warnings {
    background: var(--tech-light-gray);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--tech-red);
}

.interest-warning,
.registration-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.interest-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}

.registration-info {
    background: rgba(0, 123, 255, 0.1);
    border-left: 3px solid #007bff;
    margin-bottom: 0;
}

.interest-warning i,
.registration-info i {
    color: var(--tech-red);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.interest-warning strong,
.registration-info strong {
    color: var(--tech-dark-gray);
}

@media (max-width: 768px) {
    .registration-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .interest-btn,
    .register-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .registration-warnings {
        padding: 15px;
    }
    
    .interest-warning,
    .registration-info {
        font-size: 0.9rem;
        gap: 10px;
    }
}

.registration-note {
    margin-top: 15px;
    color: var(--tech-gray);
    font-size: 0.95rem;
}

.registration-note em {
    color: var(--tech-red);
    font-weight: 500;
}

/* Events QR Code Section */
.event-qr-section {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid var(--tech-light-gray);
    border-bottom: 2px solid var(--tech-light-gray);
}

.event-qr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--tech-red);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.1);
    max-width: 450px;
    margin: 0 auto;
}

.event-qr-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: var(--tech-white);
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-qr-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.2);
}

.event-qr-text {
    text-align: center;
    color: var(--tech-dark-gray);
}

.event-qr-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tech-red);
}

.event-qr-text h5 i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.event-qr-text p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: var(--tech-gray);
}

/* Mobile responsive for events QR */
@media (max-width: 768px) {
    .event-qr-container {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
    }
    
    .event-qr-img {
        width: 100px;
        height: 100px;
    }
    
    .event-qr-text h5 {
        font-size: 1.1rem;
    }
    
    .event-qr-text p {
        font-size: 0.9rem;
    }
}

/* Countdown Timer */
.countdown-container {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--tech-light-gray), var(--tech-white));
    border-radius: 15px;
    border: 2px solid var(--tech-red);
    text-align: center;
}

.countdown-container h5 {
    color: var(--tech-red);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--tech-white);
    border: 2px solid var(--tech-red);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-3px);
}

.time-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--tech-red);
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    color: var(--tech-dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-message {
    color: var(--tech-dark-gray);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 15px;
}

.countdown-expired {
    color: var(--tech-red);
    font-weight: 600;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 12px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.8rem;
    }
}

/* Previous Symposiums Gallery */
.previous-symposiums {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--tech-white), var(--tech-light-gray));
    border-radius: 15px;
    border: 2px solid var(--tech-red);
}

.previous-symposiums h5 {
    color: var(--tech-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.symposium-intro {
    text-align: center;
    color: var(--tech-dark-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.symposium-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.symposium-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: var(--tech-white);
}

.symposium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

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

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

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

.symposium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.symposium-info h6 {
    color: var(--tech-white);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.symposium-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.symposium-cta {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--tech-red), rgba(204, 0, 0, 0.8));
    border-radius: 10px;
    color: var(--tech-white);
}

.symposium-cta p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.symposium-cta strong {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .symposium-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .previous-symposiums {
        padding: 20px;
    }
    
    .symposium-image {
        height: 180px;
    }
    
    .previous-symposiums h5 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .symposium-intro {
        font-size: 1rem;
    }
    
    .symposium-cta p {
        font-size: 1rem;
    }
}

.upcoming-events {
    background: var(--tech-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.upcoming-events h3 {
    font-size: 1.8rem;
    color: var(--tech-red);
    margin-bottom: 30px;
    text-align: center;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--tech-light-gray);
    transition: background 0.3s ease;
}

.event-item:hover {
    background: var(--tech-light-gray);
}

.event-date {
    background: var(--tech-red);
    color: var(--tech-white);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

.event-info h4 {
    color: var(--tech-dark-gray);
    margin-bottom: 5px;
}

.event-info p {
    color: var(--tech-gray);
}

.add-event-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--tech-light-gray);
}

.add-event-note em {
    color: var(--tech-gray);
}

/* Leaders Section */
.leaders {
    background: var(--tech-white);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.leader-card {
    background: var(--tech-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--tech-red);
}

.leader-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
}

/* Specific positioning for individual photos if needed */
.leader-card img[alt="Bianca Camacho"] {
    object-position: center 20%;
}

.leader-card:hover img {
    transform: scale(1.05);
}

.leader-info {
    padding: 30px 25px;
    text-align: center;
    background: var(--tech-white);
}

.leader-info h3 {
    font-size: 1.4rem;
    color: var(--tech-dark-gray);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.leader-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tech-red);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-degree {
    color: var(--tech-gray);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4;
}

/* News Section */
.news {
    background: var(--tech-light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-item {
    background: var(--tech-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item h3 {
    font-size: 1.4rem;
    color: var(--tech-red);
    margin-bottom: 10px;
}

.news-date {
    color: var(--tech-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-item p {
    color: var(--tech-dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.read-more-btn {
    display: inline-block;
    background: var(--tech-red);
    color: var(--tech-white);
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: var(--tech-black);
}

.news-note {
    text-align: center;
    padding: 20px;
    background: var(--tech-white);
    border-radius: 10px;
}

.news-note em {
    color: var(--tech-gray);
}

/* Learn Section */
.learn {
    background: var(--tech-white);
}

.learn-intro {
    text-align: center;
    margin-bottom: 50px;
}

.learn-intro p {
    font-size: 1.2rem;
    color: var(--tech-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.course-item {
    background: var(--tech-light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--tech-red);
}

.course-item:hover {
    transform: translateY(-5px);
}

.course-item h3 {
    font-size: 1.4rem;
    color: var(--tech-red);
    margin-bottom: 15px;
}

.course-item p {
    color: var(--tech-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-btn {
    background: var(--tech-red);
    color: var(--tech-white);
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.course-btn:hover {
    background: var(--tech-black);
}

.learn-note {
    text-align: center;
    padding: 20px;
    background: var(--tech-light-gray);
    border-radius: 10px;
}

.learn-note em {
    color: var(--tech-gray);
}

/* Footer */
.footer {
    background: var(--tech-black);
    color: var(--tech-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--tech-red);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--tech-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: var(--tech-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--tech-red);
}

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

.footer-social a {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--tech-white);
    padding: 5px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid var(--tech-gray);
    padding-top: 20px;
    text-align: center;
    color: var(--tech-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-media-fixed {
        top: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .social-media-fixed a {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--tech-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Dropdown Adjustments */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--tech-light-gray);
        border-radius: 0;
        margin: 10px 0 0 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-link {
        padding: 15px 20px;
        border-left: none;
        border-bottom: 1px solid #ddd;
        font-size: 0.95em;
    }

    .dropdown-link:hover {
        background: var(--tech-white);
        padding-left: 20px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-arrow,
    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

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

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 200px;
    }

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

    .event-details {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
    }

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

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

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-logos {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .hero-logo {
        width: 195px; /* Increased by additional 30% from 150px */
        height: 195px; /* Increased by additional 30% from 150px */
    }

    /* Mobile circular chapter logo */
    .chapter-hero-logo {
        width: 195px !important;
        height: 195px !important;
        padding: 15px !important;
    }

    .ecs-hero-logo {
        padding: 6px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header for individual pages */
.page-header {
    background: linear-gradient(135deg, var(--tech-red) 0%, var(--tech-black) 100%);
    color: var(--tech-white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation active state */
.nav-link.active {
    color: var(--tech-red);
}

.nav-link.active::after {
    width: 100%;
}

/* Enhanced event management section */
.add-event-section {
    background: var(--tech-light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0 20px;
    border-left: 5px solid var(--tech-red);
}

.add-event-section h3 {
    color: var(--tech-red);
    margin-bottom: 15px;
}

.add-event-section ul {
    list-style: none;
    padding-left: 0;
}

.add-event-section li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.add-event-section li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
}

/* Enhanced course items */
.course-item {
    background: var(--tech-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--tech-red);
    position: relative;
    overflow: hidden;
}

.course-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 3rem;
    color: var(--tech-red);
    margin-bottom: 20px;
}

.course-details {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: var(--tech-light-gray);
    border-radius: 8px;
    opacity: 0.9;
}

.course-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--tech-dark-gray);
}

.course-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
}

/* Educational Resources Section */
.educational-resources {
    background: var(--tech-light-gray);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
}

.educational-resources h3 {
    color: var(--tech-red);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

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

.resource-item {
    background: var(--tech-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--tech-red);
}

.resource-item h4 {
    color: var(--tech-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-item h4 i {
    font-size: 1.2rem;
}

.resource-item ul {
    list-style: none;
    padding: 0;
}

.resource-item li {
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
    color: var(--tech-dark-gray);
}

.resource-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
}

/* Past Events Section */
.past-events {
    background: var(--tech-light-gray);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.past-events h3 {
    font-size: 1.8rem;
    color: var(--tech-gray);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.past-events h3 i {
    color: var(--tech-red);
}

.upcoming-events h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.upcoming-events h3 i {
    color: var(--tech-red);
}

.past-event {
    opacity: 0.8;
    border-left: 4px solid var(--tech-gray) !important;
}

.past-event:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.02);
}

.past-event .event-date {
    background: var(--tech-gray) !important;
    color: var(--tech-white);
}

.event-status {
    margin-top: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-badge i {
    font-size: 0.8rem;
}

.science-day-event .event-info {
    width: 100%;
}

/* ─── Online Lecture Event Card ─────────────────────────── */
.online-lecture-event {
    flex-direction: column;
    align-items: flex-start;
    border-left: 4px solid var(--tech-red);
    padding: 25px;
    gap: 0;
}

.online-lecture-event .event-date {
    margin-right: 0;
    margin-bottom: 14px;
    align-self: flex-start;
}

.online-lecture-event .event-info {
    width: 100%;
}

.online-lecture-event .event-info > h4 {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--tech-dark-gray);
    margin-bottom: 18px;
    line-height: 1.4;
}

.online-lecture-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lecture-speaker-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lecture-speaker-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--tech-red);
    flex-shrink: 0;
    background: #f5f5f5;
}

.lecture-speaker-info .speaker-name {
    font-weight: 700;
    color: var(--tech-dark-gray);
    font-size: 1.05rem;
    margin: 0 0 4px 0;
}

.lecture-speaker-info p {
    color: var(--tech-gray);
    font-size: 0.9rem;
    margin: 2px 0;
}

.lecture-details {
    background: var(--tech-light-gray);
    padding: 14px 18px;
    border-radius: 8px;
}

.lecture-details > p {
    margin: 0 0 6px 0;
    color: var(--tech-dark-gray);
    font-size: 0.95rem;
}

.zoom-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.zoom-details p {
    margin: 3px 0;
    color: var(--tech-dark-gray);
    font-size: 0.95rem;
}

.lecture-abstract {
    background: #f9f9f9;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 3px solid var(--tech-red);
}

.lecture-abstract h5 {
    color: var(--tech-red);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 10px 0;
}

.lecture-abstract p {
    color: var(--tech-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: justify;
    margin: 0;
}

.lecture-event-photo {
    margin-top: 20px;
    text-align: center;
}

.lecture-event-img {
    width: 100%;
    max-width: 680px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Empty upcoming events placeholder */
.no-upcoming-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 48px 20px;
    color: #aaa;
    font-size: 1rem;
    text-align: center;
}

.no-upcoming-events i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.no-upcoming-events p {
    margin: 0;
    font-style: italic;
}

@media (max-width: 600px) {
    .lecture-speaker-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lecture-speaker-img {
        width: 130px;
        height: 130px;
    }
}
/* ─────────────────────────────────────────────────────────── */

.science-day-event {
    align-items: flex-start;
    text-align: left;
}

.science-day-main-title {
    font-size: 1.6rem;
    color: var(--tech-red);
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.science-day-content {
    display: grid;
    grid-template-columns: minmax(340px, 1.2fr) minmax(280px, 1fr);
    gap: 22px;
    align-items: start;
}

.science-day-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.science-day-row {
    display: grid;
    gap: 10px;
}

.science-day-row-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.science-day-row-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-day-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: var(--tech-white);
    background: var(--ecs-blue);
    transition: background 0.3s ease;
}

.science-day-link:hover {
    background: var(--ecs-green);
}

.science-day-picture {
    display: block;
}

.science-day-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--tech-light-gray);
}

.science-day-row-top .science-day-image {
    height: 220px;
}

.science-day-image-president1,
.science-day-image-president2,
.science-day-image-secretary {
    object-fit: contain;
    object-position: center;
    background: var(--tech-white);
}

@media (max-width: 1000px) {
    .science-day-content {
        grid-template-columns: 1fr;
    }

    .science-day-row-top {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .science-day-row-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .science-day-row-top .science-day-image {
        height: 190px;
    }

    .science-day-row-bottom .science-day-image {
        height: 170px;
    }
}

@media (max-width: 700px) {
    .science-day-row-top,
    .science-day-row-bottom {
        grid-template-columns: 1fr;
    }

    .science-day-image,
    .science-day-row-top .science-day-image,
    .science-day-row-bottom .science-day-image {
        height: 210px;
    }
}

/* Management Grid */
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.management-section {
    background: var(--tech-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--tech-red);
}

.management-section h4 {
    color: var(--tech-red);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.management-section p {
    color: var(--tech-gray);
    margin-bottom: 10px;
}

/* ===================================
   IMAGE POPUP/MODAL STYLES
   ================================= */

/* Modal overlay */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-modal.modal-show {
    opacity: 1;
}

/* Modal content container */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--tech-white);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    cursor: default;
    animation: modalZoom 0.3s ease-out;
}

@keyframes modalZoom {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--tech-white);
    background: rgba(0, 0, 0, 0.7);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.modal-close:hover,
.modal-close:focus {
    background: var(--tech-red);
    color: var(--tech-white);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--tech-white);
}

/* Modal image */
.modal-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: calc(90vh - 80px);
    object-fit: contain;
    background: var(--tech-white);
}

/* Image caption */
.modal-caption {
    background: var(--tech-white);
    color: var(--tech-dark-gray);
    padding: 15px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    border-top: 1px solid var(--tech-light-gray);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced clickable image styling */
img[style*="cursor: pointer"] {
    transition: all 0.3s ease;
    border-radius: 5px;
}

img[style*="cursor: pointer"]:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

/* Special styling for gallery images */
.symposium-gallery img[style*="cursor: pointer"]:hover {
    transform: scale(1.05);
}

.color-palette-img[style*="cursor: pointer"]:hover {
    transform: scale(1.03);
}

.event-qr-img[style*="cursor: pointer"]:hover {
    transform: scale(1.05) rotate(2deg);
}

.qr-code-img[style*="cursor: pointer"]:hover {
    transform: scale(1.05);
}

/* Enhanced hover effects for leader images */
.leader-card img[style*="cursor: pointer"]:hover {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.05);
}

/* Hero logo hover effects */
.hero-logo[style*="cursor: pointer"]:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.chapter-logo[style*="cursor: pointer"]:hover {
    transform: scale(1.1);
}

.ecs-official-logo[style*="cursor: pointer"]:hover {
    transform: scale(1.1);
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
        border-radius: 8px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .modal-image {
        max-height: calc(90vh - 60px);
    }
    
    .modal-caption {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        max-height: 98%;
        border-radius: 5px;
    }
    
    .modal-close {
        top: 8px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .modal-caption {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.management-item {
    background: var(--tech-white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--tech-red);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.management-item h4 {
    color: var(--tech-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.management-item h4 i {
    font-size: 1.1rem;
}

.management-item ul {
    list-style: none;
    padding: 0;
}

.management-item li {
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
    color: var(--tech-dark-gray);
}

.management-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tech-red);
    font-weight: bold;
}