/* Reset and Base Styles */
html {
    font-size: 1rem; /* 10px base */
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 17px;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 1.2rem 2.4rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background: transparent;
    color: #666;
    padding: 1.2rem 2.4rem;
    border: 0.2rem solid #e5e7eb;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.logo {
    height: 4rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
}

.nav-menu a:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #374151;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, #F0F4F8 0%, #FFF 100%), rgba(0, 0, 0, 0.00);
    color: #070606;
    padding: 12rem 0 8rem;
    text-align: center;
    margin-top: 6rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 3rem;
    color: rgba(59, 58, 58, 0.9);
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: #f9fafb;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1f2937;
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 18px;
    max-width: 60rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 8rem 0;
}

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

.service-card {
    flex: 1;
    /*min-width: 30rem;*/
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 50%;
}

.service-icon img {
    width: 3rem;
    height: 3rem;
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Clients Section */
.clients {
    padding: 8rem 0;
    background: #f9fafb;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    margin-bottom: 6rem;
}

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

.client-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.client-icon img {
    width: 4rem;
    height: 4rem;
}

.client-category h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.clients-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
    padding-top: 4rem;
    border-top: 0.1rem solid #e5e7eb;
}

.stat-item {
    text-align: center;
    min-width: 15rem;
}

.stat-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    border-radius: 50%;
}

.stat-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.4rem;
    color: #6b7280;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 8rem 0;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.team-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-category h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.team-image {
    width: 100%;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Insights Section */
.insights {
    padding: 8rem 0;
    background: #f9fafb;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.insight-card {
    flex: 1;
    /*min-width: 30rem;*/
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.insight-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.insight-card p {
    margin-bottom: 2rem;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
}

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

.faq-item {
    border-bottom: 0.1rem solid #e5e7eb;
}

.faq-question {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 2.4rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 20rem;
}

.faq-answer p {
    padding-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f9fafb;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h3 {
    color: #1f2937;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #6b7280;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 0.1rem solid #d1d5db;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 0.3rem rgba(37, 99, 235, 0.1);
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-brand p {
    color: #d1d5db;
    margin-top: 1rem;
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    h1 {
        font-size: 4.8rem;
    }

    h2 {
        font-size: 3.6rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content h1 {
        font-size: 4.8rem;
    }

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

    .about-content {
        flex-direction: row;
        text-align: left;
    }

    .about-text {
        flex: 1;
    }

    .about-image {
        flex: 1;
        max-width: 50rem;
    }

    .services-grid {
        justify-content: center;
    }

    .service-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: 40rem;
    }

    .team-content {
        flex-direction: row;
        text-align: left;
    }

    .team-text {
        flex: 1;
    }

    .team-image {
        flex: 1;
        max-width: 50rem;
    }

    .insights-grid {
        justify-content: center;
    }

    .insight-card {
        flex: 0 1 calc(50% - 1.5rem);
        max-width: 40rem;
    }

    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .hero {
        padding: 15rem 0 10rem;
    }

    .hero-content h1 {
        font-size: 5.6rem;
    }

    .service-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .insight-card {
        flex: 0 1 calc(33.333% - 2rem);
    }

    .clients-grid {
        justify-content: space-around;
    }

    .client-category {
        flex: 0 1 30rem;
    }
}

/* Success Page Styles */
.success-section {
    padding: 15rem 0 8rem;
    text-align: center;
    background: #f9fafb;
    margin-top: 6rem;
}

.success-content {
    max-width: 60rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.success-content h1 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 3.6rem;
}

.success-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 6rem;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin-bottom: 1rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.7rem, -0.6rem);
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 5rem;
    }

    .section-header p {
        font-size: 17px;
    }

    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
}
.logo{
    width: 250px;
}
.mobile-menu-toggle{
    display: none;
}
li a, li{
    font-size: 17px;
}