/* ====== RESET ====== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;

}

.container {
    max-width: 1140px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
}

main {
    overflow: hidden;
}

body {
    background-color: #011935;
}

/* ====== RESET ====== */
/* ====== HEADER BASE ====== */
header {
    padding: 12px 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #011935;
    border-bottom: 1px solid #747b8280;
}

header.is-sticky {
    background: #011935;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: fadeInDown 0.3s ease;
}

.logo img {
    max-width: 109px;
    width: 100%;
    filter: brightness(0) invert(1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content .menu-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-content .menu-list ul {
    display: flex;
    gap: 30px;
}

.header-content .menu-list ul li a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-content .menu-list ul li a:hover {
    color: #01FD9C;
}

.header-content .menu-list .menu-close {
    display: none;
    font-size: 1rem;
}

.header-content .menu-icon span {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.cta-btn {
    background-color: #01FD9C;
    color: #011935;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    background-color: #005ec2;
    color: #fff;
}

.bg2 {
    background-color: #0a2540;
    color: #fff;
}

/* ====== HEADER BASE ====== */

/* Hero banner css */
.hero-bnner {
    background: #011935;
    padding: 120px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 20px;
}

.hero-bnner-image img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
}

.accuracy-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background-color: #01FD9C;
    color: #011935;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.accuracy-value {
    font-size: 1.875rem;
    /* text-3xl */
    font-weight: 700;
    /* font-bold */
}

.accuracy-label {
    font-size: 0.875rem;
    /* text-sm */
}

.hero-bnner-image {
    height: 450px;
}



.hero-bnner-image img {
    object-fit: cover;
}

/* Pulse animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.badge-accent .icon {
    width: 1rem;
    /* h-4 w-4 */
    height: 1rem;
}

.hero-bnner-content h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.hero-bnner-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    max-width: 500px;
}

.no-setup {
    gap: 10px;
}



.hero-bnner-content svg {
    color: #fff;
}

.no-setup svg {
    color: #01FD9C;
}

.hero-buttons {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    margin: 0 !important;
}

.trust-text {
    margin-bottom: 0 !important;
}

.hero-bnner-image img {
    width: 100%;
}

/*  */
.problem-section {
    padding: 0px 0 60px 0;
    background: #011935;
}

.problem-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.problem-inner h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    color: #fff;
}

.problem-inner p {
    color: #fff;
    font-size: 22px;
    text-align: center;
    margin: 0;
}

.problem-img {
    padding: 40px 0;
}

.problem-img img {
    width: 100%;
    border-radius: 8px;
    height: 420px;
    object-fit: cover;

}

/*  product section css*/
.product-sec {
    background-color: #0a2540;
    padding: 60px 0;
}

.item-icon {
    width: 3rem;
    height: 3rem;
    background-color: #01FD9C;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-content h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #fff;
}

.product-inner p {
    color: #fff;
    font-size: 18pxx;
    text-align: center;
    margin: 0;
}

.product-item-content p {
    color: #627084;
    font-size: 16px;
    text-align: left;
}

.product-left .product-item:not(:last-child) {
    margin-bottom: 24px;
}

/*  */
.how-it-works-section {
    padding: 60px 0;
}

.how-step {
    position: relative;
}

.how-it-works-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    display: grid;
    gap: 2rem;
}

.how-step-card {
    position: relative;
    background: var(--card, #ffffff);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border, #e5e7eb);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.how-step-card:hover {
    border-color: var(--accent, #007bff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.how-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #01FD9C;
    border-radius: 7px;
    margin-bottom: 1.5rem;
    position: relative;
}

.how-step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: #011935;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.how-step-card h3 {
    font-size: 20px;
}

.how-step-line {
    position: absolute;
    top: 4rem;
    left: 60%;
    width: 100%;
    height: 2px;
    background: #01FD9C;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works-header h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
}

.how-it-works-header p {
    color: #fff;
}

/*  */
.why-section {
    padding: 60px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    border: 1px solid var(--border, #ddd);
    border-radius: 10px;
    background-color: var(--card, #fff);
    color: var(--card-foreground, #111);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 2rem;
}

.why-card:hover {
    border-color: var(--accent, #007bff);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    width: 56px;
    height: 56px;
    background-color: #01FD9C;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-content h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}

.why-quote {
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: #1a1a1a;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

blockquote {
    margin: 0;
    font-style: italic;
}

.why-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-header h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
}

.why-header p {
    color: #fff;
}

p.author-name {
    margin: 0;
    font-weight: 600;
    color: #1d2530;
    margin-top: 10px;
}

p.author-title {
    margin: 0;
}

/*  */
#pricing {
    padding: 60px 0;
    background-color: #0a2540;
}

.pricing-header {
    text-align: center;
}

.pricing-header p {
    font-size: 20px;
    max-width: 660px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.pricing-header p span {
    color: #01FD9C;
}

.Includes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    /* gap-6 = 24px */
    padding-top: 2rem;
    /* pt-8 = 32px */
    font-size: 0.875rem;
    /* text-sm */
    color: var(--muted-foreground);
    /* matches text-muted-foreground */
}

.Includes span {
    font-weight: 600;
    color: #fff;
}

.Includes svg {
    color: #01FD9C;
}

.pricing-header h2 {
    font-size: 2.8rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.pricing-header p {
    color: #fff;
}

.future {
    text-align: center;
}

.future h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    /* text-foreground */
    margin-bottom: 1.5rem;
}

.future p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #fff;
    /* text-muted-foreground */
    margin-bottom: 1.5rem;
}

#resources {
    padding: 60px 0;
}

.icon-5 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #01FD9C;
    border-radius: 7px;
    margin-bottom: 1rem;
}

.icon-5 svg {
    color: #011935;
    width: 2.5rem !important;
    height: 2.5rem;
}

.represents span {
    color: #01FD9C;
}

/* === Footer Base === */
.site-footer {
    background-color: #011935;
    /* dark industrial */
    color: #fff;
    padding: 3rem 0 0;
    /* py-12 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: system-ui, sans-serif;
}

/* === Footer Grid === */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* === Footer Columns === */
.footer-col {
    color: rgba(255, 255, 255, 0.9);
}

/* === Logo / Title === */
.footer-logo img {
    max-width: 110px;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}

/* === Descriptions and Notes === */
.footer-description,
.footer-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* === Headings === */
.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    /* accent color */
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #01FD9C;
    border-radius: 7px;
    margin-bottom: 1.5rem;
    position: relative;
    color: #011935;
    margin: 0 8px 0 0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icons a i {
    color: #011935;
}

.social-icons a:hover {
    background-color: #005ec2;
    color: #fff;
}

.social-icons a:hover i {
    color: #fff;
}

/* === Links === */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
    /* accent */
}

/* === Bottom Section === */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 50px;
    padding: 14px 0;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive layout for footer bottom */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contact-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    justify-content: center;
}

.contact-info {
    flex: 1;
    background: #0a2540;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #f1f5f9;
}

.contact-form {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #666;
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -10px;
    left: 5px;
    font-size: 13px;
    color: #2563eb;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #2563eb;
}

.contact-form button {
    width: 100%;
    border: 1px solid #01FD9C;
}

section#contact {
    padding-bottom: 60px;
}