@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: Heebo;
    src: url("../assets/fonts/Heebo-Regular.ttf");
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: Heebo;
    src: url("../assets/fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

:root {
    --bg: #ffffff;
    --surface: #f6f8fb;
    --border: #e5e7eb;
    --prim: #2563eb;
    --prim-2: #38bdf8;
    --text: #0f172a;
    --muted: #475569;
    --ok: #10b981;
    --warn: #f59e0b;
    --danger: #ef4444;
    --container: 1200px;
    --radius: 18px;
    --shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
    font-size: 16px;
    margin: 0;
}

main {
    flex: 1 1 auto;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;

    border-top: 1px solid #e5e7eb;
    background: #f6f8fb;
}

section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_padding {
    padding: 40px 20px;
}

.section_title {
    margin: 0 0 6px;
    font-size: clamp(22px, 3.8vw, 36px);
}

.section_sub_title {
    margin: 0 0 24px;
    color: #475569;
}

/* START BUTTON */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.15rem;
    border-radius: 12px;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
}

.link {
    color: var(--color-primary);
}

/* END BUTTON */

/* START COVER */

.cover_1 {
    min-height: 80dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cover_1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cover_content_1 {
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
}

.cover_content_1 h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin: .2rem 0;
}

.cover_content_1 p {
    font-size: 1.05rem;
    color: #e2e8f0;
}

.cover_img_1 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cover_img_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* END COVER */

/* START SERVICES */

.services_1 {
    width: 100%;
    max-width: 1200px;
}

/* END SERVICES */

/* START GRID */

.grid {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: 1fr;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: var(--shadow);
}

.card_icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
}

.card h3 {
    margin: .2rem 0 .35rem;
    font-size: 1.2rem;
}

.card p {
    margin: 0;
    color: #1f2937;
}

/* END GRID */

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
    .section_padding {
        padding: 100px;
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {

}
