/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Header and navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(12, 12, 18, 0.9);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #5bdfdf;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5bdfdf;
}

/* Hero section */
.hero {
    height: 100vh;
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 18, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #5bdfdf;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #5bdfdf;
    color: #121212;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #4acdcd;
    transform: translateY(-2px);
}

/* Section styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #5bdfdf;
    margin: 0 auto 3rem;
}

/* About section */
.about-section {
    background-color: #121212;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.about-image {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.about-image img {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.values {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    text-align: center;
}

.value-item {
    flex: 1;
    max-width: 150px;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: #1c1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5bdfdf;
    font-size: 1.5rem;
}

.value-title {
    margin-bottom: 0.5rem;
    color: #5bdfdf;
}

/* Services section */
.services-section {
    background-color: #0c0c12;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #1c1c24;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #5bdfdf;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.service-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Testimonials section */
.testimonials-section {
    background-color: #121212;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #1c1c24;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    background-color: #2a2a36;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5bdfdf;
    font-weight: bold;
    font-size: 1.5rem;
}

.testimonial-info h3 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #e0e0e0;
    font-style: italic;
}

/* FAQ section */
.faq-section {
    background-color: #0c0c12;
}

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

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #2a2a36;
}

.faq-question {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #5bdfdf;
}

.faq-answer {
    padding: 0 0 1.5rem;
    color: #b0b0b0;
    display: none;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact section */
.contact-section {
    background-color: #121212;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background-color: #1c1c24;
    border: 1px solid #2a2a36;
    border-radius: 4px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #5bdfdf;
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.consent-checkbox input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #5bdfdf;
    color: #121212;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #4acdcd;
}

/* Footer */
footer {
    background-color: #0c0c12;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5bdfdf;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-contact {
    margin-bottom: 0.8rem;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5bdfdf;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #1c1c24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    color: #5bdfdf;
}

.social-icon:hover {
    background-color: #5bdfdf;
    color: #0c0c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a36;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 992px) {
    .about-content,
    .form-row {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .values {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .value-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.5rem 1rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .value-item {
        flex: 0 0 100%;
    }

    .nav-links {
        display: none;
    }
}