/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Prata&family=Rajdhani:wght@300;400;500;600;700&display=swap");
/* ========================= Css Variables Start ======================== */
:root {
  /* Font Family */
    --heading-font: "Prata", serif;
    --body-font: "Rajdhani", sans-serif;
    --hand-write: "Charm", cursive;
  /* ========================= Color Variables Start =========================== */
    --white: 0 0% 100%;
    --light-h: 0;
    --light-s: 1%;
    --light-l: 53%;
    --light: var(--light-h) var(--light-s) var(--light-l);
    --black-h: 0;
    --black-s: 0%;
    --black-l: 0%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --white-h: 0;
    --white-s: 0%;
    --white-l: 100%;
    --white: var(--white-h) var(--white-s) var(--white-l);
    --heading-color: var(--black);
    --body-color: var(--light);
    --border-color: 0 0% 88%;
    --section-bg: 208 100% 97%;
    --box-shadow: 0px 2px 15px hsl(var(--black) / 0.05);
  /* ========================= Base Color ============================= */
    --base: #15c61d;
    --secondary: #ffee00;
}

/* ========================= Css Variables End =========================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--white));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-weight: 400;
    margin: 0;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.1;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.75rem, 0.1327rem + 3.3694vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 0.3542rem + 2.6474vw, 3rem);
}

h3 {
    font-size: clamp(1.375rem, 0.3353rem + 2.1661vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 0.5569rem + 1.444vw, 2rem);
}

h5 {
    font-size: clamp(1.125rem, 0.7784rem + 0.722vw, 1.5rem);
}

h6 {
    font-size: clamp(1rem, 0.769rem + 0.4813vw, 1.25rem);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: 1.3;
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: #0667f6;
}

a:hover {
    color: #2f83ff;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/* ================================= Common Typography Css End =========================== */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

.fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.flex-end, .social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.flex-align, .contact-info li, .contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flex-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.flex-between, .header-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 1199px) {
    .section-heading {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading {
        margin-bottom: 30px;
    }
}

.section-heading__name {
    margin-bottom: 6px;
    background: linear-gradient(-225deg, var(--base) 0%, var(--secondary) 29%, var(--base) 67%, #15ff36 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textshorov 10s linear infinite;
    font-weight: 600;
    font-family: var(--hand-write);
}

.section-heading__title {
    position: relative;
    padding-bottom: 10px;
}

@keyframes textshorov {
    100% {
        background-position: 200% center;
    }
}

.section-heading__desc {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-left {
    text-align: left;
}

.section-heading.style-left .section-heading__title::before {
    left: 0;
    transform: translateX(0);
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

:root {
    --p-y: 120px;
    --p-60: 60px;
}

@media screen and (max-width: 1399px) {
    :root {
        --p-y: 100px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --p-y: 80px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --p-y: 60px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --p-y: 40px;
    }
}

@media screen and (max-width: 1399px) {
    :root {
        --p-60: 50px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --p-60: 40px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --p-60: 30px;
    }
}

.py-120 {
    padding-block: var(--p-y);
}

.pt-120 {
    padding-top: var(--p-y);
}

.pb-120 {
    padding-bottom: var(--p-y);
}

.my-120 {
    margin-block: var(--p-y);
}

.mt-120 {
    margin-top: var(--p-y);
}

.mb-120 {
    margin-bottom: var(--p-y);
}

.py-60 {
    padding-block: var(--p-60);
}

.pt-60 {
    padding-top: var(--p-60);
}

.pb-60 {
    padding-bottom: var(--p-60);
}

.my-60 {
    margin-block: var(--p-60);
}

.mt-60 {
    margin-top: var(--p-60);
}

.mb-60 {
    margin-bottom: var(--p-60);
}

.form--control {
    width: 100%;
    height: 40px;
    border: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--white));
    border-radius: 5px;
    padding: 0 10px;
    outline: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.form--control:focus {
    border-color: var(--base);
}

.btn {
    padding: 8px 18px;
    border-radius: 8px;
    color: hsl(var(--white));
    border: none;
    outline: none;
    transition: all 0.3s linear;
    line-height: 1;
    font-weight: 500;
}

.btn:has(.icon) {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn .icon {
    font-size: 12px;
    height: 24px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
    border-radius: 5px;
}

.btn .icon.style-two i {
    transform: rotate(0);
}

.btn .icon i {
    transform: rotate(-45deg);
}

.btn--base {
    background-color: var(--base);
    border: 1px solidvar(--base);
}

.btn--base.btn--lg {
    padding: 12px 24px;
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .btn--base.btn--lg {
        padding: 10px 20px;
        font-size: 16px;
    }
}

.btn--base .icon {
    background-color: hsl(var(--white)/0.1);
    color: hsl(var(--white));
}

.btn--base:hover {
    background-color: var(--base);
    border: 1px solidvar(--base);
    color: hsl(var(--white));
}

.btn--base:hover .icon {
    background-color: hsl(var(--white));
    color: var(--base);
}

.btn-outline--base {
    background-color: hsl(var(--black)/0.1);
    color: hsl(var(--black));
    border: 1px solid hsl(var(--border-color));
}

.btn-outline--base .icon {
    background-color: hsl(var(--white));
    color: var(--base);
}

.btn-outline--base:hover {
    background-color: hsl(var(--black)/0.1);
    color: hsl(var(--black));
    border: 1px solid hsl(var(--border-color));
}

.btn-outline--base:hover .icon {
    background-color: var(--base);
    border: 1px solidvar(--base);
    color: hsl(var(--white));
}

.flatpickr-calendar {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid hsl(var(--border-color));
    -webkit-box-shadow: -3px 3px 0px hsl(var(--black)/0.03);
    box-shadow: -3px 3px 0px hsl(var(--black)/0.03);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.numInput.cur-year {
    font-size: 14px !important;
    font-weight: 500;
    color: hsl(var(--black)/0.7);
}

.flatpickr-monthDropdown-months {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    appearance: none;
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none) !important;
    background-repeat: no-repeat !important;
    background-position: right 0rem center !important;
    background-size: 11px 12px !important;
    padding-right: 12px !important;
}

.flatpickr-current-month input.cur-year {
    padding: 0 0 0 16px !important;
}

.flatpickr-months {
    margin-bottom: 12px;
    border-bottom: 1px solid hsl(var(--border-color));
    background-color: hsl(var(--black)/0.05);
}

.flatpickr-prev-month,
.flatpickr-next-month {
    height: 24px !important;
    top: 6px !important;
    width: 24px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    background-color: hsl(var(--base)/0.1);
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    height: 10px !important;
    width: 10px !important;
}

.flatpickr-prev-month path,
.flatpickr-next-month path {
    fill: var(--base) !important;
}

.flatpickr-prev-month:hover path,
.flatpickr-next-month:hover path {
    fill: var(--base) !important;
}

.flatpickr-prev-month {
    left: 6px !important;
}

.flatpickr-next-month {
    right: 6px !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--base);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: hsl(var(--white));
    border-color: var(--base);
}

.flatpickr-day.today {
    border-color: var(--base);
    color: var(--base);
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    border-color: hsl(var(--base)/0.01);
    background: hsl(var(--base)/0.1);
    color: var(--base);
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    cursor: pointer;
    outline: 0;
    background: hsl(var(--base)/0.1);
    border-color: hsl(var(--base)/0.01);
    color: var(--base);
}

.flatpickr-day.inRange {
    -webkit-box-shadow: -5px 0 0 hsl(var(--base)/0.01), 5px 0 0 hsl(var(--base)/0.09);
    box-shadow: -5px 0 0 hsl(var(--base)/0.01), 5px 0 0 hsl(var(--base)/0.09);
}

.flatpickr-day.selected.startRange {
    -webkit-box-shadow: 5px 0 0 hsl(var(--base)/0.09);
    box-shadow: 5px 0 0 hsl(var(--base)/0.09);
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    -webkit-box-shadow: -10px 0 0var --base;
    box-shadow: -10px 0 0var --base;
}

.form--control.datepicker2 {
    position: relative;
    padding-right: 40px;
}

.form--control.datepicker2:-moz-read-only {
    background-color: transparent;
    border: 1px solid hsl(var(--border-color));
}

.form--control.datepicker2:disabled,
.form--control.datepicker2:read-only {
    background-color: transparent;
    border: 1px solid hsl(var(--border-color));
}

.form--control.datepicker2:-moz-read-only:focus {
    border-color: hsl(var(--black)/0.2);
}

.form--control.datepicker2:disabled:focus,
.form--control.datepicker2:read-only:focus {
    border-color: hsl(var(--black)/0.2);
}

.datepicker-inner {
    position: relative;
    z-index: 1;
    background-color: hsl(var(--white));
}

.datepicker-inner.time-picker::after {
    content: "\f017";
    font-family: "Font Awesome 5 Free";
}

.datepicker-inner::after {
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    height: 40px;
    width: 40px;
    right: 0;
    top: 0;
    display: grid;
    place-content: center;
    z-index: -1;
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    background-color: hsl(var(--white));
    border: 1px solid hsl(var(--border-color));
    border-radius: 8px;
    min-height: 40px;
    padding-inline: 4px;
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: hsl(var(--black)/0.2);
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--white));
}

.select2-dropdown {
    border: 1px solid hsl(var(--black)/0.2);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--base);
    color: hsl(var(--white));
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--black));
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--border-color));
    border: 0;
    font-size: 14px;
    font-weight: 500;
    color: hsl(var(--base-two));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    font-weight: 500;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid hsl(var(--border-color));
    outline: 0;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 14px;
    color: hsl(var(--base-two));
}

.select2-container:has(.select2-selection--multiple,
.select2-selection--single) {
    width: 100% !important;
}

.banner-slider-item {
    position: relative;
    z-index: 1;
}

.banner-slider-item::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: hsl(var(--black)/0.3);
    z-index: -1;
}

.banner-slider-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.banner-slider-content {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    width: 100%;
}

.banner-slider-title {
    color: hsl(var(--white));
}

.banner-slider-desc {
    margin-bottom: 40px;
    color: hsl(var(--white));
}

.video_popup {
    height: 48px;
    width: 48px;
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.portfolio-section {
    background-color: hsl(var(--black)/0.05);
}

.portfolio-item {
    background-color: hsl(var(--white));
    border-radius: 12px;
    overflow: hidden;
}

.portfolio-item-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}

.portfolio-item-name {
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: hsl(var(--black));
}

.video-wrapper {
    background: linear-gradient(to right, hsl(var(--black)/0.05) 70%, var(--base) 30%);
    padding: 40px;
    position: relative;
    border-radius: 12px;
}

.video-content video {
    border-radius: 12px;
    max-height: 520px;
    object-fit: cover;
}

.video_popup {
    animation: playBtn 2s linear infinite;
    color: hsl(var(--white)) !important;
    background: linear-gradient(-27deg, var(--base), var(--secondary));
}

.video-wrapper .video_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: grid;
    font-size: 20px;
    place-content: center;
}

@keyframes playBtn {
    0% {
        box-shadow: 0 0 0 0 var(--base);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 91, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 91, 234, 0);
    }
}

.choose-us {
    background-color: hsl(var(--black)/0.05);
}

.choose-card {
    background-color: hsl(var(--white));
    padding: 24px;
    border-radius: 12px;
    height: 100%;
}

.choose-card__icon {
    font-size: 40px;
    background: linear-gradient(-27deg, var(--base), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.testimonial-item-content {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: #f9f8f8;
    position: relative;
}

.testimonial-item-content::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 16px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    background-color: #f9f8f8;
}

@media screen and (max-width: 575px) {
    .testimonial-item-content {
        padding: 16px;
    }
}

.testimonial-item-title {
    font-style: italic;
}

.testimonial-item-text {
    color: hsl(var(--black)/0.5);
    line-height: 1.3;
    font-weight: 500;
    font-size: 15px;
    display: block;
}

@media screen and (max-width: 575px) {
    .testimonial-item-text {
        font-size: 14px;
    }
}

.testimonial-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-item-image {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media screen and (max-width: 575px) {
    .testimonial-item-image {
        width: 40px;
        height: 40px;
    }
}

.testimonial-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item-meta {
    flex: 1;
}

.testimonial-item-name {
    font-size: 18px;
    font-weight: 600;
    color: hsl(var(--black));
}

.testimonial-item-position {
    font-size: 14px;
    color: hsl(var(--black)/0.7);
    font-weight: 500;
}

/* gallery */
.gallery__item {
    height: 100%;
}

.gallery__item img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 999;
}

.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, 0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.8;
}

.blog-item {
    background: hsl(var(--white));
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.blog-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item-image img:hover {
    transform: scale(1.1);
}

.blog-item-content {
    padding: 25px;
}

.blog-item-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: #666;
    font-size: 14px;
}

.blog-item-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.blog-item-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: hsl(var(--base));
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    text-decoration: underline;
}

.breadcrumb-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/images/banner/breadcrumb.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.breadcrumb-content {
    text-align: center;
}

.breadcrumb-content h3 {
    color: hsl(var(--white));
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li {
    color: hsl(var(--white));
    font-size: 16px;
    list-style: none;
}

.breadcrumb-list li a {
    color: hsl(var(--white));
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: var(--base);
}

.breadcrumb-list li.active {
    color: var(--base);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: hsl(var(--white));
}

.achievement-section {
    background-color: hsl(var(--black)/0.05);
}

.achievement-image {
    max-width: 500px;
    width: 100%;
}

.achievement-card {
    background: hsl(var(--white));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 40px;
    color: var(--base);
    margin-bottom: 20px;
}

.achievement-number {
    font-size: 36px;
    font-weight: 700;
    color: hsl(var(--black));
    margin-bottom: 10px;
}

.achievement-text {
    color: hsl(var(--black)/0.8);
    font-size: 18px;
    margin: 0;
}

.achievement-content h3 {
    font-size: 28px;
    color: hsl(var(--black));
    font-weight: 600;
}

.achievement-content p {
    color: hsl(var(--black)/0.7);
    line-height: 1.6;
}

.achievement-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--base);
    font-size: 20px;
}

.feature-item span {
    color: hsl(var(--black)/0.8);
    font-size: 16px;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .achievement-content {
        margin-top: 30px;
    }

    .achievement-number {
        font-size: 30px;
    }

    .achievement-text {
        font-size: 16px;
    }
}
/* ============= Header Start Here ======================= */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand.logo img {
    max-width: 165px;
}

@media screen and (max-width: 991px) {
    .navbar-brand.logo img {
        max-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .navbar-brand.logo img {
        max-width: 120px;
    }
}

.header {
    background-color: var(--base);
    z-index: 999;
}

@media screen and (max-width: 1199px) {
    .header {
        padding: 16px 0;
        z-index: 999;
    }
}

@media screen and (max-width: 575px) {
    .header {
        padding: 10px 0;
    }
}

.header.fixed-header {
    transition: 0.3s linear;
    position: sticky;
    top: 0px;
    animation: slide-down 0.8s;
    width: 100%;
    box-shadow: 0px 2px 10px hsl(var(--base)/0.1);
    padding: 16px 0;
    z-index: 999;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    padding: 0 !important;
}

/* ========================= Desktop Device Start ========================= */
@media (min-width: 992px) {
    .navbar-nav {
        position: relative;
    }

    .nav-item {
        position: relative;
    }

    .navbar.navbar-expand-lg {
        background-color: hsl(var(--white)) !important;
        padding: 16px !important;
        border-radius: 12px;
        margin-bottom: -35px;
    }

    .nav-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .nav-menu .nav-item {
        position: relative;
    }

    .nav-menu .nav-item.active .nav-link {
        color: var(--base) !important;
    }

    .nav-menu .nav-item.active .active {
        background-color: hsl(var(--base-l-300)) !important;
    }

    .nav-menu .nav-item:hover .nav-link {
        color: var(--base) !important;
    }

    .nav-menu .nav-item:hover .nav-link::before {
        width: 100%;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(180deg);
        transition: 0.2s;
    }

    .nav-menu .nav-item .nav-link {
        font-weight: 500;
        font-size: 18px;
        color: hsl(var(--black)/0.8) !important;
        padding: 0 15px;
        position: relative;
        cursor: pointer;
        font-weight: 600;
    /* ======================== Style two ================ */
    }
}

@media screen and (min-width: 992px) and (max-width: 1599px) {
    .nav-menu .nav-item .nav-link {
        font-size: 16px;
        padding: 0 12px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .nav-menu .nav-item .nav-link {
        font-size: rem(14px);
        padding: 0 8px;
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-item .nav-link .nav-item__icon {
        transition: 0.3s;
        margin-left: 2px;
    }
}

@media screen and (min-width: 992px) and (max-width: 991px) {
    .nav-menu .nav-item .nav-link .nav-item__icon {
        margin-right: 6px;
    }
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        top: 100%;
        left: 0;
        padding: 0 !important;
        transform: scaleY(0);
        transform-origin: top center;
        transition: 0.3s;
        overflow: hidden;
        border-radius: 0;
        min-width: 190px;
    }

    .dropdown-menu__list {
        border-bottom: 1px solid hsl(var(--black)/0.08);
    }

    .dropdown-menu__list:last-child {
        border-bottom: 3px solidvar(--base);
    }

    .dropdown-menu__link {
        padding: 7px 10px;
        font-weight: 500;
        transition: 0.3s;
        color: hsl(var(--black));
    }

    .dropdown-menu__link:focus, .dropdown-menu__link:hover {
        color: hsl(var(--base-two));
        background-color: var(--base);
    }
}

@media (min-width: 992px) {
    .nav-menu .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100% !important;
        transform: scaleY(1);
    }
}
/* ========================== Desktop Device End ========================= */
/* ============================== Small Device ======================= */
@media screen and (max-width: 991px) {
    .navbar .offcanvas-header {
        background-color: var(--base);
    }

    .navbar .offcanvas-header .btn-close {
        opacity: 1;
    }

    .navbar .offcanvas-body {
        background-color: hsl(var(--white));
    }

    .body-overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .nav-menu .nav-item {
        text-align: left;
        display: block;
        position: relative;
        margin: 0;
    }

    .nav-menu .nav-item:hover .nav-link .nav-item__icon {
        transform: rotate(0deg) !important;
    }

    .nav-item:first-child {
        border-bottom: none;
    }

    .nav-item:last-child > a {
        border-bottom: 0;
    }

    .nav-item .nav-link {
        padding: 8px 13px !important;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        border-bottom: 0;
        color: hsl(var(--black));
        font-size: 16px;
        font-weight: 600;
        background: hsl(var(--base-two)/0.2);
        margin-bottom: 12px;
        border-radius: 6px;
    }

    .nav-item .nav-link.show[aria-expanded=true] {
        color: var(--base) !important;
    }

    .nav-item .nav-link.show[aria-expanded=true] i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 2px;
        width: 100%;
        margin: 0px !important;
        padding: 0 !important;
        border: 0;
        background-color: inherit;
        overflow: hidden;
    }

    .dropdown-menu li:nth-last-child(1) {
        border-bottom: none;
    }

    .dropdown-menu li .dropdown-item {
        padding: 10px 0px;
        font-weight: 500;
        border-bottom: 1px solid hsl(var(--white)/0.1);
        margin-left: 20px;
        color: hsl(var(--black));
    }

    .dropdown-menu li .dropdown-item:hover, .dropdown-menu li .dropdown-item:focus {
        background-color: transparent;
    }
}

.navbar-toggler.header-button {
    border-color: transparent;
    color: hsl(var(--black));
    background: transparent !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transition: 0.15s ease-in-out;
    width: auto;
    font-size: 2rem;
}

@media screen and (max-width: 767px) {
    .navbar-toggler.header-button {
        font-size: 1.5rem;
    }
}

.navbar-toggler.header-button:focus {
    box-shadow: none !important;
}

.navbar-toggler.header-button[aria-expanded=true] i::before {
    content: "\f00d";
}

/* ================================= Header Css End =========================== */
.header-dropdown {
    border: 1px solid hsl(var(--white)/0.15);
    border-radius: 12px;
    background-color: hsl(var(--section-bg));
}

@media screen and (max-width: 991px) {
    .header-dropdown {
        margin-bottom: 12px !important;
    }
}

.header-dropdown .dropdown-menu__list {
    border: 0;
}

@media screen and (max-width: 991px) {
    .header-dropdown .dropdown-menu__list .dropdown-item {
        border: 0 !important;
        padding: 7px 0;
    }
}

.login-registration-list {
    gap: 12px;
}

.header-top {
    padding-block: 16px;
    background-color: var(--base);
}

.contact-info {
    gap: 12px;
}

.contact-info li {
    gap: 6px;
    color: hsl(var(--white));
    font-weight: 500;
}

.contact-info li a {
    color: hsl(var(--white));
}

.social-links {
    gap: 12px;
}

.social-links a {
    color: hsl(var(--white));
}

/* ============= Footer Start Here ======================= */
.footer-area {
    background-color: hsl(var(--black));
    margin-top: auto;
}

.footer-area.bg-img {
    background-size: contain;
    background-position: top center;
}

.footer-item__logo {
    margin-bottom: 20px;
}

.footer-item__logo a img {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 64px;
}

.footer-item__desc {
    color: hsl(var(--white));
}

.footer-item__title {
    color: hsl(var(--white));
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
}

.footer-item__title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    left: 0;
    bottom: -2px;
    background-color: var(--base);
}

.footer-item .social-list {
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
    .footer-item .social-list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 575px) {
    .footer-item .social-list {
        margin-top: 15px;
    }
}
/* Footer List Item */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu__item {
    display: block;
    padding-bottom: 16px;
}

.footer-menu__item:last-child {
    padding-bottom: 0;
}

.footer-menu__link {
    color: hsl(var(--white));
}

.footer-menu__link:hover {
    color: var(--base);
    text-decoration: underline;
}

/* Footer Contact */
.footer-contact-menu__item {
    display: flex;
    padding-bottom: 12px;
}

.footer-contact-menu__item:last-child {
    padding-bottom: 0;
}

.footer-contact-menu__item-icon {
    width: 15px;
    color: var(--base);
    font-size: 1.25rem;
}

.footer-contact-menu__item-content {
    width: calc(100% - 15px);
    padding-left: 15px;
    color: hsl(var(--white));
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
    background-color: hsl(var(--black));
    border-top: 1px solid hsl(var(--white)/0.2);
}

/* =============Bottom Footer End Here ======================= */
/* ================================= Template Selection Css Start =========================== */
::selection {
    color: hsl(var(--white));
    background: var(--base);
}

/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.social-list__link {
    transition: 0.3s;
    cursor: pointer;
    color: hsl(var(--white));
    font-size: 20px;
}

.social-list__link:hover, .social-list__link:focus {
    color: var(--base) !important;
}

@media screen and (max-width: 767px) {
    .social-list__link {
        font-size: 20px;
    }
}
/* ================================= Social Icon Css End ===========================  */
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-list {
    margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide > div {
    height: 100%;
}

.slick-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: hsl(var(--white));
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s linear;
    background-color: var(--base);
    color: hsl(var(--white));
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        width: 45px;
        height: 45px;
    }
}

.slick-arrow:hover {
    border-color: var(--base);
}

.slick-next {
    right: -20px;
}

@media screen and (max-width: 991px) {
    .slick-next {
        right: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-next {
        right: 10px;
    }
}

.slick-prev {
    left: -20px;
}

@media screen and (max-width: 991px) {
    .slick-prev {
        left: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-prev {
        left: 10px;
    }
}

.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: hsl(var(--black));
    color: hsl(var(--white));
    margin: 0 3px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    border-radius: 50%;
    text-indent: -9999px;
    transition: 0.3s linear;
}

.slick-dots li.slick-active button {
    background-color: var(--base);
    width: 25px;
    border-radius: 5px;
}

.banner-slider .slick-list {
    margin: 0 !important;
}

.banner-slider .slick-slide {
    padding: 0 !important;
}

.banner-slider .slick-next {
    right: 15px !important;
}

.banner-slider .slick-prev {
    left: 15px !important;
}
/*# sourceMappingURL=main.css.map */
