/* Extracted from landingpageV1.html */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
    padding-top: 110px;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1001;
    transition: all 0.3s ease;
}
.topbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.topbar.hidden {
    transform: translateY(-100%);
}
.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    transition: color 0.3s ease;
}
.topbar.scrolled .topbar-item {
    color: rgba(10, 10, 10, 0.9);
}
.topbar-icon {
    font-size: 14px;
}
.topbar-social {
    display: flex;
    gap: 10px;
}
.topbar-social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.topbar.scrolled .topbar-social-link {
    background: rgba(10, 10, 10, 0.1);
    color: #333;
}
.topbar-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}
.topbar.scrolled .topbar-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.topbar-item a {
    color: inherit;
    text-decoration: none;
}
body.dark .topbar-item {
    color: rgba(255, 255, 255, 0.95);
}
body.light .topbar-item {
    color: rgba(10, 10, 10, 0.9);
}
@media (prefers-color-scheme: dark) {
    .topbar-item {
        color: rgba(255, 255, 255, 0.95);
    }
}
@media (prefers-color-scheme: light) {
    .topbar-item {
        color: rgba(10, 10, 10, 0.9);
    }
}

.navbar {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.logo-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    border: none;
}
.navbar.scrolled .logo-icon {
    background: transparent;
    border: none;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #fff;
    transition: color 0.3s ease;
}
.navbar.scrolled .logo-title {
    color: #333;
}
.logo-subtitle {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
}
.navbar.scrolled .logo-subtitle {
    color: #666;
    opacity: 0.9;
}
.navbar-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.navbar-link {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.navbar.scrolled .navbar-link {
    color: rgba(10, 10, 10, 0.8);
}
.navbar-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}
.navbar.scrolled .navbar-link::after {
    background: linear-gradient(90deg, #667eea, #764ba2);
}
.navbar-link:hover,
.navbar-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}
.navbar.scrolled .navbar-link:hover,
.navbar.scrolled .navbar-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}
.navbar-link:hover::after,
.navbar-link.active::after {
    width: 40px;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar.scrolled .navbar-toggle span {
    background: #333;
}
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero.has-video .bg-animation {
    display: none;
}
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}
.circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}
.circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}
.circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}
.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: none;
    border: none;
    animation: logoAppear 1s ease-out;
}
@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}
h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}
.subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 300;
    letter-spacing: 1px;
}
.tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.6s both, glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0% {
        text-shadow: 0 0 0 rgba(102, 126, 234, 0);
    }
    50% {
        text-shadow: 0 0 12px rgba(102, 126, 234, 0.35);
    }
    100% {
        text-shadow: 0 0 0 rgba(102, 126, 234, 0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}
.btn {
    padding: 18px 45px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn span {
    position: relative;
    z-index: 1;
}
.btn-primary {
    background: #fff;
    color: #667eea;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
.scroll-indicator::before {
    content: "↓";
    font-size: 32px;
    opacity: 0.7;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.announcement-section {
    padding: 100px 20px;
    background: #fff;
}
.announcement-section .section-title {
    color: #333;
}
.announcement-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 60px;
}
.announcement-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    padding-right: 140px;
    border-radius: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}
.announcement-featured::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}
.announcement-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}
.announcement-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.announcement-badge.urgent {
    background: rgba(255, 59, 48, 0.9);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
.announcement-date {
    position: absolute;
    top: 40px;
    right: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.date-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.date-month {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 1px;
}
.announcement-featured h3 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    font-weight: 700;
}
.announcement-featured p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}
.announcement-link:hover {
    gap: 12px;
}
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.announcement-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.announcement-item:hover {
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}
.announcement-item-date {
    min-width: 70px;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.date-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.date-my {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 5px;
    letter-spacing: 0.5px;
}
.announcement-item-content {
    flex: 1;
}
.announcement-badge-small {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.announcement-badge-small.info {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}
.announcement-badge-small.warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
}
.announcement-badge-small.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}
.announcement-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
}
.announcement-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 14px;
}
.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}
.read-more:hover {
    gap: 8px;
}
.view-all-container {
    text-align: center;
    margin-top: 50px;
}
.btn-view-all {
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}
.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    gap: 15px;
}
.btn-view-all .arrow {
    transition: transform 0.3s ease;
}
.btn-view-all:hover .arrow {
    transform: translateX(5px);
}

.activities-section {
    padding: 100px 20px;
    background: #f8f9fa;
}
.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.activity-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}
.activity-card.large {
    grid-column: span 2;
}
.activity-card.wide {
    grid-column: span 2;
}
.activity-media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.activity-card.large .activity-media,
.activity-card.wide .activity-media {
    height: 400px;
}
.activity-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.activity-card:hover .activity-media img {
    transform: scale(1.1);
}
.activity-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container {
    position: relative;
}
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}
.activity-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #667eea;
    transition: all 0.3s ease;
    padding-left: 5px;
}
.activity-card:hover .play-button {
    transform: scale(1.1);
    background: #fff;
}
.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
}
.activity-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 2;
    display: inline-block;
    max-width: calc(100% - 24px);
    overflow-wrap: break-word;
    white-space: normal;
}
.activity-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.activity-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
}
.activity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}
.activity-date {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services {
    padding: 100px 20px;
    background: #fff;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #667eea;
    font-weight: 700;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}
.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.service-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.stats-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}
.section-title-dark {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}
.stats-subtitle {
    text-align: center;
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 60px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stats-section#daily-summary .stats-grid-6 {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.stats-section#daily-summary .stat-card {
    padding: 24px 16px;
    border-radius: 16px;
}
.stats-section#daily-summary .stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.stats-section#daily-summary .stat-number {
    font-size: 28px;
}
.stats-section#daily-summary .stat-label {
    font-size: 12px;
    letter-spacing: 0.5px;
}
@media (max-width: 1280px) {
    .stats-section#daily-summary .stats-grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    .stats-section#daily-summary .stats-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .stats-section#daily-summary .stats-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
.subsection-title {
    text-align: center;
    font-size: 32px;
    margin: 60px 0 40px 0;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}
.subsection-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}
.stats-grid-documents {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}
.stat-card-doc {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-card-doc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}
.stat-card-doc:hover::before {
    left: 100%;
}
.stat-card-doc:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}
.stat-icon-doc {
    font-size: 40px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.stat-number-doc {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label-doc {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}
.stat-info {
    font-size: 13px;
    opacity: 0.75;
    color: #e0e0e0;
    font-style: italic;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}
.stat-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.chart-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.chart-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}
.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.popup-overlay.active {
    display: flex;
}
.popup-modal {
    background: #fff;
    color: #333;
    border-radius: 16px;
    max-width: 800px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ef4444;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.popup-content {
    display: block;
    max-height: 70vh;
}
.popup-content img,
.popup-content video {
    display: block;
    width: 100%;
    height: auto;
}
.popup-caption {
    padding: 12px 16px;
    font-weight: 600;
    border-top: 1px solid #eee;
}
.bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.bar-label {
    min-width: 150px;
    font-weight: 600;
    font-size: 16px;
}
.bar-wrapper {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #48c6ef 0%, #6f86d6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    transition: width 1.5s ease-out;
    width: 0 !important;
}
.bar-fill.animated {
    width: var(--bar-width) !important;
}
.bar-value {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}
.contact-card p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 8px;
}
.contact-card a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.contact-card a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.contact-label {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
}
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.social-icon {
    font-size: 20px;
}
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.form-header {
    margin-bottom: 30px;
}
.form-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}
.form-header p {
    color: #666;
    font-size: 15px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    gap: 15px;
}
.submit-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.btn-submit:hover .submit-icon {
    transform: translateX(5px);
}
.map-container {
    margin-top: 80px;
}
.map-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}
.arrow-up {
    font-size: 28px;
    font-weight: 700;
    animation: bounce-up 2s ease-in-out infinite;
}
@keyframes bounce-up {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.footer {
    background: #0a0a0a;
    padding: 60px 20px 30px;
    color: #fff;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}
.logo-small {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    backdrop-filter: blur(10px);
}
.logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}
.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-logo p {
    opacity: 0.7;
    font-size: 16px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}
.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .topbar {
        display: none;
    }
    .navbar {
        top: 0;
    }
    .navbar-container {
        padding: 12px 20px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .logo-title {
        font-size: 16px;
    }
    .navbar-toggle {
        display: flex;
    }
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .navbar-menu.active {
        max-height: 400px;
    }
    .navbar-link {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    h1 {
        font-size: 42px;
    }
    .subtitle {
        font-size: 20px;
    }
    .tagline {
        font-size: 16px;
    }
    .btn {
        padding: 15px 35px;
        font-size: 16px;
    }
    .section-title,
    .section-title-dark {
        font-size: 36px;
    }
    .bar-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .bar-label {
        min-width: auto;
    }
    .chart-container {
        padding: 20px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stats-grid-documents {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-card-doc {
        padding: 25px 15px;
    }
    .stat-number-doc {
        font-size: 28px;
    }
    .stat-icon-doc {
        font-size: 32px;
    }
    .subsection-title {
        font-size: 24px;
    }
    .announcement-container {
        grid-template-columns: 1fr;
    }
    .announcement-featured {
        padding: 30px;
    }
    .announcement-date {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
        padding: 10px 15px;
    }
    .date-number {
        font-size: 24px;
    }
    .announcement-featured h3 {
        font-size: 22px;
    }
    .announcement-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .announcement-item:hover {
        transform: translateY(-5px);
    }
    .announcement-item-date {
        min-width: auto;
        width: fit-content;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .form-header h3 {
        font-size: 24px;
    }
    .social-links {
        grid-template-columns: 1fr;
    }
    .map-title {
        font-size: 24px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-column ul li a:hover {
        padding-left: 0;
    }
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .arrow-up {
        font-size: 24px;
    }
    .activities-grid {
        grid-template-columns: 1fr;
    }
    .activity-card.large,
    .activity-card.wide {
        grid-column: span 1;
    }
    .activity-media {
        height: 220px;
    }
    .activity-card.large .activity-media,
    .activity-card.wide .activity-media {
        height: 280px;
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
    font-size: 20px;
    line-height: 44px;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-to-top:hover {
    background: var(--accent);
}
