/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.7;
}

/* ==========================================
   COMMON ELEMENTS
========================================== */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
    font-size:16px;
    outline:none;
}

button{
    cursor:pointer;
    border:none;
}

/* ==========================================
   CONTAINER
========================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================================
   SECTION
========================================== */

section{
    padding:80px 0;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    color:#0b8f4d;
    margin-bottom:50px;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{
    display:inline-block;
    background:#0b8f4d;
    color:#fff;
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#08713d;
    transform:translateY(-3px);
}

.btn-secondary,
.btn-outline{
    display:inline-block;
    background:transparent;
    color:#fff;
    border:2px solid #fff;
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover,
.btn-outline:hover{
    background:#fff;
    color:#0b8f4d;
}

/* ==========================================
   CARD
========================================== */

.card{
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* ==========================================
   FORM
========================================== */

input,
textarea,
select{
    width:100%;
    padding:12px 15px;
    border:1px solid #ddd;
    border-radius:8px;
    transition:.3s;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#0b8f4d;
}

/* ==========================================
   TABLE
========================================== */

table{
    width:100%;
    border-collapse:collapse;
}

table th,
table td{
    border:1px solid #ddd;
    padding:10px;
}

table th{
    background:#0b8f4d;
    color:#fff;
}

/* ==========================================
   UTILITY
========================================== */

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

@media (max-width: 768px) {

    .hero-section{
        height: 300px;
    }

}