:root {
    --primary: #159649;
    --primary-dark: #073d17;
    --secondary: #fdbf07;
    --dark: #112a0f;
    --dark2: #283c19;
    --grey: #2e3a24;
    --light-grey: #F3F4F6;
    --mid-grey: #9CA3AF;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --primary-font: 'Barlow', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    margin: 0 auto;
    width: 90%;
    max-width: 1300px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    font-size: 17px;
    color: #222;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-red {
    background: var(--primary);
    color: var(--white);
}

.btn-red:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227,6,19,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tag {
    display: inline-block;
    background: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* AOS-style animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* HEADER */
#header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

#header.scrolled {
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    position: fixed;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topBarCus .container, #header .container, .hero-bar .container {
    width: 96%;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.logo-text {
    line-height: 1.1;
}

.logo-text strong {
    display: block;
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

.logo-text span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: 23px;
}

nav li {
    list-style: none;
}

nav a {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    /* padding: 7px 13px; */
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    text-align: center;
    display: grid;
    row-gap: 6px;
}

nav a:hover, nav a.active {
    color: #e30613;
    /* background: rgb(227 6 19 / 17%); */
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call {
    background: transparent;
    border: 1.5px solid rgb(18 18 18 / 40%);
    color: #000000;
    font-size: 15px;
    padding: 9px 16px;
    border-radius: 50px;
    transition: all 0.2s;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-call:hover {
    /* border-color: white; */
    background: rgb(14 14 14);
    color: #fff;
}

.btn-quote {
    background: var(--primary);
    color: white;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
    font-weight: 700;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(227,6,19,0.4);
}


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
    width: 30px;
    height: 22px;
    justify-content: center;
}

.hamburger span {
    width: 24px;
    height: 2px;
    display: block;
    transition: all 0.3s;

    background: #111;
    position: absolute;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }




/* HERO SLIDER */
.hero {
    position: relative;
    overflow: hidden;
}

.swiper-hero {
    width: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
}



.hero-tag i {
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 50px);
    color: white;
    line-height: 1.1;
    margin: 0;
    /* background: #ff000038; */
    width: auto;
    display: table;
    padding: 22px 43px;
    text-shadow: 0px 2px 4px #000000c4;
}

.hero-title em {
    color: var(--primary);
    font-style: normal;
    display: block;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-stats-inner {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 700px;
}

.hero-stat {
    flex: 1;
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat strong {
    display: block;
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.hero-stat span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
    width: 24px;
    border-radius: 4px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 900;
}

/* ABOUT */
#about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 24px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-img-badge strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--primary-font);
    line-height: 1;
}

.about-img-badge span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.about-content {
    padding-right: 20px;
}

.about-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 8px;
    flex-shrink: 0;
}

.about-item p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
}

@media(max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-img img {
        height: 280px;
    }

    .about-img-badge {
        bottom: 10px;
        right: 10px;
    }
}

/* SERVICES */
#services {
    padding: 100px 0;
    background: var(--light-grey);
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-header .section-sub {
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(227,6,19,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.35s;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.35s;
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.35s;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.35s;
}

.service-card:hover h3, .service-card:hover p {
    color: rgba(255,255,255,0.9);
}

@media(max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* HUBS */
#hubs {
    padding: 100px 0;
    background: var(--dark2);
}

.hubs-header {
    text-align: center;
    margin-bottom: 56px;
}

.hubs-header .section-title {
    color: white;
}

.hubs-header .section-sub {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
    text-align: center;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hub-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.hub-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hub-card:hover img {
    transform: scale(1.1);
}

.hub-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(227,6,19,0.85) 100%); */
    transition: all 0.4s;
}

.hub-card:hover .hub-overlay {
    /* background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 40%, rgba(180,4,15,0.92) 100%); */
}

.hub-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 18px;
    background: #e3061345;
    backdrop-filter: blur(2px);
}

.hub-info h3 {
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.hub-info span {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media(max-width: 1024px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 560px) {
    .hubs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hub-card {
        aspect-ratio: 1/1;
    }
}

/* WHY US */
#why {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* align-items: center; */
}

.why-img {
    position: relative;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 111px;
}

.why-img img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid #283b16;
}

.why-img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.why-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light-grey);
    border-radius: var(--radius);
    padding: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-feat:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.why-feat-icon {
    width: 42px;
    height: 42px;
    background: rgba(227,6,19,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.why-feat-icon i {
    color: var(--primary);
    font-size: 1.1rem;
}

.why-feat:hover .why-feat-icon {
    background: var(--primary);
}

.why-feat:hover .why-feat-icon i {
    color: white;
}

.why-feat-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 3px;
}

.why-feat-text p {
    font-size: 0.78rem;
    color: var(--grey);
    line-height: 1.5;
}

@media(max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-img img {
        height: 280px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }
}

.why-grid .about-item p {
    color: #111;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

.why-grid .about-list {
    row-gap: 7px;
}

.section-sub.notesub {
    background: #fdbf07;
    color: #111;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 7px;
}




/* COUNTER */
#counter {
    /* background: var(--primary); */
    background: #111827;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.counter-item {
    text-align: center;
    padding: 65px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.counter-item:last-child {
    border-right: none;
}

.counter-item:hover {
    /* background: #d50612; */
}

.counter-num {
    font-family: var(--primary-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1;
    display: block;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    font-weight: 500;
}

@media(max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .counter-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.2);
    }

    .counter-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* PROCESS */
#process {
    padding: 100px 0;
    background: var(--light-grey);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header .section-sub {
    margin: 0 auto;
    text-align: center;
}

.process-timeline {
    display: flex;
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(227,6,19,0.2) 100%);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.step-num {
    width: 72px;
    height: 72px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--primary-font);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(227,6,19,0.25);
    transition: all 0.3s;
}

.process-step:hover .step-num {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.step-icon {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.15);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.6;
}

@media(max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 32px;
    }

    .process-timeline::before {
        display: none;
    }
}

/* TESTIMONIALS */
#testimonials {
    padding: 100px 0;
    background: var(--dark2);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-header .section-title {
    color: white;
}

.testimonials-header .section-sub {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
    text-align: center;
}

.swiper-testimonials {
    padding-bottom: 48px !important;
}

.testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.testi-stars {
    color: #FCD34D;
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testi-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    gap: 14px;
    align-items: center;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--primary-font);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.testi-name strong {
    display: block;
    font-family: var(--primary-font);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.testi-name span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

.testi-quote {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 4rem;
    color: rgb(253 191 7);
    font-family: Georgia;
    line-height: 1;
}

.testi-card {
    position: relative;
    overflow: hidden;
}

/* FAQ */
#faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    background: white;
}

.faq-q h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark2);
    line-height: 1.4;
}

.faq-q i {
    color: var(--grey);
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.open .faq-q h4 {
    color: var(--dark2);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--light-grey);
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 16px 22px;
    font-size: 15px;
    color: var(--grey);
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    color: white;
    position: sticky;
    top: 100px;
}

.faq-cta i {
    font-size: 29px;
    opacity: 0.8;
}

.faq-cta h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media(max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        position: static;
    }
}

/* CONTACT */
#contact {
    padding: 100px 0;
    background: var(--light-grey);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(227,6,19,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mid-grey);
    margin-bottom: 4px;
}

.contact-text p, .contact-text a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark2);
}

.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-box iframe {
        height: 280px;
    }
}

/* FOOTER */
footer {
    background: var(--dark2);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.7fr 1.5fr;
    gap: 40px;
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.footer-about p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 27px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--primary-font);
    font-size: 21px;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: #fff;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-contact-item p, .footer-contact-item a {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom p {
    font-size: 17px;
    color: rgba(255,255,255,0.35);
    display: flex;
}

.footer-bottom p span {
    color: var(--secondary);
}

@media(max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* FLOATING BUTTONS */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.float-wa a {
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    position: relative;
}

.float-wa a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-wa 2s infinite;
}

.float-wa a i {
    position: relative;
    z-index: 1;
}

@keyframes pulse-wa {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.float-quote {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 900;
}

.float-quote button {
    background: var(--secondary);
    color: #111;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgb(253 191 7 / 41%);
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-quote button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* POPUP */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 2000;
    display: none;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    width: 100%;
}

.popup-overlay.open {
    display: block;
}

.popup {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    /* max-height: 90vh; */
    /* overflow-y: auto; */
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
    margin: auto;
}

.popup-head {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
    padding: 28px 32px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.popup-head p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.popup-close {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.popup-close:hover {
    background: var(--primary);
}

.popup-body {
    padding: 28px 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark2);
    transition: border-color 0.2s;
    outline: none;
    background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227,6,19,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.popup-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.popup-actions button, .popup-actions a.btn-callnow {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.btn-submit {
    background: var(--primary);
    color: white;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-callnow {
    background: var(--secondary);
    color: #111;
}

.btn-callnow:hover {
    background: var(--dark);
}

@media(max-width: 560px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .popup-body {
        padding: 20px;
    }

    .popup-head {
        padding: 22px 20px;
    }
}


.footer-contact-item a:hover, .contact-text a:hover {
    color: #fff;
}


.hero .container {
    width: 90% !important;
}




/* bottom bar */
.hero-bar{position: relative;bottom:0;left:0;right:0;z-index:3;background: #ffc107;}
.hero-bar-inner{display:flex;overflow:hidden;height:54px;justify-content: center;gap: 15px;align-items: center;}
.hero-bar-item{}
.hero-bar-item:last-child{border-right:none;}
.hero-bar-item i{font-size:1rem;opacity:0.8;color: #fff;}
.hero-bar-item span{font-size: 14px;font-weight:700;letter-spacing: 0.5px;text-transform:uppercase;color:rgba(255,255,255,0.9);font-family: var(--secondary-font);}
@media(max-width:900px){.hero-card{display:none;}}
@media(max-width:600px){.hero-bar-item:nth-child(n+3){display:none;}.hero-bar-item{flex:none;width:50%;}}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee-wrap{background: #d9d9d9;padding:0;overflow:hidden;border-top:1px solid rgba(255,255,255,0.05);}
.marquee-track{display:flex;white-space:nowrap;animation:marquee 28s linear infinite;}
.marquee-wrap:hover .marquee-track{animation-play-state:paused;}
.marquee-item{display:inline-flex;align-items:center;gap:16px;padding:18px 36px;font-size: 15px;font-weight:700;letter-spacing: 0.5px;text-transform:uppercase;color: var(--dark);}
.marquee-item i{color:var(--primary);}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}



.logo img {
    max-width: 200px;
}

.topBarCus {
    background: var(--secondary);
    padding: 5px 0;
}

.headertopmain {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    display: grid;
    color: #111;
    font-weight: 500;
}

.headertopmain a {
    color: #111;
}

.headertopmain a:hover {
    color: #104924;
}

nav a span {
    display: table;
    font-size: 13px;
    color: #555;
}

.hero-bar-inner a {border: 1px solid #111111b3;border-radius: 5px;padding: 6px 10px;color: #111;font-size: 15px;font-weight: 500;}

.hero-bar-inner a:hover {
    background: #06441f;
    color: #fff;
    border-color: #06441f;
}


.text-justify{ text-align:justify; }



.mt-5{ margin-top:5px !important; }
.mt-10{ margin-top:10px !important; }
.mt-15{ margin-top:15px !important; }
.mt-20{ margin-top:20px !important; }
.mt-25{ margin-top:25px !important; }
.mt-30{ margin-top:30px !important; }
.mt-35{ margin-top:35px !important; }
.mt-40{ margin-top:40px !important; }
.mt-45{ margin-top:45px !important; }
.mt-50{ margin-top:50px !important; }
.mt-60{ margin-top:60px !important; }
.mt-70{ margin-top:70px !important; }
.mt-80{ margin-top:80px !important; }
.mt-90{ margin-top:90px !important; }
.mt-100{ margin-top:100px !important; }


.mb-5{ margin-bottom:5px !important; }
.mb-10{ margin-bottom:10px !important; }
.mb-15{ margin-bottom:15px !important; }
.mb-20{ margin-bottom:20px !important; }
.mb-25{ margin-bottom:25px !important; }
.mb-30{ margin-bottom:30px !important; }
.mb-35{ margin-bottom:35px !important; }
.mb-40{ margin-bottom:40px !important; }
.mb-45{ margin-bottom:45px !important; }
.mb-50{ margin-bottom:50px !important; }
.mb-60{ margin-bottom:60px !important; }
.mb-70{ margin-bottom:70px !important; }
.mb-80{ margin-bottom:80px !important; }
.mb-90{ margin-bottom:90px !important; }
.mb-100{ margin-bottom:100px !important; }

.pt-5{ padding-top:5px !important; }
.pt-10{ padding-top:10px !important; }
.pt-15{ padding-top:15px !important; }
.pt-20{ padding-top:20px !important; }
.pt-25{ padding-top:25px !important; }
.pt-30{ padding-top:30px !important; }
.pt-35{ padding-top:35px !important; }
.pt-40{ padding-top:40px !important; }
.pt-45{ padding-top:45px !important; }
.pt-50{ padding-top:50px !important; }
.pt-60{ padding-top:60px !important; }
.pt-70{ padding-top:70px !important; }
.pt-80{ padding-top:80px !important; }
.pt-90{ padding-top:90px !important; }
.pt-100{ padding-top:100px !important; }


.pb-5{ padding-bottom:5px !important; }
.pb-10{ padding-bottom:10px !important; }
.pb-15{ padding-bottom:15px !important; }
.pb-20{ padding-bottom:20px !important; }
.pb-25{ padding-bottom:25px !important; }
.pb-30{ padding-bottom:30px !important; }
.pb-35{ padding-bottom:35px !important; }
.pb-40{ padding-bottom:40px !important; }
.pb-45{ padding-bottom:45px !important; }
.pb-50{ padding-bottom:50px !important; }
.pb-60{ padding-bottom:60px !important; }
.pb-70{ padding-bottom:70px !important; }
.pb-80{ padding-bottom:80px !important; }
.pb-90{ padding-bottom:90px !important; }
.pb-100{ padding-bottom:100px !important; }


.btn-yellow {
    background: var(--secondary);
}

.btn-yellow:hover {
    background: #c29b27;
}


/* Route  */
.route-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.route-card{
    background: #fff;
    position:relative;
    overflow:hidden;
    box-shadow: 0px 2px 10px #0000000a;
}

.route-card img{
    /* border-radius: 10px; */
    /* height:220px; */
    /* object-fit:cover; */
    width: 100%;
}

.route-card h3{
    font-size: 22px;
    margin-bottom: 15px;
}

.route-card p{
    color: #464748;
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 15px;
}
/* Route end  */


section.ghp {
    background: #454545;
}

.route-grid.homepage.twogrid {
    grid-template-columns: repeat(2, 1fr);
}

.route-card.rcard2 img {
    height: unset;
}




/*========================*/
/* Breadcrumb  */
/*========================*/
.breadcrumb-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 100px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb-section:before {
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(1px);
    background-image: linear-gradient(45deg, black, transparent);
}

.breadcrumb_title {
    font-size: 34px;
    line-height: normal;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-weight: 600;
}

.breadcrumb-section ul.ps-0 {
    list-style: none;
    display: flex;
    font-size: 15px;
    column-gap: 10px;
    color: #111;
    justify-content: center;
    background: #fff;
    padding: 9px 20px !important;
    border-radius: 25px;
    margin: 0;
    align-items: center;
}

.breadcrumb-section ul.ps-0 li {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb-section ul.ps-0 li b {
    color: #447022;
    font-weight: 700;
}

.breadcrumb-section > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.breadcrumb-section ul.ps-0 li i {
    font-size: 13px;
}

/* Breadcrumb End  */



.position-relative {
    position: relative !important;
}


._buttom_shade {
    position: relative;
}

.text-white {
    color: #fff !important;
}

.text-left {
    text-align: left;
}

._buttom_shade::after {
    background-image: linear-gradient(45deg, #159649, #ffffff00);
    height: 3px;
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 33%;
}

.shadewhite::after {
    background-image: linear-gradient(45deg, #fff, #ffffff00);
}

.lede {
    font-size: 33px;
    font-weight: 600;
    color: #222;
}

.text-primary {
    color: #14562e !important;
}


ul.mylist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    row-gap: 7px;
}

ul.mylist li {
    display: flex;
    align-items: center;
    column-gap: 10px;
}


.row-reverse {
    flex-direction: row-reverse !important;
}

ul.mylist li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: #222;
    font-weight: 500;
    font-size: 17px;
}

header {
    width: 100%;
    padding: 12px 0;
}


.service-img {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #06451f;
    width: 500px;
}

.service-img img {
    width: 100%;
}


/*========================*/
/* Blog Details Page       */
/*========================*/
.blog-full-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-full-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.blog-content h1.lede {
    margin-top: 0;
}

.related-blogs-box {
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.related-blogs-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.related-blog-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.related-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-blog-item img {
    width: 75px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-blog-item a {
    text-decoration: none;
}

.related-blog-item h5 {
    font-size: 15.5px;
    line-height: 1.35;
    color: var(--dark);
    margin: 0;
    transition: color 0.2s ease;
}

.related-blog-item a:hover h5 {
    color: var(--primary);
}

@media (max-width: 991px) {
    .blog-full-img img {
        height: 280px;
    }
    .related-blogs-box {
        position: static;
        margin-top: 40px;
    }
}

._buttom_shade.text-center::after {
    right: 0;
    margin: 0 auto;
    background-image: linear-gradient(45deg, #ffffff00, #159649, #ffffff00);
}

.route-card .content_blog {
    padding: 15px 20px;
}

section.blog_sec {}

section.blog_sec h1.lede {
    font-size: 29px;
    font-weight: 500;
}

.eventList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.eventList li {
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #ffc107;
}

.blog-content {}

.blog-content h2, .blog-content h3 {
    font-size: 23px;
    margin-bottom: 15px;
    margin-top: 20px;
}

/* ================== PAGE RIGHT SIDE ==============  */
.page_right {}

.page_right img.bhelper_img {
    border-radius: 15px;
    border: 1px solid #263b1945;
}

 .whychoose.page_right {
    border: 1px solid #263b1945;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
        background: #fff;
}

 .whychoose.page_right .section-title {
    font-size: 24px;
    font-weight: 500;
}

.whychoose.page_right .about-item p {
    margin: 0;
}

.whychoose.page_right i {
    margin: 0;
    font-size: 14px;
    color: #b9b9b9;
}

.whychoose.page_right .about-item {
    align-items: center;
    gap: 10px;
}

.whychoose.page_right .about-list {
    row-gap: 10px;
}

.whychoose.page_right .section-sub.notesub {
    font-size: 15px;
    margin: 0;
}

.faq-cta.page_right {
    padding: 25px;
    border-radius: 15px;
    position: unset;
}



/* ================== PAGE RIGHT SIDE END ==============  */

.bookmarkicon{ position:relative; padding-left:25px; }
.bookmarkicon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background-image: url(../images/bookmark-icon.png);
    width: 14px;
    height: 24px;
    transform: translateY(-50%);
}


.route-grid.homepage {
    grid-template-columns: repeat(3,1fr);
}

.homepage .route-card {
    border-radius: 10px;
    padding: 15px;
}

.homepage .route-card img {
    border-radius: 10px;
    /* height: 220px; */
    object-fit: cover;
    width: 100%;
}

.homepage .route-card h3 {
    margin: 15px 0;
}



/* Mobile Menu   */
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
}

.mobile-menu .close-btn {
    position: relative;
    top: -10px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}

.mobile-menu .nav-logo img {
    max-height: 40px;
}

.mobile-menu .menu-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: var(--primary);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    padding-bottom: 50px;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    margin: 0;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > ul > li:last-child {
    border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li > a {
    position: relative;
    display: block;
    line-height: 26px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.5s ease-in-out all;
    text-transform: uppercase;
}

.mobile-menu .navigation li > a:hover {
    color: var(--secondary);
    transition: 0.5s ease-in-out all;
}

.mobile-menu .navigation li:hover > a, .mobile-menu .navigation li.current > a {
    color: #fff;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 17px;
    line-height: 44px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    width: 1px;
    height: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f106";
}

.mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul {
    display: none;
    padding: 0;
    margin: 0;
    background: #0d853e;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}


.ml-15 {
    margin-left: 15px;
}

.mobile-menu .navigation li > ul > li > ul {
    background: #5870b7;
}

.mobile-menu .navigation li.dropdown .dropdown-btn i:before {
    content: "\2b";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active i:before {
    content: "\f068";
}
/* Mobile Menu  End  */


















