/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #141414;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --navbar-height: 150px;
    --nav-marquee-height: 36px;
    --header-total-height: calc(var(--navbar-height) + var(--nav-marquee-height));
}

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

/* Navigation - Force white background and black text across all pages */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    z-index: 1100;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Ensure navigation stays white on all pages */
nav.navbar,
.navbar,
header .navbar {
    background: #ffffff !important;
}

/* Force all navigation links to be black */
.navbar .nav-link,
.navbar a.nav-link,
nav .nav-link {
    color: #000000 !important;
}

.navbar .dropdown-link,
.navbar a.dropdown-link,
nav .dropdown-link {
    color: #000000 !important;
}

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

.nav-left {
    /* flex: 0 0 220px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nav-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

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

/* Logo Image Styling */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
}

.nav-link {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #e50914;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e50914;
    transition: width 0.3s ease;
}

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

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
}

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #000000 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link:hover {
    background: rgba(229, 9, 20, 0.1);
    color: #e50914;
    padding-left: 30px;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #e50914;
    transition: width 0.3s ease;
}

.dropdown-link:hover::before {
    width: 8px;
}

/* Chevron icon animation */
.dropdown .nav-link i {
    transition: transform 0.3s ease;
    margin-left: 5px;
    font-size: 10px;
}

/* Sub-navbar Styling */
.sub-navbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 8px 80px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-right > .sub-navbar {
    padding: 0;
    background: transparent;
    border-bottom: none;
}

.nav-right > .sub-navbar .language-dropdown {
    margin-left: 10px;
}

.nav-left .hamburger {
    margin-left: 8px;
}

.nav-marquee {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
}

.nav-marquee marquee {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.header-spacer {
    width: 100%;
    height: var(--header-total-height);
}

.sub-navbar-button {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sub-navbar-button:hover {
    background-color: #f40612;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.social-container {
    display: flex;
    gap: 10px;
    margin-right: 10px;
}

.social-icon {
    color: #e50914;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 6px;
    border-radius: 50%;
}

.social-icon:hover {
    color: #f40612;
    transform: scale(1.1);
    background: rgba(229, 9, 20, 0.1);
}

/* Language Dropdown Styling */
.language-dropdown {
    position: relative;
    margin-left: 20px;
}

.language-dropdown select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #000000;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 35px;
}

.language-dropdown select:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-dropdown select:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.language-dropdown select option {
    background: #ffffff;
    color: #000000;
    padding: 8px 12px;
}

/* Google Translate Widget Styling */
#google-translate-element {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 5px;
}

.goog-te-gadget {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}

.goog-te-gadget .goog-te-combo {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 6px !important;
    color: #000000 !important;
    padding: 6px 10px !important;
    font-size: 14px !important;
    min-width: 120px !important;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger menu active state - transforms to close icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .nav-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.mobile-menu-overlay {
    position: fixed;
    top: var(--header-total-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-total-height));
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1050;
    display: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: fixed;
    top: calc(var(--header-total-height) + 10px);
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close span {
    display: block;
    transform: translateY(-1px);
}

.mobile-menu-close.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.mobile-menu-close:focus-visible {
    outline: 2px solid #e50914;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu-close {
        display: flex;
        opacity: 0;
        transform: scale(0.85);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-banner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 1;
}

/* Individual slide backgrounds are now handled by inline styles in HTML */

.slide-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.banner-portraits {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1;
}

.portrait-left,
.portrait-right {
    width: 200px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.portrait-left:hover,
.portrait-right:hover {
    transform: scale(1.05);
}

.portrait-left img,
.portrait-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    border: none;
    pointer-events: none;    .footer {
      background: #f5f5f5; /* Light background, change as needed */
      color: #000 !important;
    }
    
    .footer .footer-content,
    .footer .footer-section,
    .footer .footer-logo-image,
    .footer .footer-section h4,
    .footer .footer-section ul li a,
    .footer .footer-bottom,
    .footer .social-links a i {
      color: #000 !important;
    }
    
    .footer .social-links a {
      color: #000 !important;
    }
    
    .footer .footer-section ul li a:hover {
      color: #e50914; /* Optional: highlight on hover */
    }    .footer {
      background: #f5f5f5; /* Light background, change as needed */
      color: #000 !important;
    }
    
    
    
    
    
   
    
    .footer .footer-content,
    .footer .footer-section,
    .footer .footer-logo-image,
    .footer .footer-section h4,
    .footer .footer-section ul li a,
    .footer .footer-bottom,
    .footer .social-links a i {
      color: #000 !important;
    }
    
    .footer .social-links a {
      color: #000 !important;
    }
    
    .footer .footer-section ul li a:hover {
      color: #e50914; /* Optional: highlight on hover */
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 53, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.video-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.video-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-cta {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-cta:hover {
    background: #ffffff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Section Styles */
section {
    /* padding: 50px 0; */
    position: relative;
}

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

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #e50914;
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: #141414;
    padding: 80px 0;
}

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

.about-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.about-card i {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.about-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Organization Overview */
.org-overview {
    margin-bottom: 60px;
}

.org-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.org-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.org-content-centered .org-text p {
    text-align: center;
}

.org-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.org-text p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.org-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e50914;
    line-height: 1;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Activities Section */
.activities-section {
    background: #0f0f0f;
    padding: 80px 0;
}

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

.stat-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

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

.activity-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.activity-tab {
    background: transparent;
    color: #cccccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-tab.active,
.activity-tab:hover {
    background: #e50914;
    border-color: #e50914;
    color: #ffffff;
}

/* Activity Accordion Styles */
.activity-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

/* Contact Info Centering */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

/* Marquee Styling */
marquee {
    background: linear-gradient(135deg, #e50914, #ff6b6b);
    color: white;
    padding: 8px 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
    border-bottom: 3px solid #fff;
    position: relative;
    /* margin-top: 75px; */
    width: 100%;
    z-index: 10;
}

marquee:before {
    /* content: "📢"; */
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}

.contact-details {
    text-align: center;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: #fff;
}

.contact-details p {
    margin-bottom: 5px;
    color: #ccc;
    font-size: 1.1rem;
}

.contact-details span {
    color: #888;
    font-size: 0.9rem;
}

/* Legal Services Styling */
.legal-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-item p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.service-item li {
    color: #aaa;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 20px;
}

.service-item li:before {
    content: "✓";
    color: #e50914;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.aims-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.aims-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.aims-list {
    list-style: disc;
    margin: 0;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aims-list li {
    color: #f5f5f5;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 10px;
}

.aims-list li::marker {
    color: #e50914;
    font-size: 1.2rem;
}

/* Photo Gallery Redesign */
.photo-gallery-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e50914;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Categories */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.gallery-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-tab:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: linear-gradient(135deg, #e50914, #ff6b6b);
    border-color: #e50914;
    color: #fff;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.gallery-tab.active:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.gallery-tab.active:hover:before {
    left: 100%;
}

/* Photo Gallery Grid */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

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

.gallery-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.gallery-btn {
    background: linear-gradient(135deg, #e50914, #ff6b6b);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #e50914);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.gallery-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.gallery-btn:hover:before {
    left: 100%;
}

/* Gallery Features */
.gallery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.gallery-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.gallery-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
}

.gallery-feature i {
    font-size: 3rem;
    color: #e50914;
    margin-bottom: 20px;
    display: block;
}

.gallery-feature h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-feature p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #aaa;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    color: #e50914;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Search and Filter */
.search-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #e50914;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.2);
}

.search-input::placeholder {
    color: #888;
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Contribute Section */
.contribute-section {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.contribute-section h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contribute-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contribute-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contribute-btn {
    background: linear-gradient(135deg, #e50914, #ff6b6b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contribute-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #e50914);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
}

.contribute-btn.secondary {
    background: transparent;
    border: 2px solid #e50914;
    color: #e50914;
}

.contribute-btn.secondary:hover {
    background: #e50914;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .gallery-categories {
        gap: 10px;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
}

.accordion-item.hidden {
    opacity: 0.3;
    transform: scale(0.95);
    display: none !important;
}

.accordion-item:hover {
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(229, 9, 20, 0.1);
}

.accordion-header.active {
    background: rgba(229, 9, 20, 0.15);
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
}

.accordion-year {
    background: #e50914;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(229, 9, 20, 0.3);
}

.accordion-title {
    flex: 1;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    color: #e50914;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content.active {
    max-height: 200px;
    padding: 20px 25px;
}

.accordion-content p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Category-specific styling */
.accordion-item[data-category="social"] .accordion-year {
    background: #e50914;
}

.accordion-item[data-category="cultural"] .accordion-year {
    background: #ff6b35;
}

.accordion-item[data-category="sports"] .accordion-year {
    background: #4CAF50;
}

.accordion-item[data-category="member"] .accordion-year {
    background: #2196F3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .accordion-year {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 50px;
    }
    
    .accordion-title {
        font-size: 14px;
    }
    
    .accordion-content.active {
        padding: 15px 20px;
    }
    
    .accordion-content p {
        font-size: 14px;
    }
}

.timeline-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 0 30px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.timeline-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Category-specific colors */
.timeline-item[data-category="social"] .timeline-year {
    background: #4CAF50;
}

.timeline-item[data-category="cultural"] .timeline-year {
    background: #FF9800;
}

.timeline-item[data-category="sports"] .timeline-year {
    background: #2196F3;
}

.timeline-item[data-category="member"] .timeline-year {
    background: #9C27B0;
}

/* Founding Members Section */
.founding-members-section {
    margin-top: 80px;
    padding: 60px 0;
    background: #000000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.founding-members-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/image/Brown Minimalist.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
    border-radius: 20px;
}

.founding-members-grid {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founding-member-category {
    background: transparent;
    border: none;
    padding: 0;
}

.founding-member-category h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e50914;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.member-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}

.member-item:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: #e50914;
    color: #ffffff;
    transform: translateX(5px);
}

.member-name {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.member-designation {
    display: block;
    color: #e50914;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Member Status Section */
.member-status-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.member-status-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-item.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-item.inactive {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid #FF9800;
}

.status-item.terminated {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

.member-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Current Committee Styles */
.current-committee {
    margin-top: 20px;
}

.leadership-tier,
.secretariat-tier {
    margin-bottom: 25px;
}

.leadership-tier h4,
.secretariat-tier h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e50914;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.committee-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.committee-member:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 8px 16px rgba(229, 9, 20, 0.2);
}

.committee-member strong {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-top: 8px;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e50914;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
    transition: all 0.3s ease;
}

.committee-member:hover .member-image {
    border-color: #f40612;
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
    transform: scale(1.05);
}

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

.committee-member:hover .member-image img {
    transform: scale(1.1);
}

.member-position {
    display: block;
    color: #e50914;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Committee Timeline Styles */
.committee-timeline {
    margin-top: 20px;
}

.timeline-decade {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 4px solid #e50914;
}

.timeline-decade h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.year-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.year-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.year-group:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.year-group .year {
    color: #e50914;
    font-weight: 600;
    font-size: 0.9rem;
}

.year-group .president {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Committee Actions */
.committee-actions,
.legal-actions,
.financial-actions {
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.committee-btn,
.legal-btn,
.financial-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.committee-btn:hover,
.legal-btn:hover,
.financial-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

/* Past Committee Highlights */
.past-committee-highlights {
    margin-top: 15px;
}

.past-committee-highlights .highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.past-committee-highlights .highlight-item:last-child {
    border-bottom: none;
}

.highlight-year {
    color: #e50914;
    font-weight: 600;
}

.highlight-name {
    color: #cccccc;
}

/* Legal Services */
.legal-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #cccccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.service-item i {
    color: #e50914;
}

/* Financial Documents */
.financial-documents {
    margin-top: 15px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
    transition: all 0.3s ease;
}

.doc-item:hover {
    color: #ffffff;
    padding-left: 10px;
}

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

.doc-item i {
    color: #e50914;
}

/* Enhanced About Cards */
.card-list {
    list-style: none;
    margin-top: 15px;
}

.card-list li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e50914;
    font-weight: bold;
}

.timeline {
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    /* background: rgba(255, 255, 255, 0.05); */
    border-radius: 8px;
}

.timeline-year {
    background: #e50914;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
}

.timeline-content {
    color: #cccccc;
    flex: 1;
}

.committee-members {
    margin-top: 20px;
}

.member-preview {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.member-preview img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #e50914;
}

.member-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.member-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.governance-docs {
    margin-top: 20px;
}

.doc-link {
    display: flex;
    align-items: center;
    color: #e50914;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.doc-link:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: #e50914;
}

.doc-link i {
    margin-right: 10px;
}

.financial-highlights {
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.highlight-label {
    color: #cccccc;
}

.highlight-value {
    color: #e50914;
    font-weight: 600;
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-preview .gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

/* Members Section */
.members-section {
    background: #141414;
    padding: 80px 0;
}

.members-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

.tab-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #e50914;
    color: #ffffff;
    border-color: #e50914;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Progressive Style for New Members */
.progressive-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 50px;
}

.progress-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.progress-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.progress-tracker {
    position: relative;
    margin-bottom: 40px;
}

.progress-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e50914 0%, rgba(229, 9, 20, 0.3) 100%);
    z-index: 1;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: #ffffff;
}

.progress-step.completed .step-check {
    opacity: 1;
}

.step-indicator {
    position: relative;
    margin-right: 30px;
    z-index: 2;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: #2d2d2d;
    border: 3px solid #e50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e50914;
    transition: all 0.3s ease;
    position: relative;
}

.progress-step.active .step-circle {
    background: #e50914;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

.step-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.2rem;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
}

.step-btn.disabled {
    background: #2d2d2d;
    color: #666666;
    cursor: not-allowed;
}

.step-btn.disabled:hover {
    transform: none;
    background: #2d2d2d;
}

.progress-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.progress-btn.primary {
    background: #e50914;
    color: #ffffff;
}

.progress-btn.primary:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

.progress-btn.secondary {
    background: transparent;
    color: #e50914;
    border: 2px solid #e50914;
}

.progress-btn.secondary:hover {
    background: #e50914;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

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

.action-btn.primary {
    background: #e50914;
    color: #ffffff;
}

.action-btn.secondary {
    background: transparent;
    color: #e50914;
    border: 1px solid #e50914;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

/* Login Section */
.login-section {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 40px;
}

.login-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.login-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input {
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.3);
}

.form-group input::placeholder {
    color: #999999;
}

.login-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.login-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

/* Dashboard */
.member-dashboard {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
}

.member-dashboard h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: #ffffff;
}

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

.dashboard-card {
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.dashboard-card i {
    font-size: 2rem;
    color: #e50914;
    margin-bottom: 12px;
}

.dashboard-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.dashboard-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Casting Section */
.casting-section {
    background: #141414;
    padding: 80px 0;
}

.casting-search {
    margin-bottom: 50px;
}

.search-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.filter-select,
.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.filter-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.search-input::placeholder {
    color: #999999;
}

.search-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

.member-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.member-photo {
    text-align: center;
    margin-bottom: 20px;
}

.member-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e50914;
}

.member-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
    color: #ffffff;
}

.member-info p {
    text-align: center;
    color: #e50914;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: rgba(229, 9, 20, 0.2);
    color: #e50914;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.contact-btn.phone {
    background: #e50914;
    color: #ffffff;
}

.contact-btn.email {
    background: #ffffff;
    color: #0a0a0a;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Pay Section */
.quickpay-section {
    background: #0f0f0f;
}

.payment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
}

.pay-tab-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pay-tab-btn.active,
.pay-tab-btn:hover {
    background: #e50914;
    color: #ffffff;
}

.pay-tab-content {
    display: none;
}

.pay-tab-content.active {
    display: block;
}

.donation-options {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.donation-type-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6b35;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-type-btn.active,
.donation-type-btn:hover {
    background: #e50914;
    color: #ffffff;
}

.donation-form {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.donation-form.active {
    display: block;
}

.donation-form h3,
.subscription-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #e50914;
}

.payment-form {
    display: grid;
    gap: 20px;
}

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

.otp-btn,
.payment-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.otp-btn:hover,
.payment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.otp-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.subscription-details {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.subscription-details h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e50914;
}

.subscription-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ffffff;
}

.amount {
    font-weight: 700;
    color: #e50914;
}

.due-date {
    font-weight: 600;
    color: #f7931e;
}

/* Notices Section */
.notices-section {
    position: relative;
    overflow: hidden;
    /* background-color: #000000; */
}

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

.notice-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: #e50914;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.notice-date {
    background: #e50914;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.notice-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.notice-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.notice-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #e50914;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #f7931e;
}

/* Contact Section */
.contact-section {
    background: #141414;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e50914;
    margin-top: 5px;
    min-width: 24px;
}

.contact-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 14px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #f7931e;
}

.contact-form {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-group input {
    width: 100%;
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.3);
}

.contact-form .form-group input::placeholder {
    color: #999999;
}

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

.submit-btn {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

textarea {
    resize: vertical;
    min-height: 120px;
    background: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.3);
}

textarea::placeholder {
    color: #999999;
}

/* Gallery Section */
.gallery-section {
    background: #141414;
    padding: 80px 0;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    background: transparent;
    color: #cccccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: #e50914;
    border-color: #e50914;
    color: #ffffff;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 30px 20px 20px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Video Showcase Section */
.video-showcase-section {
    background: #0f0f0f;
    padding: 80px 0;
}

.video-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.video-tab {
    background: transparent;
    color: #cccccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-tab.active,
.video-tab:hover {
    background: #e50914;
    border-color: #e50914;
    color: #ffffff;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.video-item.featured {
    grid-row: span 2;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

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

.video-item.featured .video-thumbnail {
    aspect-ratio: 16/10;
}

.video-thumbnail img,
.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail video {
    background: #000;
    cursor: pointer;
}

.video-thumbnail video::-webkit-media-controls {
    display: flex !important;
}

.video-thumbnail video::-webkit-media-controls-enclosure {
    display: block !important;
}

/* Style the video controls */
.video-thumbnail video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-thumbnail video::-webkit-media-controls-play-button {
    background-color: #e50914;
    border-radius: 50%;
}

.video-item:hover .video-thumbnail img,
.video-item:hover .video-thumbnail video {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-item.featured .play-button {
    width: 100px;
    height: 100px;
}

.play-button:hover {
    background: #e50914;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #ffffff;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-item.featured .play-button i {
    font-size: 2rem;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 20px;
}

.video-info h3,
.video-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-info h3 {
    font-size: 1.3rem;
}

.video-info h4 {
    font-size: 1.1rem;
}

.video-info p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.video-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #999999;
}

/* Testimonials Section */
.testimonials-section {
    background: #141414;
    padding: 80px 0;
}

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

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: #e50914;
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: #cccccc;
    line-height: 1.7;
    font-style: italic;
    font-size: 1rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e50914;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.author-rating {
    display: flex;
    gap: 2px;
}

.author-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Enhanced Notices */
.notice-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.notice-category {
    background: #e50914;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-attachment {
    color: #e50914;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-attachment i {
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Footer Logo Image Styling */
.footer-logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.footer-section p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e50914;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e50914;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #000000;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Large screens and ultra-wide displays */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .slide-content h1 {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .founding-members-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .activity-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop and large tablets */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .org-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activity-timeline {
        max-width: 900px;
    }
    
    .founding-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-left,
    .nav-right,
    .nav-links-row {
        width: 100%;
    }

    .nav-links-row {
        justify-content: center;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activity-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founding-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        margin: 0 20px;
    }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
    .nav-container {
        gap: 12px;
        align-items: stretch;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
        padding: 0 12px;
    }

    .nav-right {
        width: 100%;
    }

    .nav-links-row {
        justify-content: center;
        gap: 10px;
    }

    /* Sub-navbar Mobile Optimization */
    .sub-navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 20px !important;
        background-color: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sub-navbar-button {
        margin: 0 5px !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
        border-radius: 4px !important;
        white-space: nowrap;
        flex: 1;
        text-align: center;
        max-width: 120px;
        min-width: 100px;
    }
    
    .social-container {
        display: flex !important;
        gap: 8px !important;
        margin-right: 0 !important;
        order: 3;
        justify-content: center;
    }
    
    .social-icon {
        font-size: 1rem !important;
        padding: 8px;
        background: rgba(229, 9, 20, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background: rgba(229, 9, 20, 0.2);
        transform: scale(1.1);
    }
    
    .language-dropdown {
        margin-left: 0 !important;
        order: 2;
        flex-shrink: 0;
    }
    
    .language-dropdown select {
        min-width: 100px !important;
        font-size: 12px !important;
        padding: 6px 8px !important;
    }
    
    /* Marquee Mobile Optimization */
    .nav-marquee {
        top: var(--navbar-height);
    }

    .nav-marquee marquee {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
        padding: 10px;
        border-radius: 6px;
        touch-action: manipulation;
    }
    
    .hamburger:active {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        right: 0;
        top: var(--header-total-height);
        flex-direction: column;
        background: #ffffff !important;
        width: 100%;
        height: calc(100vh - var(--header-total-height));
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-menu li {
        margin: 10px 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.9);
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin: 0;
        min-width: auto;
        width: 100%;
        display: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        margin-top: 10px;
        max-height: 500px;
        overflow: visible;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }

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

    .dropdown-link {
        padding: 15px 20px;
        font-size: 14px;
        color: #ccc;
        display: block;
        text-align: left;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .dropdown-link:hover {
        background: rgba(229, 9, 20, 0.1);
        color: #e50914;
        border-left-color: #e50914;
        padding-left: 20px;
    }

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

    /* Dropdown arrow for mobile */
    .dropdown .nav-link i {
        transition: transform 0.3s ease;
        margin-left: 5px;
        font-size: 12px;
    }

    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }

    .logo-image {
        height: 40px;
    }

    .footer-logo-image {
        height: 60px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .banner-portraits {
        display: none;
    }

    /* Adjust hero section for fixed marquee */
    .hero {
        padding-top: 50px;
    }

    .video-content h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .org-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .org-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-card {
        padding: 25px 20px;
    }

    .founding-members-section {
        margin-top: 60px;
        padding: 40px 0;
    }

    .founding-members-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .founding-member-category {
        padding: 25px 20px;
    }

    .member-list {
        gap: 10px;
    }

    .member-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .activity-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .activity-categories {
        gap: 10px;
        flex-wrap: wrap;
    }

    .activity-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .activity-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 30px;
    }

    .timeline-year {
        min-width: 60px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0 20px;
        padding: 20px;
    }

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

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

    .progressive-container {
        padding: 0 20px;
    }

    .progress-step {
        flex-direction: column;
        text-align: center;
    }

    .step-indicator {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .progress-line {
        display: none;
    }

    .progress-header h3 {
        font-size: 1.5rem;
    }

    .progress-header p {
        font-size: 1rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .progress-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .search-filters {
        flex-direction: column;
    }

    .filter-select,
    .search-input {
        min-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-tabs,
    .members-tabs,
    .donation-options {
        flex-direction: column;
        align-items: center;
    }

    .casting-results {
        grid-template-columns: 1fr;
    }

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

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

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Sub-navbar for small mobile devices */
    .sub-navbar {
        padding: 8px 15px !important;
        flex-direction: row !important;
        gap: 8px;
    }
    
    .sub-navbar-button {
        padding: 6px 8px !important;
        font-size: 11px !important;
        margin: 0 3px !important;
        max-width: 100px;
        min-width: 80px;
        flex: 1;
    }
    
    .social-container {
        order: 2 !important;
        gap: 6px !important;
    }
    
    .social-icon {
        font-size: 0.9rem !important;
        padding: 6px !important;
    }
    
    .language-dropdown {
        order: 3 !important;
        align-self: center;
    }
    
    .language-dropdown select {
        min-width: 90px !important;
        font-size: 11px !important;
        padding: 5px 6px !important;
    }

    .logo-image {
        height: 35px;
    }

    .footer-logo-image {
        height: 50px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .org-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-card {
        padding: 20px 15px;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    .founding-member-category {
        padding: 20px 15px;
    }

    .founding-member-category h3 {
        font-size: 1.1rem;
    }

    .member-item {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .activity-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .activity-categories {
        gap: 8px;
    }

    .activity-tab {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .timeline-year {
        min-width: 50px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .timeline-content {
        margin: 0 15px;
        padding: 15px;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .hero-controls {
        bottom: 20px;
    }

    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }

    .about-card,
    .member-step,
    .dashboard-card,
    .member-card,
    .notice-card {
        padding: 20px;
    }

    .login-section,
    .member-dashboard,
    .donation-form,
    .subscription-form,
    .contact-form {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-top: 0;
    }

    /* New sections responsive */
    .org-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .org-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-item.featured {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .founding-members-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founding-member-category {
        padding: 20px;
    }

    .member-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .activity-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .activity-categories {
        gap: 10px;
    }

    .activity-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .activity-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-left: 30px;
    }

    .timeline-year {
        min-width: 60px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0 20px;
        padding: 20px;
    }

    /* Improve mobile navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
    }

    /* Improve mobile forms */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improve mobile buttons */
    .cta-button,
    .progress-btn,
    .action-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px; /* Touch-friendly size */
    }

    /* Improve mobile cards */
    .about-card,
    .member-card,
    .notice-card,
    .testimonial-card {
        margin-bottom: 20px;
    }

    /* Improve mobile gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }

    .gallery-item {
        aspect-ratio: 4/3;
        height: auto;
        min-height: 200px;
    }

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

    .gallery-overlay {
        padding: 20px 15px 15px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Improve mobile video grid */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-item.featured {
        grid-row: span 1;
    }

    /* Improve mobile testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* Improve mobile notices */
    .notices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .notice-card {
        flex-direction: column;
        text-align: center;
    }

    .notice-date {
        margin-bottom: 15px;
        align-self: center;
    }

    .gallery-categories,
    .video-categories {
        gap: 10px;
        margin: 30px 0;
        padding: 0 15px;
    }

    .gallery-tab,
    .video-tab {
        padding: 8px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Gallery Section Mobile Improvements */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .gallery-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    /* New sections responsive styles */
    .status-indicators {
        gap: 10px;
    }

    .status-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .member-actions {
        flex-direction: column;
        align-items: center;
    }

    .legal-services {
        gap: 10px;
    }

    .service-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .committee-actions,
    .legal-actions,
    .financial-actions {
        margin-top: 15px;
    }

    .committee-btn,
    .legal-btn,
    .financial-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Committee responsive styles */
    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .committee-member {
        padding: 15px 10px;
        font-size: 0.85rem;
    }

    .member-image {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .committee-member strong {
        font-size: 0.9rem;
    }

    .member-position {
        font-size: 0.75rem;
    }

    .timeline-decade {
        padding: 15px;
        margin-bottom: 20px;
    }

    .timeline-decade h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .year-group {
        padding: 8px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .year-group .year {
        font-size: 0.8rem;
    }

    .year-group .president {
        font-size: 0.8rem;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    /* Sub-navbar for extra small devices */
    .sub-navbar {
        padding: 6px 10px !important;
        flex-direction: row !important;
        gap: 6px;
    }
    
    .sub-navbar-button {
        padding: 5px 6px !important;
        font-size: 10px !important;
        margin: 0 2px !important;
        max-width: 90px;
        min-width: 70px;
    }
    
    .social-container {
        gap: 4px !important;
    }
    
    .social-icon {
        font-size: 0.8rem !important;
        padding: 4px !important;
    }
    
    .language-dropdown select {
        min-width: 80px !important;
        font-size: 10px !important;
        padding: 4px 5px !important;
    }

   

    .social-icon {
        font-size: 1.2rem;
    }
    .slide-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .about-card {
        padding: 15px 10px;
    }

    .founding-member-category {
        padding: 15px 10px;
    }

    .member-item {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .activity-tab {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .timeline-content {
        margin: 0 10px;
        padding: 12px;
    }

    .timeline-content h4 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    .stat-card {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .banner-portraits {
        display: none;
    }

    .video-content h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .footer-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-controls,
    .scroll-to-top,
    .hamburger {
        display: none !important;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .slide-content h1 {
        color: #000 !important;
    }

    .section-header h2 {
        color: #000 !important;
    }

    .about-card,
    .timeline-content,
    .member-item {
        border: 1px solid #ccc !important;
        background: #fff !important;
        color: #000 !important;
    }
}

/* Touch and accessibility improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    .about-card:hover,
    .member-card:hover,
    .notice-card:hover,
    .testimonial-card:hover,
    .timeline-content:hover {
        transform: none;
        box-shadow: none;
    }

    .about-card:active,
    .member-card:active,
    .notice-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }

    .cta-button:hover,
    .progress-btn:hover,
    .action-btn:hover {
        transform: none;
    }

    .cta-button:active,
    .progress-btn:active,
    .action-btn:active {
        transform: scale(0.95);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .slide {
        transition: none;
    }

    .fade-in,
    .slide-in-left,
    .slide-in-right {
        opacity: 1;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .about-card,
    .member-card,
    .notice-card,
    .testimonial-card,
    .timeline-content {
        border: 2px solid #ffffff;
    }

    .nav-link,
    .activity-tab,
    .gallery-tab,
    .video-tab {
        border: 2px solid #ffffff;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme, but ensure consistency */
    body {
        background: #141414;
        color: #ffffff;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

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

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

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #e50914;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e50914;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    marquee {
        font-size: 0.8rem;
        padding: 5px 6px;
        /* top: 156px; */
    }

    .hero {
        padding-top: 45px;
    }

    /* Gallery Grid Mobile Optimization */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }

    .gallery-item {
        min-height: 180px;
        border-radius: 8px;
    }

    .gallery-overlay {
        padding: 15px 12px 12px;
    }

    .gallery-overlay h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .gallery-overlay p {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .gallery-categories {
        gap: 8px;
        margin: 30px 0;
        padding: 0 10px;
    }

    .gallery-tab {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    /* Mobile Dropdown for Small Screens */
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.95);
        border-radius: 8px;
        margin: 5px 0;
    }

    .dropdown-link {
        padding: 12px 15px;
        font-size: 13px;
    }

    .dropdown.active .dropdown-menu {
        margin-top: 5px;
    }
}

/* Additional Mobile Optimizations for Hero and Video Sections */
@media (max-width: 768px) {
    /* Hero Section Mobile Optimization */
    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .hero-banner {
        height: 100vh;
        position: relative;
    }

    .banner-slider {
        height: 100%;
    }

    .slide {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

    .slide-content {
        max-width: 100%;
        padding: 0 10px;
        z-index: 2;
        position: relative;
    }

    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .slide-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 25px;
        min-width: 160px;
    }

    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .slide-bg::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    }

    .banner-portraits {
        display: none;
    }

    .hero-controls {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 3;
    }

    .prev-btn,
    .next-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .prev-btn:hover,
    .next-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }

    /* Video Section Mobile Optimization */
    .video-section {
        height: 70vh;
        min-height: 400px;
    }

    .video-container {
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: none;
        pointer-events: none;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 53, 0.4));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .video-content {
        text-align: center;
        max-width: 100%;
        padding: 20px;
    }

    .video-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .video-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .video-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 25px;
        min-width: 160px;
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: #ffffff;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .video-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }
}

/* Founding President Section */
.founding-president-section {
    margin-top: 60px;
}

.founding-president-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.president-photo {
    flex: 0 0 300px;
    text-align: center;
}

.president-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.president-photo img:hover {
    transform: scale(1.02);
}

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

.photo-caption h4 {
    color: #e50914;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.photo-caption p {
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
}

.president-speech {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.speech-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #e50914;
    padding-bottom: 15px;
}

.speech-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.speech-date {
    color: #e50914;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.speech-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.speech-content p {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.speech-content p:first-child::first-letter {
    font-size: 24px;
    font-weight: 600;
    color: #e50914;
    float: left;
    line-height: 1;
    margin-right: 8px;
    margin-top: 4px;
}

.speech-signature {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-line {
    width: 200px;
    height: 2px;
    background: #e50914;
    margin: 0 0 10px auto;
}

.speech-signature p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

.speech-signature strong {
    color: #e50914;
    font-weight: 600;
}

/* Responsive Design for Founding President */
@media (max-width: 768px) {
    .founding-president-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .president-photo {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .president-photo img {
        height: 300px;
    }
    
    .president-speech {
        padding: 20px;
    }
    
    .speech-header h3 {
        font-size: 20px;
    }
    
    .speech-content p {
        font-size: 14px;
    }
}

/* Download Button Styles */
.download-btn {
    color: #e50914 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 12px 24px !important;
    border: 2px solid #e50914 !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    background: transparent !important;
}

.download-btn:hover {
    background: #e50914 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}









.custom-slider-container {
    position: relative;
    width: 90%;
    margin: 50px auto;
    overflow: hidden;
  }
  
  .custom-slider-wrapper {
    overflow: hidden;
  }
  
  .custom-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }
  
  .custom-slider-card {
    flex: 0 0 calc(100% / 5);
    padding: 5px;
  }
  
  .custom-slider-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* Navigation Arrows */
  .custom-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s;
  }
  
  .custom-slider-nav:hover {
    background: rgba(255,255,255,1);
  }
  
  .custom-slider-prev {
    left: 10px;
  }
  
  .custom-slider-next {
    right: 10px;
  }
  
  /* Responsive cards */
  @media (max-width: 1200px) {
    .custom-slider-card {
      flex: 0 0 calc(100% / 4);
    }
  }
  
  @media (max-width: 900px) {
    .custom-slider-card {
      flex: 0 0 calc(100% / 3);
    }
  }
  
  @media (max-width: 600px) {
    .custom-slider-card {
      flex: 0 0 calc(100% / 2);
    }
  }
  
  @media (max-width: 400px) {
    .custom-slider-card {
      flex: 0 0 100%;
    }
  }