:root {
    --primary: #2563eb;
    --accent: #111827;
    --gray: #6b7280;
    --bg: #fff;
    --section: #f5f5f7;
    --border: #e5e7eb;
    --primary-hover: #1d4ed8;
    --text: #22223b;
    --text-dark: #22223b;
    --text-white: #fff;
}
body {
    margin: 0;
    /* font-family: "Inter", Arial, sans-serif; */
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    /* background: var(--bg); */
    background: var(--section);
    color: var(--accent);
    font-size: 18px;
    line-height: 1.6;
}
header {
    /* background: var(--bg); */
    box-shadow: 0 1px 0 #e5e7eb;
    /* position: sticky; */
    top: 0;
    z-index: 10;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
}

.header-cta {
    display: flex;
    flex-direction: column;
}

.header-cta::after {
    background-color: #e0e1dc;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -1px;
}
.cmp-type {
    font-size: 0.8rem;
    color: var(--gray);
}
nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--primary);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem;
    /* background: var(--bg); */
    min-height: 40vh;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeinmove 1.2s cubic-bezier(0.77, 0, 0.18, 1) 0.2s forwards;
}
@keyframes fadeinmove {
    to {
        opacity: 1;
        transform: none;
    }
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.hero .cta {
    background: var(--bg);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border: 1px solid var(--border);
    border-radius: 45px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: background 0.2s;
}
.hero .cta:hover {
    background: black;
    color: #fff;
}
.features {
    display: flex;
    gap: 2rem;
    justify-content: start;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--section);
    border-radius: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #e5e7eb;
}

/* Custom scrollbar for Webkit browsers */
.features::-webkit-scrollbar {
    height: 10px;
    background: #e5e7eb;
    border-radius: 8px;
}
.features::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
    transition: background 0.2s;
}
.features::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}
.features::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 8px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 2px 4px 12px #00000014;
    box-sizing: border-box;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    flex: 1 1 320px;
    width: fit-content;
    max-width: 350px;
    min-width: 450px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}
.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-content .icon {
    width: 48px;
    height: 48px;
    display: inline-block;
}
.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
}
.feature-content p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.feature-card ul {
    padding-left: 1.1em;
    color: var(--gray);
    font-size: 0.98rem;
    margin: 0;
}
.feature-card ul li {
    list-style: none;
    margin-bottom: 0.8rem;
}

.feature-card ul li i {
    margin-right: 0.5rem;
    color: var(--primary);
}

section {
    max-width: 900px;
    margin: 3rem auto;
    /* background: var(--bg); */
    border-radius: 16px;
    padding: 2.5rem 2rem;
}
section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--section);
    border-radius: 20px;
}

.about-content {
    color: var(--gray);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 700px;
}

/* our team */
.team-section
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--section);
    border-radius: 20px;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}


.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    font-size: 1rem;
    color: var(--accent);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.testimonial .author {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--section);
    resize: none;
}
.contact-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #1742a0;
}
.faq-list {
    margin-top: 1.5rem;
}
.faq-item {
    margin-bottom: 1.2rem;
}
.faq-question {
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.faq-answer {
    display: none;
    color: var(--gray);
    margin-top: 0.3rem;
    font-size: 1rem;
    padding-left: 1.2rem;
}
.faq-item.active .faq-answer {
    display: block;
}

/* How it works */
.how-it-works {
    margin: 3rem auto;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    background: var(--section);
}

.how-works-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.how-step {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}
.how-step .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}
.how-step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
/* Slider */
.slider-section {
    max-width: 1000px;
    margin: 3rem auto;
    background: var(--section);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.slider-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-align: center;
}
.slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 1rem;
    scroll-behavior: smooth;
}
.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
}
.slider-card {
    scroll-snap-align: center;
}

.slider-card .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}
.slider-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.slider-card p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
/* Partners */
.partners-section {
    max-width: 1000px;
    margin: 3rem auto;
    /* background: var(--bg); */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
}
.partners-logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}
.partners-logos svg {
    width: 80px;
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.partners-logos svg:hover {
    opacity: 1;
}
footer {
    text-align: center;
    color: var(--gray);
    background: var(--bg);
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    border-top: 1px solid #e5e7eb;
}
@media (max-width: 900px) {
    .features,
    .how-works-steps,
    .partners-logos {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .feature-card,
    .how-step,
    .slider-card {
        max-width: 100%;
    }
    section,
    .slider-section,
    .partners-section {
        padding: 2rem 1rem;
    }
    .slider {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .features {
        padding: 0 0.5rem;
    }
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }
    .hero-logo-box {
        padding: 1.2rem 1.5rem;
    }
    .hero-logo-box img {
        width: 110px !important;
        height: 110px !important;
    }
}
@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
    }
    .hero-content h1 {
        font-size: 1.3rem !important;
    }
    .hero-logo-box {
        padding: 0.7rem 0.7rem;
    }
    .hero-logo-box img {
        width: 70px !important;
        height: 70px !important;
    }
    .hero-bg-shape {
        display: none !important;
    }
}



/* body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
    padding: 60px 20px;
    text-align: center;
    font-size: 1.5rem;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}
.hero {
    text-align: center;
    padding: 50px;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #007bff;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
.section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}
.team {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.team-member {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}
.team-member:hover {
    transform: translateY(-5px);
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}
.service-box:hover {
    transform: translateY(-5px);
}
footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
.service-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .team {
        flex-direction: column;
    }
} */