<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d1b2a 100%, #1b263b 100%);
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/img10.webp');
    opacity: 0.3;
    z-index: -1;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: rgba(13, 27, 42, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}
.footer-column {
    flex: 1;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px #00f7ff);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #00f7ff;
    display: block;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav {
    position: relative;
}

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

.planet {
    position: relative;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #6d4c9e 0%, #1b263b 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #00f7ff;
    transition: transform 0.3s ease;
}

.planet a {
    color: #00f7ff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    text-align: center;
}

.planet:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 15px #00f7ff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #00f7ff;
    text-align: right;
    text-shadow: 0 0 3px #00f7ff;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -250px;
        height: 100%;
        width: 250px;
        background: rgba(13, 27, 42, 0.9);
        transition: right 0.3s ease;
    }
    .nav.active {
        right: 0;
        top: 78px;
    }
    .nav-list {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }
    .planet {
        width: 60px;
        height: 60px;
    }
    .planet a {
        font-size: 14px;
    }
    .contact-info {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    min-height: 600px;
    margin-top: 80px;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.5);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00f7ff;
    animation: glow 2s infinite alternate;
}

.hero-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-button {
    padding: 15px 30px;
    background: transparent;
    color: #00f7ff;
    border: 2px solid #00f7ff;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    box-shadow: 0 0 10px #00f7ff;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: #00f7ff;
    color: #1b263b;
    box-shadow: 0 0 20px #00f7ff;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 3px #00f7ff;
}

.dot.active {
    background-color: #00f7ff;
    box-shadow: 0 0 8px #00f7ff;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #00f7ff; }
    to { text-shadow: 0 0 15px #00f7ff; }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    .hero-overlay h1 {
        font-size: 24px;
    }
}

/* About Section */
.about {
    padding: 50px 0;
    position: relative;
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    color: #00f7ff;
    text-shadow: 0 0 5px #00f7ff;
}

.subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 90px;
    color: #9f96ab;
}

.about-constellation {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 30px;
}

.about-block {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    padding: 0px;
    border: 1px solid #00f7ff;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 10px #00f7ff;
    transition: transform 0.3s ease;
}


.about-block:nth-child(1) {
    transform: translateY(50px);
}

.about-block:nth-child(2) {
    transform: translateY(50px);
}

.about-block:nth-child(3) {
    transform: translateY(50px);
}

.about-block:hover {
    transform: translate(0, 0) scale(1.05);
}

.about-block img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.about-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #6d4c9e;
}

.about-block p {
    font-size: 14px;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .about-block {
        width: 100%;
    }
    .about-block:nth-child(1),
    .about-block:nth-child(2),
    .about-block:nth-child(3) {
        transform: translate(0, 0);
    }
}

/* Services Section */
.services {
    padding: 50px 0;
}

.services h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00f7ff;
    text-shadow: 0 0 5px #00f7ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
   row-gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    border: 1px solid #00f7ff;
    border-radius: 15px;
    box-shadow: 0 0 10px #00f7ff;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 20px #00f7ff;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #5c26ad;
}

.service-card p {
    font-size: 14px;
}

.service-card.empty {
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 50px 0;
    text-align: center;
}

.contact h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #00f7ff;
    text-shadow: 0 0 5px #00f7ff;
}

.contact p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border: 1px solid #00f7ff;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px #00f7ff;
}

.contact-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #6d4c9e;
}

.contact-info-card p {
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #00f7ff;
    border: 2px solid #00f7ff;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    box-shadow: 0 0 10px #00f7ff;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #00f7ff;
    color: #1b263b;
    box-shadow: 0 0 20px #00f7ff;
}

/* Accordion Section */
.accordion-section {
    padding: 50px 0;
}

.accordion-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00f7ff;
    text-shadow: 0 0 5px #00f7ff;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background: rgba(255, 255, 255, 0.05);
    color: #00f7ff;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: 1px solid #00f7ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 5px #00f7ff;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px #00f7ff;
}

.accordion-content {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border: 1px solid #00f7ff;
    border-top: none;
}

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

/* Events Section */
.events {
    padding: 50px 0;
}

.events h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    color: #00f7ff;
    text-shadow: 0 0 5px #00f7ff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

.event-card {
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 0px;
    display: flex
;
    gap: 20px;
    text-align: center;
    /* border: 1px solid #00f7ff; */
    border-radius: 0;
    /* box-shadow: 0 0 10px #00f7ff; */
    align-items: center;
}
.event-card img {
    flex: 1;
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: cover;
  
  
}

.event-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size:24px;
    margin-bottom: 5px;
    color: #6d4c9e;
}

.event-card p {
    font-size: 14px;
    padding: 0 20px 0;
}

@media (max-width: 768px) {
    .event-card {
        /* background: rgba(255, 255, 255, 0.05); */
        padding: 0px;
        display: flex
    ;
        gap: 20px;
        text-align: center;
        /* border: 1px solid #00f7ff; */
        border-radius: 0;
        /* box-shadow: 0 0 10px #00f7ff; */
        align-items: center;
        flex-direction: column;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
     background: #0d1b2a52;
    padding: 50px 0;
    position: relative;
}


.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 5px #00f7ff);
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-column h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #00f7ff;
}

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

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    text-shadow: 0 0 5px #00f7ff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 200px;
    border: 1px solid #00f7ff;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #6d4c9e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00f7ff;
    color: #1b263b;
}

.footer-bottom {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 12px;
    margin-bottom: 10px;
}

.policy-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.policy-links a {
    color: #00f7ff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    text-shadow: 0 0 5px #00f7ff;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input {
        width: 100%;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}</pre></body></html>