:root {
    --bg-color: #f3f1f9;
    --primary-accent: #c3f73a;
    --secondary-accent: #4b0082;
    --text-color: #333333;
    --light-text: #8b8b9f;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-accent);
}

.btn {
    display: inline-block;
    background-color: var(--primary-accent);
    color: var(--secondary-accent);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.thankyou-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(rgba(243, 241, 249, 0.9), rgba(255, 255, 255, 0.9)), url('./img/aXiTR9.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-accent);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s both;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-accent);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 70%;
    height: 4px;
    background-color: var(--primary-accent);
    margin: 0.5rem auto 0;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-accent);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-accent);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-accent);
}

.service-card .price {
    font-weight: 700;
    color: var(--secondary-accent);
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.reason-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.reason-card:hover img {
    transform: scale(1.1);
}

/* Why Us Section Icons */
.icon-expertise {
    background: url('./img/expertise.svg') no-repeat center center;
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto 1rem;
}

.icon-personalized, .icon-technology, .icon-transparent, 
.icon-compliance, .icon-support {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto 1rem;
    background-color: #f3f1f9;
    border-radius: 50%;
    position: relative;
}

.icon-personalized::before, .icon-technology::before, .icon-transparent::before,
.icon-compliance::before, .icon-support::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #c3f73a;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.icon-personalized::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}

.icon-technology::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h18V4H4c-1.1 0-2 .9-2 2v11H0v3h14v-3H4V6zm19 2h-6c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-1 9h-4v-7h4v7z'/%3E%3C/svg%3E");
}

.icon-transparent::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

.icon-compliance::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.icon-support::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.07-.11.14-.11.22v2c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h1v5c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5h1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2c0-.08-.05-.15-.11-.22zM16 5c2.69 2.47 3 5.41 3 7.22V14h-1v-1.22c0-1.92-.29-4.15-2-6.08V5zm-4 0c1.82 1.61 2 3.64 2 5.22V14h-2v-2h-2v2H8v-3.78c0-1.58.18-3.61 2-5.22V5zm-2 10h-2v-2h2v2zm10 0h-2v-2h2v2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.07-.11.14-.11.22v2c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h1v5c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5h4v5c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5h1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2c0-.08-.05-.15-.11-.22zM16 5c2.69 2.47 3 5.41 3 7.22V14h-1v-1.22c0-1.92-.29-4.15-2-6.08V5zm-4 0c1.82 1.61 2 3.64 2 5.22V14h-2v-2h-2v2H8v-3.78c0-1.58.18-3.61 2-5.22V5zm-2 10h-2v-2h2v2zm10 0h-2v-2h2v2z'/%3E%3C/svg%3E");
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-accent);
    opacity: 0.3;
    line-height: 1;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
}

.client-title {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Contact Form Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input, .form-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-input:focus, .form-select:focus {
    border-color: var(--secondary-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background-color: white;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item:target .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item:target .faq-question::after {
    content: '-';
}

/* Footer */
footer {
    background-color: var(--secondary-accent);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-accent);
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    margin-right: 1rem;
}

/* Policy Pages */
.policy-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 8rem 0 5rem;
}

.policy-content h1 {
    color: var(--secondary-accent);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: var(--secondary-accent);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    padding-left: 2rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thankyou {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thankyou h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-accent);
}

.thankyou p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.check-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.check-icon::after {
    content: '';
    width: 40px;
    height: 20px;
    border-left: 5px solid var(--secondary-accent);
    border-bottom: 5px solid var(--secondary-accent);
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
} 