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

/* Root level improvements */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Body baseline */
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    text-align: left;
}

/* Headings normalization */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

/* Paragraph baseline */
p {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Form normalization (VERY important cross-browser fix) */
button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

/* Buttons reset consistency */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Lists */

/* Tables safety (rare but important) */
table {
    border-collapse: collapse;
}

@media (prefers-reduced-motion: no-preference) {

    :root {

        scroll-behavior: smooth;

    }

}

textarea {

    resize: vertical;

}

[hidden] {

    display: none !important;

}

/* =========================
   2. BASE ELEMENTS
========================= */


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

button,
input,
textarea {
    font: inherit;
}


/* =========================
   3. TYPOGRAPHY (minimal)
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}


/* =========================
   4. CONTAINER
========================= */

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

/* =========================
   5. CONTAINER FLUID
========================= */

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}


/* =========================
   5. ROW
========================= */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* =========================
   6. COLUMNS
========================= */

[class^="col"],
[class*=" col"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col {
    flex: 1 0 0%;
}

/* 12-column grid */
.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* =========================
   7. RESPONSIVE COLUMNS
========================= */
/* =========================
   BOOTSTRAP-LIKE COLUMN BASE
========================= */

[class^="col"],
[class*=" col"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.col {
    flex: 1 0 0%;
}

/* =========================
   XS (<576px)
========================= */

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* =========================
   SM (>=576px)
========================= */

@media (min-width:576px) {

    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* =========================
   MD (>=768px)
========================= */

@media (min-width:768px) {

    .col-md {
        flex: 1 0 0%;
    }

    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* =========================
   LG (>=992px)
========================= */

@media (min-width:992px) {

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* =========================
   XL (>=1200px)
========================= */

@media (min-width:1200px) {

    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

/* =========================
   XXL (>=1400px)
========================= */

@media (min-width:1400px) {

    .col-xxl {
        flex: 1 0 0%;
    }

    .col-xxl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xxl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xxl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xxl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xxl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xxl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xxl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xxl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xxl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}


/* =========================
   8. UTILITIES
========================= */

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Width */
.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

/* Height */
.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}


/* =========================
   MARGIN UTILITIES
========================= */

/* Auto */
.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Margin top */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 30px;
}

/* Margin bottom */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 30px;
}

/* Margin left/right */
.ms-auto {
    margin-left: auto;
}

.me-auto {
    margin-right: auto;
}

.ms-1 {
    margin-left: 5px;
}

.ms-2 {
    margin-left: 10px;
}

.ms-3 {
    margin-left: 15px;
}

.me-1 {
    margin-right: 5px;
}

.me-2 {
    margin-right: 10px;
}

.me-3 {
    margin-right: 15px;
}


/* =========================
   PADDING UTILITIES
========================= */

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 5px !important;
}

.p-2 {
    padding: 10px !important;
}

.p-3 {
    padding: 15px !important;
}

.p-4 {
    padding: 20px !important;
}

.p-5 {
    padding: 30px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-1 {
    padding-top: 5px !important;
}

.pt-2 {
    padding-top: 10px !important;
}

.pt-3 {
    padding-top: 15px !important;
}

.pt-4 {
    padding-top: 20px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-1 {
    padding-bottom: 5px !important;
}

.pb-2 {
    padding-bottom: 10px !important;
}

.pb-3 {
    padding-bottom: 15px !important;
}

.pb-4 {
    padding-bottom: 20px !important;
}

.ps-1 {
    padding-left: 5px !important;
}

.ps-2 {
    padding-left: 10px !important;
}

.ps-3 {
    padding-left: 15px !important;
}

.pe-1 {
    padding-right: 5px !important;
}

.pe-2 {
    padding-right: 10px !important;
}

.pe-3 {
    padding-right: 15px !important;
}

/* =========================
   Shadows
========================= */
/* No shadow */
.shadow-none {
    box-shadow: none !important;
}

/* Small shadow */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

/* Regular shadow */
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Large shadow */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* =========================
   TEXT ALIGNMENT (Bootstrap 5 style)
========================= */

.text-start {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-end {
    text-align: right !important;
}


/* =========================
   DISPLAY UTILITIES
========================= */

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

/* SM (â‰¥576px) */

@media (min-width: 576px) {

    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

}

/* MD (â‰¥768px) */

@media (min-width: 768px) {

    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }

}

/* LG (â‰¥992px) */

@media (min-width: 992px) {

    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

}


/* =========================
   FLEX DIRECTION
========================= */

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}


/* =========================
   FLEX WRAP
========================= */

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}


/* =========================
   ALIGN ITEMS (VERTICAL)
========================= */

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-stretch {
    align-items: stretch;
}


/* =========================
   JUSTIFY CONTENT (HORIZONTAL)
========================= */

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}


/* =========================
   GAP SUPPORT (modern flex/grid)
========================= */

.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 5px;
}

.gap-2 {
    gap: 10px;
}

.gap-3 {
    gap: 15px;
}

.gap-4 {
    gap: 20px;
}

.gap-5 {
    gap: 30px;
}


/* =========================
   FLEX GROW / SHRINK
========================= */

.flex-fill {
    flex: 1 1 auto;
}

.flex-auto {
    flex: 0 0 auto;
}

.flex-1 {
    flex: 1;
}



/* =========================
   FORM CONTROL (input, select, textarea)
========================= */

.form-control {
    display: block;
    width: 100%;
    font: inherit;
    color: inherit;

    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;

    background-color: #fff;
    line-height: 1.4;

    -webkit-appearance: none;
    appearance: none;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus state */
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Disabled state */
.form-control:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.form-border-red {
    border: 1px solid red;
}



/* =========================
   BUTTON (single unified class)
========================= */

.btn {
    display: inline-block;
    font: inherit;
    /* line-height: 1.4; */
    vertical-align: middle;

    padding: 10px 16px;
    border-radius: 4px;

    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;

    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;

    -webkit-appearance: none;
    appearance: none;
}

/* Default button style */
.btn {
    background-color: #0d6efd;
    color: #fff;
}

/* Hover */
.btn:hover {
    background-color: #0b5ed7;
}

/* Active */
.btn:active {
    transform: translateY(1px);
}

/* Disabled */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* Modal Code Starts */
/* BACKDROP */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    padding: 20px;
    backdrop-filter: blur(16px);
}

/* OPEN STATE */
.modal.show {
    display: flex;
}

/* DIALOG */
.modal-dialog {
    width: 60%;
    max-width: 100%;
}

@media (max-width: 767px) {
    .modal-dialog {
        width: calc(100% - 20px);
        max-width: none;
        margin: 10px auto;
    }
}

/* CARD */
.modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .25);
    overflow: hidden;
}

/* HEADER */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 18px;
    border-bottom: 1px solid #eee;
}

/* BODY */
.modal-body {
    padding: 18px;
    line-height: 1.6;
    max-height: 300px;
    overflow: scroll;
}

/* CLOSE */
.btn-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Modal Code Ends */




/* =========================
   NAVBAR BASE
========================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* =========================
   MAIN CONTAINER LAYOUT
========================= */

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

/* =========================
   LEFT (LOGO)
========================= */

.navbar-brand {
    flex: 0 0 auto;
}

/* =========================
   CENTER (MENU)
========================= */

.navbar-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

/* =========================
   RIGHT (SEARCH + BUTTON)
========================= */

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon {
    height: 30px;
}


/* navbar */
.nav-link {
    color: black;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
}

/* Mobile Navbar Starts */
.navbar-mobile {
    background: #ffffff;
    padding: 15px;
}

.mobile-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-btn {
    background: transparent;
    border: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #015e29;
    margin: 5px 0;
    border-radius: 10px;
}


.mobile-menu {
    display: none;
    padding-top: 20px;
}

.mobile-menu.active {
    display: block;
}


.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul,
ol {
    padding-left: 30px;
    margin-bottom: 10px;
}

ul li,
ol li {
    margin-bottom: 8px;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgb(14 155 75 / 24%);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 0;
    color: #17181A;
    text-decoration: none;
    font-size: 18px;
}


.mobile-nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Mobile Navbar Ends */