/* ----- Global Styles ----- */
:root {
    /* Color Variables */
    --dark-blue: #0d1b2a;
    --purple: #3a0ca3;
    --neon-pink: #ff4ecb;
    --neon-yellow: #faff00;
    --light-text: #f1f1f1;
    --white: #ffffff;
    --dark-overlay: rgba(13, 27, 42, 0.9);
    --error-color: #ff4c4c;
    
    /* Gradient Variables */
    --main-gradient: linear-gradient(135deg, var(--dark-blue) 0%, var(--purple) 100%);
    --button-gradient: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon-yellow) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background: var(--main-gradient);
    min-height: 100vh;
    overflow-x: hidden;
}
.policy-content h1{
    text-align: center !important;
}
.policy-content h2{
    text-align: left !important;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    line-height: 1.2;
}

section {
    padding: 80px 0;
}

/* Center all section headings */
section h2 {
    text-align: center;
    margin-bottom: 40px;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-yellow);
}

/* ----- Animations ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--neon-pink);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-yellow);
    }
    100% {
        box-shadow: 0 0 5px var(--neon-pink);
    }
}

/* ----- Header & Navigation ----- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    z-index: 1001;
}

.logo-text {
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-label span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--button-gradient);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--button-gradient);
    color: var(--dark-blue) !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ----- Hero Section ----- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background: var(--main-gradient);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(13, 27, 42, 0.8), rgba(58, 12, 163, 0.7)), url('./img/iVGLBK.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    opacity: 0.1;
    top: -35vw;
    right: -35vw;
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--neon-yellow) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -25vw;
    left: -25vw;
    border-radius: 50%;
    animation: pulse 15s infinite ease-in-out;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeIn 1s ease-out;
    background: var(--button-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.3s;
    animation-fill-mode: both;
    text-align: center;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--dark-blue);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 0.9s;
    animation-fill-mode: both;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--dark-blue);
}

/* ----- About Section ----- */
.about-section {
    background: rgba(13, 27, 42, 0.7);
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ----- Services Section ----- */
.services-section {
    background: var(--dark-blue);
}

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

.service-card {
    background: rgba(58, 12, 163, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 20px;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: var(--neon-pink);
}

.service-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ----- Benefits Section ----- */
.benefits-section {
    background: rgba(13, 27, 42, 0.8);
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(58, 12, 163, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(58, 12, 163, 0.4);
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--button-gradient);
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--neon-pink);
}

/* ----- Process Section ----- */
.process-section {
    background: var(--dark-blue);
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--button-gradient);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 22%;
    background: rgba(58, 12, 163, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--button-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -50px auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-blue);
}

/* ----- Testimonials Section ----- */
.testimonials-section {
    background: rgba(13, 27, 42, 0.8);
}

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

.testimonial-card {
    background: rgba(58, 12, 163, 0.2);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(58, 12, 163, 0.4);
}

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

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 50px;
    font-family: Georgia, serif;
    color: var(--neon-pink);
    opacity: 0.3;
    position: absolute;
    left: -10px;
    top: -20px;
}

.testimonial-author h4 {
    color: var(--neon-yellow);
    margin-bottom: 5px;
}

.testimonial-author p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ----- Contact Form Section ----- */
.contact-section {
    background: var(--dark-blue);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(42 61 81);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: var(--button-gradient);
    opacity: 0.1;
    filter: blur(50px);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: rgba(32, 32, 32, 0.8);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(32, 32, 32, 0.8);
    outline: none;
    box-shadow: 0 0 0 2px var(--neon-pink);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    flex: 1;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--button-gradient);
    color: var(--dark-blue);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.error-message {
    background-color: rgba(255, 76, 76, 0.1);
    border-left: 4px solid var(--error-color);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 0 5px 5px 0;
    animation: fadeIn 0.5s ease;
}

.error-message ul {
    margin: 0;
    padding-left: 20px;
}

.error-message li, 
.error-message p {
    color: var(--error-color);
    margin-bottom: 5px;
}

.error-message li:last-child,
.error-message p:last-child {
    margin-bottom: 0;
}

/* ----- Footer ----- */
.site-footer {
    background: rgba(13, 27, 42, 0.9);
    padding: 70px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--button-gradient);
}

.footer-section.about p {
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--neon-pink);
}

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

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

.footer-section ul li a {
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-pink);
    padding-left: 5px;
}

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

.footer-bottom p {
    opacity: 0.7;
}

/* ----- Cookie Banner ----- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--dark-overlay);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-btn {
    background: var(--button-gradient);
    color: var(--dark-blue);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* ----- Responsive Design ----- */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .process-step {
        width: 45%;
        margin-bottom: 40px;
    }
    
    .process-timeline::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
    
    .nav-toggle-label {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-overlay);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
    }
    
    .nav-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .process-step {
        width: 100%;
    }
    
    .testimonial-card,
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
} 