/* =========================
   RESET & BASE STYLES
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden !important;
    margin-top: 130px;
}

/* =========================
   TYPOGRAPHY
========================= */

:root {
    --primary: hsl(160 84% 24%);
    --secondary: hsl(220 20% 10%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

p {
    margin-bottom: 10px;
}

/* =========================
   LINKS
========================= */

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

.header_part {
    background-color: #00000070;
}

.nav-link {
    font-size: 16px;
    line-height: 1.25rem;
    color: #fff;
    font-weight: 400;
    padding: 8px 15px !important;
    border-radius: 8px !important;
}

.nav-link:hover {
    color: #fff;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: hsl(160 84% 20%);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 15px;
}

.btn-white {
    border: 1px solid #DDD !important;
}

.banner_title {
    font-size: 62px;
    font-weight: 800;
}

#bg-video {
    min-width: 100%;
    max-width: 100%;
    height: 100svh;
    object-fit: cover;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.banner_hero {
    margin-top: -130px;
}

@media (max-width: 575px) {
    .banner_hero {
        margin-top: 0;
    }
}


.banner_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    /* dark overlay */
    z-index: 2;
}


.feature-card {
    border: 1px solid #0a714e29;
}

.icon-box {
    background: hsl(160deg 84% 24% / 10%);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    max-width: 50px;
    width: 100%;
}

.feature-card h5 {
    font-size: 18px;
    color: var(--secondary);
}

.how_work_card h5 {
    font-size: 18px;
    color: var(--secondary);
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.why_choose_card h3 {
    font-size: 18px;
    color: var(--secondary);
}

.cta-section {
    background: linear-gradient(45deg, #0a714e, #0a714eb0);
    padding: 100px 0px;
}

.cta-section h2 {
    font-size: 42px;
}

.social-icon {
    font-size: 13px;
    width: 30px;
    height: 30px;
    background: #dddddd66;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 6px;
}

.testimonial-card {
    max-width: 600px;
    margin: auto;
}

.testimonial-card .testimonial-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.testimonial-card .stars {
    font-size: 23px;
    color: var(--primary);
}

.swiper-pagination-bullet {
    transition: all 0.3s ease;
    border-radius: 10px !important;
}

.swiper-pagination-bullet-active {
    width: 22px;
    height: 8px;
    background-color: var(--primary) !important;

}
