/* Main Styles for UWU EXPO 2025 */
:root {
    --primary-color: #0a4275;
    --accent-color: #ff6b00;
    --light-bg: #f5f7fa;
    --dark-text: #333;
    --light-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

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

/* Header Section */
header {
    background: linear-gradient(135deg, var(--primary-color), #001e36);
    color: var(--light-text);
    padding: 20px 0;
}

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

.logo-container {
    flex: 0 0 auto;
}

.logo {
    width: 120px;
}

.expo-logo {
    width: 280px;
}

.header-text {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.header-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.header-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-link {
    display: block;
    color: var(--light-text);
    text-align: center;
    padding: 15px 20px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-weight: 500;
    font-size: 21px;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.nav-link.active {
    background-color: var(--accent-color);
    color: white;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 15px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 8px;
    vertical-align: 1px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1001;
    padding: 0;
    list-style: none;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--accent-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    color: var(--dark-text);
    padding: 15px 20px;
    text-decoration: none;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item.active {
    background-color: rgba(10, 66, 117, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 4px solid var(--accent-color);
}

/* Slideshow */
.slideshow-container-alt {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-height: 600px;
}

.slide-alt {
    display: none;
    width: 100%;
    height: 600px;
}

.slide-alt.active {
    display: block;
}

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

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Enhanced Countdown Section */
.countdown-section.enhanced {
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    color: var(--light-text);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png');
    opacity: 0.07;
    pointer-events: none;
}

.countdown-section.enhanced .countdown-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.countdown-section.enhanced .countdown-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.countdown-section.enhanced .countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-section.enhanced .countdown-box {
    position: relative;
    width: 140px;
    height: 140px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.countdown-section.enhanced .countdown-box:hover {
    transform: translateY(-10px);
}

.countdown-section.enhanced .countdown-circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-section.enhanced .countdown-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.countdown-section.enhanced .countdown-circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

.countdown-section.enhanced .days-circle {
    stroke: #ff6b00;
    animation: countdown-circle-animation 1s ease forwards;
}

.countdown-section.enhanced .hours-circle {
    stroke: #ff9500;
    animation: countdown-circle-animation 1s ease forwards;
    animation-delay: 0.2s;
}

.countdown-section.enhanced .minutes-circle {
    stroke: #ffb700;
    animation: countdown-circle-animation 1s ease forwards;
    animation-delay: 0.4s;
}

.countdown-section.enhanced .seconds-circle {
    stroke: #ffda00;
    animation: countdown-circle-animation 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes countdown-circle-animation {
    to {
        stroke-dashoffset: 30;
    }
}

.countdown-section.enhanced .countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.countdown-section.enhanced .countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.countdown-section.enhanced .countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.9;
}

/* Enhanced Event Details Section */
.event-details-enhanced {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.event-details-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.event-details-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(10, 66, 117, 0.05) 0%, rgba(10, 66, 117, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Section header styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-divider {
    position: relative;
    height: 20px;
    margin-bottom: 20px;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 2px;
    background-color: var(--accent-color);
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Event cards container */
.event-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.event-card {
    width: 320px;
    height: 320px;
    perspective: 1000px;
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.event-card:hover .event-card-inner {
    transform: rotateY(180deg);
}

.event-card-front, .event-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.event-card-front {
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.event-card-front h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.event-card-front h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.event-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.event-details-content {
    width: 100%;
}

.detail-item {
    margin-bottom: 20px;
    text-align: left;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.detail-item.duration {
    margin-top: 30px;
}

/* Attendee types */
.attendee-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.attendee-type {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.attendee-type:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.attendee-type i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.attendee-type:hover i {
    color: white;
}

.attendee-type span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Vice Chancellor Message Section */
.vc-message-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.vc-message-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.vc-message-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.vc-message-container {
    display: flex;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vc-image {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.vc-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    margin-bottom: 20px;
}

.vc-name {
    text-align: center;
}

.vc-name p {
    margin: 5px 0;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.vc-name p:first-child {
    font-size: 1.1rem;
}

.vc-content {
    flex: 2;
    padding: 30px;
    display: flex;
    align-items: center;
}

.vc-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
    color: #444;
}

.vc-text p:last-child {
    margin-bottom: 0;
}

.vc-text {
    position: relative;
    padding: 5px 0 0 15px;
    border-left: 3px solid var(--accent-color);
}

/* Enhanced What to Expect Section */
.what-to-expect-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    position: relative;
    overflow: hidden;
}

.what-to-expect-new::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 66, 117, 0.03) 0%, rgba(10, 66, 117, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.what-to-expect-new::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.what-to-expect-new .container {
    position: relative;
    z-index: 2;
}

/* Category filter */
.category-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.filter-label {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 66, 117, 0.2);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Category Card */
.category-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(10, 66, 117, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
}

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

.category-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 10px;
    padding-right: 50px;
    font-weight: 600;
    line-height: 1.4;
}

.category-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.location-badge {
    font-size: 0.8rem;
    color: #555;
    background-color: #f5f7fa;
    padding: 4px 10px;
    border-radius: 20px;
}

.details-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 66, 117, 0.95), rgba(0, 30, 54, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
    padding: 30px;
    z-index: 2;
}

.category-card:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-content {
    color: white;
    text-align: center;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.overlay-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.action-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
    background-color: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Expo Highlights Section */
.expo-highlights {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.highlights-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.highlights-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlights-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.special-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
    background: linear-gradient(to bottom, var(--primary-color), #00264d);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    text-align: center;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.event-details p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.event-time {
    display: inline-block;
    color: #666;
    font-size: 0.85rem;
    background-color: rgba(10, 66, 117, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Join Us CTA Section */
.join-us-cta {
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.join-us-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.join-us-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

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

.join-us-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.register-btn, .download-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-btn {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.register-btn:hover {
    background-color: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.download-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.download-btn i {
    margin-left: 8px;
}

/* UWU EXPO 2025 Flyer Section */
.expo-flyer-section {
    padding: 50px 0;
    background-color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.expo-flyer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10, 66, 117, 0.05) 0%, rgba(10, 66, 117, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.expo-flyer-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.flyer-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.flyer-image.full-width {
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: subtle-float 5s ease-in-out infinite;
}

.flyer-image.full-width:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.responsive-flyer {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

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

/* Ticket Section */
.tickets {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.tickets h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.ticket-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ticket-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    min-width: 200px;
    flex: 1 1 200px;
    max-width: 300px;
}

.ticket-type {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #001e36;
    color: var(--light-text);
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

/* Content Body Section */
.content_body {
    padding: 60px 0;
    background-color: #fff;
}

.content_body h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.content_body h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.content_body h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.content_body p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.content_body ul, .content_body ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.content_body li {
    margin-bottom: 10px;
}

.content_body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content_body .container {
    max-width: 1000px;
}

.content_body .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.content_body .col {
    flex: 1;
    padding: 0 15px;
    min-width: 300px;
}

.content_body .card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Gallery Styles */
.uwu-expo-gallery {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.gallery-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 220px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.gallery-info {
    text-align: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: var(--accent-color);
}

.fade-in {
    animation: fadeIn 0.5s;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .header-text {
        text-align: center;
        margin: 15px 0;
    }
    
    .logo-container {
        margin: 5px 0;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-content h2 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .slideshow-container-alt {
        max-height: 400px;
    }
    
    .slide-alt {
        height: 400px;
    }
    
    .countdown-section.enhanced {
        padding: 50px 0;
    }
    
    .countdown-section.enhanced .countdown-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .countdown-section.enhanced .countdown-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .countdown-section.enhanced .countdown-box {
        width: 120px;
        height: 120px;
    }
    
    .countdown-section.enhanced .countdown-number {
        font-size: 2.2rem;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        z-index: 1000;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-top: 1px solid rgba(255,255,255,0.1);
        order: 3;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 20px;
        text-align: left;
        font-size: 16px;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 30, 54, 0.8);
        border-radius: 0;
        border-top: none;
        border-left: 4px solid var(--accent-color);
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 2px;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px 25px;
        background-color: transparent;
        font-size: 14px;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
        padding-left: 30px;
    }
    
    .dropdown-item.active {
        background-color: rgba(255,255,255,0.15);
        color: var(--accent-color);
        font-weight: 600;
        border-left: 4px solid var(--accent-color);
    }
    
    .event-details-enhanced {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .event-card {
        width: 280px;
        height: 280px;
    }
    
    .what-to-expect-new {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .event-item {
        flex-direction: column;
    }
    
    .event-date {
        padding: 10px;
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .register-btn, .download-btn {
        width: 100%;
        text-align: center;
    }
    
    .vc-message-container {
        flex-direction: column;
    }
    
    .vc-image {
        padding: 30px 30px 0 30px;
    }
    
    .vc-content {
        padding: 0 30px 30px 30px;
    }
    
    .vc-text {
        border-left: none;
        padding-left: 0;
    }
    
    .expo-flyer-section {
        padding: 40px 0;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .content_body {
        padding: 40px 0;
    }
    
    .content_body h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .content_body .row {
        flex-direction: column;
    }
    
    .content_body .col {
        padding: 0 10px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .slideshow-container-alt {
        max-height: 300px;
    }
    
    .slide-alt {
        height: 300px;
    }
    
    .countdown-section.enhanced .countdown-container {
        gap: 15px;
    }
    
    .countdown-section.enhanced .countdown-box {
        width: 100px;
        height: 100px;
    }
    
    .countdown-section.enhanced .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-section.enhanced .countdown-label {
        font-size: 0.8rem;
    }
    
    .what-to-expect-new {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        height: auto;
        min-height: 380px;
    }
    
    .expo-highlights {
        padding: 25px 20px;
    }
    
    .highlights-header {
        flex-direction: column;
        text-align: center;
    }
    
    .highlights-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .highlights-header h3 {
        font-size: 1.5rem;
    }
    
    .join-us-cta h3 {
        font-size: 1.8rem;
    }
    
    .join-us-cta p {
        font-size: 1.1rem;
    }
    
    .vc-message-section h2 {
        font-size: 1.8rem;
    }
    
    .vc-image img {
        width: 150px;
        height: 150px;
    }
    
    .vc-content {
        padding: 0 20px 20px 20px;
    }
    
    .expo-flyer-section {
        padding: 30px 0;
    }
    
    .gallery-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        height: 160px;
    }
    
    .content_body {
        padding: 30px 0;
    }
    
    .content_body h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content_body .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 16px 15px;
        font-size: 15px;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .dropdown-item:hover {
        padding-left: 25px;
    }
    
    .menu-toggle {
        padding: 12px;
        font-size: 1.6rem;
    }
    
    .vc-image img {
        width: 120px;
        height: 120px;
    }
    
    .vc-text p {
        font-size: 0.95rem;
    }
    
    .content_body h3 {
        font-size: 1.3rem;
    }
    
    .content_body p {
        font-size: 0.95rem;
    }
}


/* Committees Page Styles - Enhanced UI */

/* Hero Section */
.committees-hero {
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    color: var(--light-text);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.committees-hero::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="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

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

.committees-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-divider {
    position: relative;
    height: 20px;
    margin: 30px 0;
}

.hero-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 2px;
    background-color: var(--accent-color);
}

.hero-divider .divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Committees Content Section */
.committees-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    position: relative;
}

.committees-content::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 66, 117, 0.03) 0%, rgba(10, 66, 117, 0) 70%);
    border-radius: 50%;
}

.committees-content::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Committees Grid */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Committee Card */
.committee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    transform: translateY(0);
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Committee Header */
.committee-header {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid #eee;
}

.committee-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.committee-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.committee-card:hover .committee-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.committee-icon.finance {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.committee-icon.fundraising {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.committee-icon.transport {
    background: linear-gradient(135deg, #17a2b8, #007bff);
}

.committee-icon.food {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
}

.committee-icon.publicity {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.committee-title h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.committee-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Committee Content */
.committee-content {
    padding: 30px;
}

.committee-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-style: italic;
}

/* Special Highlights */
.team-leader-highlight,
.chairman-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-leader-highlight i,
.chairman-highlight i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.team-leader-highlight span,
.chairman-highlight span {
    color: var(--primary-color);
    font-weight: 500;
}

/* Members List */
.members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.member-item:hover {
    background: white;
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-item.team-leader,
.member-item.chairman {
    background: linear-gradient(135deg, rgba(10, 66, 117, 0.1), rgba(10, 66, 117, 0.05));
    border-left: 4px solid var(--primary-color);
}

.member-item.media-coordinator {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-left: 4px solid var(--accent-color);
}

.member-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.member-item.team-leader .member-avatar,
.member-item.chairman .member-avatar {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.member-item.media-coordinator .member-avatar {
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
}

.member-info {
    flex: 1;
}

.member-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.member-info span {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Committee Stats */
.committee-stats {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

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

.stat-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Call to Action Section */
.committees-cta {
    background: linear-gradient(135deg, var(--primary-color), #00264d);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.committees-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.committees-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
}

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

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.cta-btn.primary:hover {
    background-color: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

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

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

.committee-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease forwards;
}

.committee-card[data-aos-delay="100"] {
    animation-delay: 0.1s;
}

.committee-card[data-aos-delay="200"] {
    animation-delay: 0.2s;
}

.committee-card[data-aos-delay="300"] {
    animation-delay: 0.3s;
}

.committee-card[data-aos-delay="400"] {
    animation-delay: 0.4s;
}

.committee-card[data-aos-delay="500"] {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .committees-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .committee-card {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .committees-hero {
        padding: 60px 0 40px;
    }
    
    .committees-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .committees-content {
        padding: 60px 0;
    }
    
    .section-intro h2 {
        font-size: 2.2rem;
    }
    
    .section-intro p {
        font-size: 1.1rem;
    }
    
    .committees-grid {
        gap: 25px;
    }
    
    .committee-header {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .committee-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .committee-content {
        padding: 25px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .committees-cta {
        padding: 40px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .committees-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .committee-header {
        padding: 20px;
    }
    
    .committee-content {
        padding: 20px;
    }
    
    .committee-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .committee-title h3 {
        font-size: 1.4rem;
    }
    
    .member-item {
        padding: 12px;
    }
    
    .member-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .member-info strong {
        font-size: 1rem;
    }
    
    .member-info span {
        font-size: 0.85rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .committees-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .committees-hero,
    .committee-stats,
    .committees-cta {
        break-inside: avoid;
    }
    
    .committee-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .committees-hero::before,
    .committees-content::before,
    .committees-content::after,
    .committees-cta::before,
    .committees-cta::after {
        display: none;
    }
}

/* Subtle Tickets Section Enhancement - Replace existing .tickets in styles.css */

.tickets {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
}

.tickets h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tickets h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.tickets p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.ticket-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.ticket-option {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    border-radius: 15px;
    min-width: 200px;
    flex: 1 1 200px;
    max-width: 300px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.ticket-option:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ticket-option::before {
    content: '🎫';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
}

.ticket-type {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.ticket-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
    position: relative;
}

.ticket-price::before {
    content: 'Rs. ';
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tickets {
        padding: 50px 0;
    }
    
    .tickets h2 {
        font-size: 2.2rem;
    }
    
    .ticket-options {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .ticket-option {
        max-width: 280px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .tickets h2 {
        font-size: 2rem;
    }
    
    .ticket-option {
        padding: 30px 25px;
    }
    
    .ticket-price {
        font-size: 1.8rem;
    }
}

/* VC Image Mobile Width Fix - Add to your styles.css */

/* Mobile responsive adjustments for VC image */
@media screen and (max-width: 992px) {
    .vc-image img {
        width: 75%;
        height: auto;
        max-width: 300px;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

@media screen and (max-width: 768px) {
    .vc-image img {
        width: 75%;
        height: auto;
        max-width: 250px;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

@media screen and (max-width: 576px) {
    .vc-image img {
        width: 75%;
        height: auto;
        max-width: 200px;
        min-width: 180px;
        aspect-ratio: 1;
        object-fit: cover;
    }
}


.event-grid  .event-card {

    width: 100%;

  
    perspective: 1000px;

}

/* Rounded VC Image Fix - Add to your styles.css or faculty-events.css */

/* Make VC/Dean image rounded */
.vc-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    margin-bottom: 20px;
}

/* Mobile responsive adjustments for rounded VC image */
@media screen and (max-width: 992px) {
    .vc-image img {
        width: 85%;
        height: auto;
        max-width: 300px;
        aspect-ratio: 1;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media screen and (max-width: 768px) {
    .vc-image img {
        width: 85%;
        height: auto;
        max-width: 250px;
        aspect-ratio: 1;
        border-radius: 50%;
        object-fit: cover;
    }
}

@media screen and (max-width: 576px) {
    .vc-image img {
        width: 85%;
        height: auto;
        max-width: 200px;
        min-width: 180px;
        aspect-ratio: 1;
        border-radius: 50%;
        object-fit: cover;
    }
}


/* Mobile Slider Width Fix - Add to your styles.css */

/* Ensure slider fits full width on all devices */
.slideshow-container-alt {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-height: 600px;
}

.slide-alt {
    display: none;
    width: 100%;
    height: 600px;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .slideshow-container-alt {
        max-height: 400px;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .slide-alt {
        height: 400px;
        width: 100%;
    }
    
    .slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 576px) {
    .slideshow-container-alt {
        max-height: 300px;
        width: 100%;
    }
    
    .slide-alt {
        height: 300px;
        width: 100%;
    }
    
    .slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}


/* Smooth Mobile Navigation Fix - Add to your styles.css */

/* Enhanced mobile dropdown functionality */
@media (max-width: 768px) {
    
    /* Larger touch targets for mobile */
    .nav-link {
        width: 100%;
        padding: 18px 20px;
        text-align: left;
        font-size: 16px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Better dropdown toggle styling */
    .dropdown-toggle {
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dropdown-toggle::after {
        content: "▼";
        font-size: 0.8rem;
        margin-left: auto;
        transition: transform 0.3s ease;
        padding: 5px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
        color: var(--accent-color);
    }
    
    /* Smoother dropdown menu */
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 30, 54, 0.95);
        border-radius: 0;
        border-top: none;
        border-left: 3px solid var(--accent-color);
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 400px;
        animation: slideDownFade 0.4s ease forwards;
    }
    
    @keyframes slideDownFade {
        from {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            max-height: 400px;
            transform: translateY(0);
        }
    }
    
    /* Better dropdown items */
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px 25px;
        background-color: transparent;
        font-size: 14px;
        min-height: 50px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: rgba(255,255,255,0.15);
        color: white;
        padding-left: 35px;
        transform: none;
    }
    
    .dropdown-item.active {
        background-color: rgba(255,255,255,0.2);
        color: var(--accent-color);
        font-weight: 600;
        border-left: 4px solid var(--accent-color);
    }
    
    /* Visual feedback for touch */
    .dropdown-toggle:active,
    .nav-link:active {
        background-color: rgba(255,255,255,0.1);
        transform: scale(0.98);
    }
    
    /* Better spacing and visual hierarchy */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Improved menu toggle button */
    .menu-toggle {
        padding: 15px;
        font-size: 1.6rem;
        min-height: 54px;
        min-width: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: rgba(255,255,255,0.15);
        transform: scale(1.05);
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
    }
    
    /* Smooth menu appearance */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--primary-color);
        z-index: 1000;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
        order: 3;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 80vh;
        animation: slideDownMenu 0.4s ease forwards;
    }
    
    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Extra smooth interactions for very small screens */
@media (max-width: 480px) {
    .nav-link {
        font-size: 15px;
        padding: 16px 15px;
        min-height: 50px;
    }
    
    .dropdown-item {
        font-size: 13px;
        padding: 14px 20px;
        min-height: 46px;
    }
    
    .dropdown-item:hover {
        padding-left: 30px;
    }
    
    .menu-toggle {
        padding: 12px;
        font-size: 1.4rem;
        min-height: 50px;
        min-width: 50px;
    }
}

/* Add touch-friendly focus states */
.nav-link:focus,
.dropdown-item:focus,
.menu-toggle:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Prevent text selection on navigation elements */
.nav-link,
.dropdown-item,
.menu-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Lightbox Z-Index Fix - Add to your styles.css */

/* Fix lightbox z-index to appear above navigation */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999; /* Higher than navigation (1000) */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    z-index: 10000;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001; /* Highest z-index */
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .close-lightbox {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 576px) {
    .close-lightbox {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-content {
        max-width: 98%;
        max-height: 90%;
    }
}

/* Additional Lightbox CSS Fix - Add to your styles.css */

/* Ensure close button is properly clickable */
.close-lightbox {
    position: fixed; /* Changed from absolute to fixed */
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.close-lightbox:active {
    transform: scale(0.95);
}

/* Ensure lightbox content doesn't interfere with close button */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 75%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Improve lightbox overlay */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(3px);
}

/* Gallery item cursor */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Mobile specific improvements */
@media (max-width: 768px) {
    .close-lightbox {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-content {
        max-width: 90%;
        max-height: 80%;
    }
}

@media (max-width: 480px) {
    .close-lightbox {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}