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

html, body {
    font-size: 100%;
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: #0d0d1a;
}

a {
    transition: 0.2s all;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -ms-transition: 0.2s all;
    text-decoration: none;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(13,13,26,0.98) 0%, rgba(20,20,45,0.98) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3), 0 0 60px rgba(0, 255, 255, 0.1);
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
}

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

.logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(138, 43, 226, 0.6);
    font-family: 'Poppins', sans-serif;
}

.logo h2 span {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.9), 0 0 30px rgba(0, 255, 255, 0.5);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.2rem;
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    transition: none;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(135deg, #8a2be2, #00ffff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
    background: rgba(138, 43, 226, 0.4);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
    opacity: 1;
}

.mobile-toggle {
    display: none;
    color: #00ffff;
    font-size: 1.8rem;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.page-wrapper {
    min-height: 100vh;
    padding-top: 70px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 40%, #0d1a2e 70%, #0a0d1a 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.2) 0%, transparent 60%);
    animation: bgPulse 8s ease-in-out infinite;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url(../images/dott.png);
    opacity: 0.05;
    animation: gridMove 20s linear infinite;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 800px;
    z-index: 0;
    opacity: 0.4;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.5));
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.4);
}

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

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    animation: float 15s infinite;
    opacity: 0.6;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -2s;
    background: #8a2be2;
    box-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: -6s;
    background: #ff0080;
    box-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: -8s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2, #ff0080);
    color: #fff;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: glowBadge 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(255, 0, 128, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes glowBadge {
    0%, 100% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(255, 0, 128, 0.3); }
    50% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.7), 0 0 60px rgba(255, 0, 128, 0.5); }
}

.hero-content h1 {
    font-size: 4.8rem;
    color: #fff;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(138, 43, 226, 0.6), 0 0 60px rgba(138, 43, 226, 0.4);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.8rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2, #ff0080);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.7), 0 10px 30px rgba(255, 0, 128, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(138, 43, 226, 0.8), transparent);
}

.stat-item:first-child::before {
    display: none;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

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

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

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: #00ffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.section-header.light h2 {
    color: #fff;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-section {
    background: #0d0d1a;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-card {
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(20,20,45,0.9));
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3), 0 10px 30px rgba(0,0,0,0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.about-card-main {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
}

.about-card-main .about-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8a2be2, #00ffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
    transform: rotate(45deg);
}

.about-icon i {
    font-size: 1.8rem;
    color: #fff;
    transform: rotate(-45deg);
}

.about-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card h4 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

.gallery-section {
    background: #0a0d15;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.gallery-item:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.gallery-overlay i {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.features-section {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(20,20,45,0.9), rgba(13,13,26,0.9));
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #00ffff);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-card:hover {
    background: rgba(30, 30, 60, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    opacity: 0.2;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 0.9rem;
}

.news-section {
    background: #0d0d1a;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: linear-gradient(145deg, rgba(26,26,46,0.9), rgba(20,20,45,0.9));
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.news-card-featured {
    grid-column: span 1;
    background: linear-gradient(135deg, #8a2be2, #ff0080);
    border: none;
}

.news-card-featured:hover {
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
}

.news-date {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.day {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.news-card-featured .day {
    color: #fff;
    text-shadow: none;
}

.month {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-tag {
    display: inline-block;
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.news-card-featured .news-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

.news-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.news-link {
    color: #00ffff;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    color: #fff;
    gap: 0.8rem;
}

.contact-section {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d0d1a 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #00ffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.contact-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

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

.contact-item p a {
    color: #00ffff;
}

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

.contact-form-wrapper {
    background: linear-gradient(145deg, rgba(26,26,46,0.95), rgba(20,20,45,0.95));
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(13,13,26,0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    background: rgba(20,20,45,0.9);
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8a2be2, #ff0080);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.6), 0 10px 30px rgba(255, 0, 128, 0.3);
}

.footer {
    background: #0a0d15;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(138, 43, 226, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
    position: relative;
}

.footer-logo h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-logo h2 span {
    color: #00ffff;
}

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

.footer-links {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-social {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    transition: all 0.2s ease;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.footer-social a:hover {
    background: #e94560;
    color: #fff;
    transform: translateY(-3px);
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.lightbox-modal .modal-dialog {
    max-width: 90%;
    max-height: 90vh;
    margin: 5vh auto;
}

.lightbox-modal .modal-content {
    background: #0a0a0a;
    border: none;
    border-radius: 15px;
    position: relative;
}

.lightbox-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    opacity: 0.7;
    z-index: 10;
}

.lightbox-modal .close:hover {
    opacity: 1;
}

.lightbox-modal img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-card-main {
        grid-column: span 2;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a2e;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        height: auto;
        padding: 8rem 0 4rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-card-main {
        grid-column: span 1;
    }
    .features-grid,
    .news-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.policy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.policy-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.policy-logo h2 span {
    color: #e94560;
}

.policy-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-nav a:hover {
    color: #e94560;
}

.policy-content {
    min-height: calc(100vh - 200px);
    background: #0a0a0a;
    padding: 8rem 0 4rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-title {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-tag {
    display: inline-block;
    color: #e94560;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.policy-title h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.policy-section {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.policy-section h2 {
    color: #e94560;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.policy-section h4 {
    color: #fff;
    font-size: 1rem;
    margin: 1.2rem 0 0.8rem;
}

.policy-section p {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.policy-section ul li {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: #e94560;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.policy-section ul li strong {
    color: #fff;
}

.policy-section a {
    color: #e94560;
}

.policy-section a:hover {
    color: #fff;
}

.policy-footer {
    background: #0a0a0a;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.policy-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.policy-footer-logo h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.policy-footer-logo h2 span {
    color: #e94560;
}

.policy-footer-logo p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.policy-footer-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

.policy-footer-links a:hover {
    color: #e94560;
}

.policy-footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.policy-footer-copyright p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .policy-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .policy-title h1 {
        font-size: 2rem;
    }
    .policy-section {
        padding: 1.5rem;
    }
}
