/* Global Styles */
:root {
    --primary: #2E1A47;
    --accent: #CCFF00;
    --secondary: #9FB4C7;
    --white: #FFFFFF;
    --gray: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
    background-color: rgba(46, 26, 71, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    margin: 0 15px;
    color: var(--white);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Create a CSS-only mobile menu toggle using the :target selector */
#navMenu:target {
    left: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), rgba(46, 26, 71, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Pvhasf.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
    clip-path: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--primary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--gray);
    color: var(--primary);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature h3 {
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.services-title {
    color: var(--white);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--secondary);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

/* Certificates Section */
.certificates {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--primary);
}

.certificates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.certificate {
    padding: 20px;
    border-radius: 10px;
    background-color: var(--gray);
    transition: all 0.3s ease;
}

.certificate:hover {
    transform: scale(1.05);
}

.certificate img {
    max-width: 80%;
    height: auto;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--gray);
    color: var(--primary);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.faq-title {
    color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--secondary);
    padding: 15px 20px;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--accent);
}

.accordion-header a {
    color: var(--primary);
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.accordion-content {
    background-color: rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-content.active {
    max-height: 300px;
    padding: 20px;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background-color: var(--gray);
    color: var(--primary);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.error-message {
    background-color: #ffeeee;
    color: #cc0000;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #cc0000;
}

.error-message ul {
    margin-left: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
}

/* Footer */
footer {
    background-color: #1a0f2a;
    padding: 50px 0 20px;
    color: var(--white);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none; /* Hidden by default, shown via JavaScript */
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-btn {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 10px;
}

.policy-content h1 {
    margin-bottom: 30px;
    color: var(--primary);
}

.policy-content h2 {
    margin: 30px 0 15px;
    color: var(--primary);
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 15px;
    margin-left: 20px;
}

/* Thank You Page */
.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 180px 20px 150px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 10px;
    text-align: center;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thank-you-content h1 {
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 2.5rem;
}

.thank-you-content p {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.thank-you-content .btn {
    margin-top: 20px;
    display: inline-block;
}

.fancy-border {
    border: 8px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fancy-border::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--accent));
    background-size: 300% 300%;
    animation: gradientBG 8s ease infinite;
    border-radius: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background-color: var(--primary);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    #navMenu:target {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero::after {
        width: 100%;
        opacity: 0.2;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: 150px 20px 100px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature, .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .cookie-popup {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
} 