/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter','Poppins',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    overflow-x:hidden;
    line-height:1.6;
}

/* =========================
   CONTAINER
========================= */

.container,
.container-wide{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   SECTION
========================= */

.section{
    padding:80px 0;
}

/* =========================
   IMAGES
========================= */

img{
    max-width:100%;
    display:block;
}

/* =========================
   LINKS
========================= */

a{
    text-decoration:none;
    transition:.3s;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    display:inline-block;
    background:#f59e0b;
    color:#0f172a;
    padding:13px 28px;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
    border:none;
    cursor:pointer;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(245,158,11,.25);
}

.btn-outline-light{
    display:inline-block;
    border:2px solid #f59e0b;
    color:#f59e0b;
    padding:11px 26px;
    border-radius:40px;
    font-weight:600;
}

.btn-outline-light:hover{
    background:#f59e0b;
    color:#fff;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h5{
    color:#f59e0b;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#0f172a;
}

.heading-seperator{
    width:70px;
    height:4px;
    background:#f59e0b;
    margin:15px auto 0;
    border-radius:20px;
}

/* =========================
   CARD STYLE
========================= */

.card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* =========================
   FORM ELEMENTS
========================= */

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    border:1px solid #dbe2ea;
    border-radius:12px;
    padding:12px 15px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#f59e0b;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#f59e0b;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#edf2f7;
}