/* Base styles and reset */
:root {
    --primary-bg: #1A1E3F;
    --accent: #B6FF00;
    --text: #FAFAF5;
    --secondary-gradient: linear-gradient(135deg, #4A1B5B 0%, #2E2F7B 100%);
    --glow: 0 0 15px rgba(182, 255, 0, 0.7);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}
option {
    color:#554683
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-shadow: var(--glow);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--text);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--primary-bg);
}

.btn:hover::before {
    left: 0;
}

.btn--accent {
    background-color: var(--accent);
    color: var(--primary-bg);
}

.btn--accent:hover {
    box-shadow: var(--glow);
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.section__subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 30, 63, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    max-width: 150px;
}

.menu-toggle {
    display: none;
}

.menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 2000;
}

.menu-btn__line {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.menu-btn__line:nth-child(1) {
    top: 0;
}

.menu-btn__line:nth-child(2) {
    top: 9px;
}

.menu-btn__line:nth-child(3) {
    top: 18px;
}

.menu-toggle:checked ~ .menu-btn .menu-btn__line:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle:checked ~ .menu-btn .menu-btn__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked ~ .menu-btn .menu-btn__line:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__link {
    color: var(--text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/dTOze.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 30, 63, 0.7);
}

.hero__content {
    
    margin: auto;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__title span {
    color: var(--accent);
    display: block;
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about {
    background: var(--secondary-gradient);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(182, 255, 0, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.about__img {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about__content h2 {
    text-align: left;
}

.about__content h2::after {
    left: 0;
    transform: none;
}

/* Features Section */
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.feature__icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature__title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background: var(--primary-bg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.service__img {
    height: 200px;
    overflow: hidden;
}

.service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service:hover .service__img img {
    transform: scale(1.05);
}

.service__content {
    padding: 20px;
}

.service__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service__button {
    margin-top: 20px;
}

/* Form Section */
.form-section {
    background: var(--secondary-gradient);
    position: relative;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    border-radius: 5px;
    transition: var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(182, 255, 0, 0.2);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' fill='none'%3E%3Cpath d='M4 6L0 0h8L4 6z' fill='%23B6FF00'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form__checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form__checkbox {
    width: auto;
    margin-right: 10px;
}

.form__submit {
    margin-top: 10px;
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    overflow: hidden;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    position: relative;
}

.testimonial::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    opacity: 0.1;
    color: var(--accent);
}

.testimonial__text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
}

.testimonial__author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.testimonial__author-name {
    font-weight: 700;
}

.testimonial__author-position {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Blog Section */
.blog {
    background: var(--primary-bg);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.blog-card__img {
    height: 200px;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__content {
    padding: 20px;
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.blog-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card__excerpt {
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer__col h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer__col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(26, 30, 63, 0.95);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-popup__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-popup__content p {
    margin-right: 20px;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
}

.legal-page__content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 5px;
}

.legal-page h1 {
    margin-bottom: 30px;
    color: var(--accent);
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p, .legal-page ul, .legal-page ol {
    margin-bottom: 20px;
}

.legal-page ul, .legal-page ol {
    padding-left: 20px;
}

.legal-page ul li, .legal-page ol li {
    margin-bottom: 10px;
}

/* Thank You Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-page__container {
    margin: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-page__content {
    max-width: 600px;
    width: 100%;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.thanks-page__icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 30px;
    text-shadow: var(--glow);
    line-height: 1;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(182, 255, 0, 0.1);
    border-radius: 50%;
}

.thanks-page__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    color: var(--accent);
}

.thanks-page__text {
    margin-bottom: 30px;
    max-width: 90%;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.thanks-page__button {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services__grid,
    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 30, 63, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        transition: right 0.5s ease;
        z-index: 1000;
    }
    
    .menu-toggle:checked ~ .nav {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav__link {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .services__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-popup__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup__content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .thanks-page {
        padding: 60px 15px;
    }
    
    .thanks-page__title {
        font-size: 2rem;
    }
    
    .thanks-page__text {
        font-size: 1rem;
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .section__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .legal-page__content {
        padding: 20px;
    }
    
    .thanks-page {
        padding: 40px 15px;
    }
    
    .thanks-page__content {
        padding: 30px 15px;
    }
    
    .thanks-page__icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
        height: 60px;
        width: 60px;
    }
    
    .thanks-page__title {
        font-size: 1.8rem;
    }
    
    .thanks-page__button {
        min-width: 80%;
        padding: 10px 15px;
    }
} 