/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 40rem;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4A90E2;
    color: white;
}

.cookie-btn.decline {
    background: #f0f0f0;
    color: #666;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-0.2rem);
}

/* Header */
.header {
    background: black;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fcfcfc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4A90E2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #4e86d0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/bg.png') no-repeat center center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 80rem;
    margin: 0 auto;
    border-radius: 60px 60px 0px 0px;
background: #3CA8F5;
}

.hero-content h2 {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button {
    background: #4A90E2;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-button:hover {
    background: #357abd;
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2rem rgba(74, 144, 226, 0.3);
}

/* Services Section */
.services {
    padding: 10rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #333;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background: #9dc5ea;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 25rem;
    max-width: 28rem;
}

.service-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 20rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4A90E2;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.5rem;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: white;
}

.about-content {
    display: flex;
    gap: 6rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.about-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-width: 30rem;
}

.about-image {
    flex: 1;
    min-width: 15rem;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.why-choose {
    padding: 10rem 0;
    background: #4A90E2;
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
}

.why-content {
    max-width: 90rem;
    margin: 0 auto;
}

.why-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    text-align: center;
}

.why-features {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    flex: 1;
    min-width: 25rem;
    text-align: center;
}

.feature h4 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature p {
    font-size: 1.6rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Projects Section */
.projects {
    padding: 10rem 0;
    background: #f8f9fa;
}

.projects h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #333;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.project-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 30rem;
    max-width: 35rem;
}

.project-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 20rem;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2.5rem;
}

.project-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #4A90E2;
}

.project-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 10rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 6rem;
    color: #333;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border: 0.1rem solid #e9ecef;
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: #4A90E2;
    color: white;
    border: none;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #357abd;
}

.faq-question::after {
    content: '+';
    font-size: 2.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 20rem;
    padding: 2rem 2.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1.6rem;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info > p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
    background: white;
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 0.2rem solid #e9ecef;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 0.3rem rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

.submit-btn {
    width: 100%;
    background: #4A90E2;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(74, 144, 226, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 6rem 0 3rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 25rem;
}

.footer-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4A90E2;
}

.footer-section h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4A90E2;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 0.1rem solid #555;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav .container {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        gap: 2rem;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 3.6rem;
    }

    .hero-content p {
        font-size: 1.6rem;
    }

    .services-grid,
    .projects-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .project-card {
        max-width: 100%;
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        justify-content: center;
    }

    .why-features {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        padding: 3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content h2 {
        font-size: 3.2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .services,
    .about,
    .why-choose,
    .projects,
    .faq,
    .contact {
        padding: 6rem 0;
    }
}
.mobile-menu-btn{
    display: none!important;
}