@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
    --base-clr: #29880b;
    --base-rgb: 43, 137, 14;
    --btn-clr: #44992b;
    --btn-clr-dark: #29880b;
    --btn-rgb: 43, 137, 14;
    --base-title: #2b890e;
    --base-white: #29880b;
    --body-clr: #18191b;
    --light-clr: #ded6ff;
    --title-clr: #18191b;
    --title-rgb: 24, 25, 27;
    --bs-body-bg: #fcfcfc;
    --bs-body-bg-rgb: 252, 252, 252;
    --section-bg: #ffffff;
    --section-bg-2: #ffffff;
    --section-light: #f3f9ff;
    --dark-clr: #2a880c;
    --dark-rgb: 0, 68, 122;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --footer: #001f35;
    --footer-bottom: #dbf1ff;
    --primary-clr: #36901b;
    --primary-rgb: 12, 103, 163;
    --border-clr: #eeeeee;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #29880b;
    --border-dark-only: transparent;
    --header-bg: rgba(227, 242, 252, 0.95);
    --heading-fonts: "Helvetica", sans-serif;
    --body-fonts: "Roboto", sans-serif;
    --base-shadow-sm: 0 0 1px var(--base-clr), 0 0 3px var(--base-clr);
    --base-shadow: 0 0 1px var(--base-clr), 0 0 2px var(--base-clr), 0 0 3px var(--base-clr), 0 0 5px var(--base-clr), 0 0 7px var(--base-clr);
    --shadow: 0 0 5px rgba(var(--title-rgb), 0.2);
 
}


.dark-theme {
    --base-clr: #399d19;
    --btn-rgb: 43, 137, 14;
    --btn-clr: #29880b;
    --base-rgb: 43, 137, 14;
    --base-title: #98ff9b;
    --base-white: #fff;
    --body-clr: #a3d0ac;
    --title-clr: #9aff98;
    --title-rgb: 152, 211, 255;
    --bs-body-bg: #121213;
    --bs-body-bg-rgb: 18, 18, 19;
    --section-bg: rgb(17 43 19 / 60%);
    --section-bg-2: #152014;
    --dark-clr: #142114;
    --dark-rgb: 20, 33, 32;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --border-clr: #283c40;
    --border-dark: #294028;
    --border-dark-only: #283c40;
    --header-bg: #11202be6;
    --footer: #063500;
    --footer-bottom: #152111;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--body-clr);
    line-height: 26px;
    overflow-x: hidden;
    font-family: var(--body-fonts);
    background: var(--bs-body-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body footer {
    margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title-clr);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
    line-height: 32px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 15px;
    line-height: 24px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 14px;
}

p {
    margin-top: -9px;
}

p:last-child {
    margin-bottom: -7px !important;
}

@media (min-width: 576px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    h4 {
        font-size: 16px;
        line-height: 26px;
    }

    h5 {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    h4 {
        font-size: 18px;
        line-height: 26px;
    }

    h5 {
        font-size: 16px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-decoration: none;
}

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

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.py-25 {
    padding: 25px 0;
}

.main-footer {
    background: black;
}

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

.footer-bottom {
    /*background: var(--footer-bottom);*/
    background: black;
    /*color: var(--btn-clr);*/
    color: white;
}

.footer-bottom a {
    color: var(--btn-clr);
}

.dark-theme .footer-bottom {
    color: var(--title-clr);
}

.dark-theme .footer-bottom a {
    color: var(--title-clr);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: block;
}

.social-icons a img {
    width: 20px;
}

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

.footer__wrapper-widget {
    width: 0;
    flex-grow: 1;
    font-size: 12px;
    line-height: 14px;
    text-align: justify;
    padding: 55px 23px 53px;
}

.footer__wrapper-widget .logo {
    display: block;
    margin-bottom: 23px;
}

.footer__wrapper-widget .logo img {
    max-width: 100%;
}

.footer__wrapper-widget p {
    max-width: 218px;
    margin-bottom: 16px;
    color: #f6f6f6;
}

.footer__wrapper-widget .social-icons {
    margin-bottom: 34px;
}

.footer__wrapper-widget:first-child {
    max-width: 317px;
    width: 100%;
}

.footer__wrapper-widget .cont {
    max-width: 244px;
    margin: 0 auto;
}

.footer__wrapper-widget:not(:last-child) {
    border-right: 1px solid rgba(var(--btn-rgb), 0.5);
}

@media (min-width: 1280px) {
    .footer__wrapper-link {
        padding-left: 25px;
    }
}

.footer__wrapper-link li a {
    color: #f1f1f1;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    padding: 8px 0;
}

.footer__wrapper-link li a:hover {
    color: var(--base-clr);
}

.footer__wrapper-contact {
    text-align: center;
    line-height: 20px;
    color: var(--white-clr);
}

.footer__wrapper-contact .icon {
    height: 50px;
    margin-bottom: 30px;
}

.footer__wrapper-contact h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-clr);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.footer__wrapper-contact a {
    color: var(--white-clr);
}

.footer__wrapper-contact a:not(.cmn--btn):hover {
    color: var(--base-clr);
}

@media (max-width: 1199px) {
    .footer__wrapper-widget:first-child {
        max-width: 250px;
    }
}

@media (max-width: 991px) {
    .footer__wrapper-widget:first-child {
        max-width: 50%;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) {
        width: 50%;
        border: none;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) .footer__wrapper-link {
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer__wrapper-widget {
        padding: 50px 15px;
    }
}

@media (max-width: 575px) {
    .footer__wrapper {
        padding: 70px 0;
    }

    .footer__wrapper-widget {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 35px;
        border: none !important;
    }

    .footer__wrapper-widget:not(:last-child) {
        margin-bottom: 25px;
    }

    .footer__wrapper-widget .footer__wrapper-link {
        max-width: 100% !important;
    }

    .footer__wrapper-widget .cont {
        max-width: 100%;
    }

    .footer__wrapper-widget .cont .social-icons {
        margin-bottom: 25px;
    }

    .footer__wrapper-contact {
        text-align: left;
    }

    .footer__wrapper-contact .icon {
        height: 40px;
        margin-bottom: 15px;
    }

    .footer__wrapper-contact h6 {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    footer .container {
        max-width: 100%;
        padding: 0;
    }
}

.app-btns {
    display: flex;
    gap: 10px;
}

.app-btns a {
    width: calc(50% - 5px);
}

.navbar-top-wrapper {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    padding: 10px 0;
    min-height: 40px;
}

.navbar-top-wrapper .tel-link {
    display: flex;
    align-items: center;
    line-height: 1;
}

.navbar-top-wrapper .tel-link i {
    margin-right: 4px;
    transform: translateY(-1px) rotate(18deg);
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 575px) {
    .navbar-top-wrapper {
        font-size: 14px;
    }
}

.mode--toggle {
    width: 42px;
    height: 20px;
    border-radius: 10px;
    background: rgba(141, 153, 174, 0.5);
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    z-index: 99;
}

.mode--toggle img {
    transition: all ease 0.3s;
    position: absolute;
    left: 2px;
    top: 1px;
    height: 18px;
    border-radius: 50%;
}

.language-bar {
    color: var(--title-clr);
    position: relative;
}

.language-bar button {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.language-bar button img {
    width: 18px;
    height: 13px;
    object-fit: cover;
}

.language-bar button span {
    padding-left: 7px;
    color: var(--title-clr);
}

.language-bar .lang-btn {
    padding: 3px 12px;
    margin: 0 10px;
    height: 20px;
}

.language-bar ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(141, 153, 174, 0.5);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.4s;
    background: var(--white-clr);
    z-index: 99;
}

.language-bar ul li {
    padding: 0;
}

.language-bar ul li button {
    height: 35px;
    padding: 0 27px 0 23px;
}

.language-bar ul li button span {
    color: var(--dark-clr);
    font-size: 14px;
}

.language-bar > button:focus ~ ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.navbar-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px 17px;
    /*background: var(--header-bg);*/
    background: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    /*border-radius: 0px 0px 10px 10px;*/
    transition: all ease 0.3s;
    box-shadow: 0px 1px 6px -2px;
}

.navbar-bottom-wrapper .menu {
    display: flex;
    margin-left: auto;
    transition: all ease 0.3s;
    transform-origin: top;
}

.navbar-bottom-wrapper .menu li {
    padding: 2.5px;
}

.navbar-bottom-wrapper .menu li a {
    padding: 10px;
    font-size: 14px;
    color: var(--title-clr);
    text-transform: capitalize;
    font-weight: 500;
}

/* .navbar-bottom-wrapper .menu li a span {
    position: relative;
} */

/* .navbar-bottom-wrapper .menu li a > span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 2px;
    background: var(--base-clr);
    border-radius: 2px;
    width: 0;
    transition: 0.3s ease-in-out;
} */

.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active {
    color: var(--base-clr);
}

.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a.active span::before,
.navbar-bottom-wrapper .menu li a.active span::before {
    width: 100%;
}

@media (max-width: 991.9px) {
    .navbar-bottom-wrapper .menu {
        position: absolute;
        top: 100%;
        flex-direction: column;
        width: 100%;
        padding: 30px 20px;
        background: var(--header-bg);
        left: 0;
        border-top: 1px solid var(--border-clr);
    }

    .navbar-bottom-wrapper .menu li {
        padding: 0;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 5px;
        display: block;
    }

    .navbar-bottom-wrapper .menu:not(.active) {
        transform: scaleY(0);
    }
}

.navbar-bottom-wrapper .logo {
    height: 50px;
    width: 220px;
}

.navbar-bottom-wrapper .logo img {
    object-fit: contain;
    width: 70%;
    height: 100%;
}

@media (max-width: 575px) {
    .navbar-bottom-wrapper {
        padding: 10px;
    }

    .navbar-bottom-wrapper .logo {
        width: 0;
        flex-grow: 1;
        margin-right: 10px;
        max-width: 240px;
    }

    .navbar-bottom-wrapper .cmn--btn {
        font-size: 12px;
        padding: 3px 12px;
        font-weight: 400;
    }
}

.navbar-top {
    /*background: rgba(var(--bs-body-bg-rgb), 0.9);*/
    background: black;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    z-index: 999;
    padding: 0 25px;
}

header {
    position: sticky;
    top: 0;
    z-index: 9;
}

/*Dark CSS For Header*/
.dark-theme .mode--toggle img {
    transform: translateX(21px);
}

.dark-theme .navbar-top-wrapper .text--base {
    color: var(--white-clr) !important;
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: var(--title-clr);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 10px);
    -ms-transform: rotate(45deg) translate(3px, 10px);
    transform: rotate(45deg) translate(3px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -10px);
    -ms-transform: rotate(-45deg) translate(3px, -10px);
    transform: rotate(-45deg) translate(3px, -10px);
}



.banner-section {
    padding: 0 0 60px 0;
}
.banner-wrapper {
 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    height: 500px;
    padding: 2rem;
    color: #fff;
    /*border-radius: 10px;*/
    /*overflow: hidden;*/
    background-size: contain;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    object-fit: center;
    /* height: 500px; */
    padding: 2rem;
    color: #fff;
}

.banner-content-wrapper {
    padding-right: 20px;
}

.banner-content .subtitle {
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content .subtitle::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: var(--btn-clr);
    margin-right: 10px;
    transform: translateY(-3px);
    border-radius: 2px;
}

.banner-content .title {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}


.banner-content .txt {
    font-size: 16px;
    margin: 0;
    margin-bottom: 45px;
}

.banner-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,    /* left side clear */
        rgb(0 0 0 / 90%) 50%,       /* middle slightly dark */
        rgba(0, 0, 0, 0.85) 100%      /* right side dark */
    );
    
    z-index: 1;
}
/* Optional blur layer */
.banner-wrapper::after {
    content: "";
    position: absolute;
    inset: 50% 0 0 50%; /* apply blur mostly to the right half */
    background: rgba(0, 0, 0, 0.5);
    filter: blur(20px);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
    margin-right: 5%;
}


.banner-content h1,
.banner-content p,
.banner-content h6 {
    color: #fff !important;
}
@media (max-width: 768px) {
  .banner-wrapper {
    justify-content: center;
    align-items: flex-end;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 400px; /* adjust based on design */
    background-position: top center; /* show face/subject at top */
    background-color: black;
  }

  /* Change gradient direction for mobile */
  .banner-wrapper::before {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,     /* bottom dark */
      rgb(0 0 0 / 72%) 50%,     /* middle soft fade */
      rgba(255, 255, 255, 0) 100% /* top clear */
    );
  }

  /* Remove side blur for mobile */
  .banner-wrapper::after {
    display: none;
  }

  .banner-content {
    margin: 0;
    max-width: 100%;
    text-align: center;
    z-index: 2;
  }

  .banner-content h1,
  .banner-content p,
  .banner-content h6 {
    color: #fff;
  }
}

/* Mobile (≤767px): switch to 2 columns */
@media (max-width: 767px) {
   
    .banner-content {
        text-align: center;
    }

    .banner-content .title {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 350px;
    }
}

@media (max-width: 991px) {
    .banner-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-content .title {
        margin-bottom: 15px;
    }

    .banner-content .txt {
        margin-bottom: 20px;
    }
}

.banner-thumb {
    width: 0;
    max-width: 700px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-thumb-wrapper {
    overflow: hidden;
    height: 200px;
}

.banner-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.banner-thumb img:hover {
    transform: scale(1.05);
}

@media (min-width: 1400px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        /* max-width: 370px; */
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 315px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 485px;
    }
}

@media (max-width: 1399px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 350px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 278px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 428px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb-wrapper {
        height: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 310px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 234px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 364px;
    }
}

@media (max-width: 991px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 370px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 314px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 484px;
    }
}

@media (max-width: 767px) {
    .banner-thumb {
        gap: 8px;
    }

    .banner-thumb-wrapper {
        /* height: 160px; */
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: calc(65% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: calc(35% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: calc(30% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: calc(70% - 4px);
    }
}

@media (max-width: 767px) and (max-width: 450px) {
    .banner-thumb-wrapper {
        height: 140px;
    }
}

@media (max-width: 767px) and (max-width: 325px) {
    .banner-thumb-wrapper {
        height: 130px;
    }
}



.app-btns {
    gap: 15px;
}

.app-btns a {
    display: block;
    width: calc(50% - 8px);
    max-width: 130px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.app-btns a:hover {
    box-shadow: var(--base-shadow-sm);
    filter: brightness(1.1);
}

.app-btns a img {
    width: 100%;
}

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

.section-title {
    text-align: center;
    max-width: 470px;
    margin: 0 auto 25px;
}

@media (min-width: 992px) {
    .section-title {
        max-width: 670px;
        margin-bottom: 35px;
    }
}

/*Service Section*/
.service__item {
    padding: 45px 20px 24px;
    background: var(--section-bg);
    box-shadow: 0px 0px 15px #6c757d1c;
    margin: 10px;
    color: var(--body-clr);
    transition: box-shadow 0.3s ease;
    border-radius: 10px;
    display: flex;
      flex-direction: column;
      align-items: center; /* centers the icon horizontally */
      text-align: center;  /* centers text as well */
}

.service__item:hover {
    box-shadow: var(--shadow);
}

@media (min-width: 768px) and (max-width: 991px) {
    .service__item {
        padding-top: 35px;
    }
}

.service__item-icon {
    height: 80px;
    width: 80px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service__item-icon img {
    width: 100%;
    height: 100%;
    border-radius:10px;
}

.service__item-content {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

.service__item-content .title {
    color: var(--base-title);
    margin-bottom: 15px;
}

.service__item-content .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 24px;
}

.service__item-btn {
    border: 1px solid var(--btn-clr);
    border-radius: 18px;
    color: var(--base-clr);
    font-size: 14px;
    line-height: 14px;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service__item-btn:hover {
    color: var(--white-clr);
    background: var(--btn-clr);
}

.service__item::before {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

#landing-loader {
    background: #fcfcfc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    margin: -10px;
    position: relative;
}

.slider-wrapper .service__item-popup {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    min-height: calc(100% - 20px);
    background: var(--section-bg);
    z-index: 9;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(var(--title-rgb), 0.073);
}

.slider-wrapper .service__item-popup.active {
    transition: 300ms all ease-in-out;
}

.slider-wrapper .service__item-popup-inner {
    display: flex;
    align-items: center;
    padding: 25px 40px 20px 0;
    flex-grow: 1;
}

.slider-wrapper .service__item-popup-inner .left-content {
    width: 284px;
}

.slider-wrapper .service__item-popup-inner .right-content {
    width: 0;
    flex-grow: 1;
    text-align: center;
    line-height: 1.5;
}

.slider-wrapper .service__item-popup-inner .right-content .top-text {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-bottom: 1.4375rem;
    color: var(--body-clr);
}

.slider-wrapper .service__item-popup:not(.active) {
    transition: 300ms all ease-in-out;
    transform: scale(0.95);
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 767px) {
    .slider-wrapper .service__item-popup:not(.active) {
        transform: translateY(30px);
    }
}

@media (max-width: 991px) {
    .slider-wrapper .service__item-popup-inner .left-content {
        width: 200px;
    }

    .slider-wrapper .service__item-popup-inner .right-content {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .slider-wrapper .service__item-popup-inner {
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .slider-wrapper .service__item-popup-inner .service__item {
        margin-bottom: 10px;
    }

    .slider-wrapper .service__item-popup-inner .service__item-icon {
        height: 60px;
        margin-bottom: 10px;
    }

    .slider-wrapper .service__item-popup-inner .left-content,
    .slider-wrapper .service__item-popup-inner .right-content {
        width: 100%;
    }

    .slider-wrapper .service__item-popup-inner .right-content {
        margin-top: 10px;
    }
}

.service-inner-slider-item img {
    aspect-ratio: 1;
    margin-bottom: 15px;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.service-inner-slider-item span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.5;
}

.slide-icon {
    width: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--base-rgb), 0.05);
    cursor: pointer;
    color: var(--base-clr);
    transition: all ease 0.2s;
}

.slide-icon:hover {
    background: rgba(var(--base-rgb), 0.3);
}

.service-slide-nav {
    position: absolute;
    top: -9px;
    right: 12px;
    display: flex;
    gap: 15px;
}

@media (max-width: 575px) {
    .service-slide-nav {
        display: none;
    }
}

.close__popup {
    position: absolute;
    right: 10px;
    top: 10px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--title-clr);
}

/*About Section*/
/*.about__wrapper {*/
/*    display: flex;*/
/*    flex-wrap: wrap-reverse;*/
/*    align-items: flex-end;*/
/*    background: rgba(var(--btn-rgb), 0.96);*/
/*    border-radius: 10px;*/
/*}*/

/*.about__wrapper-content {*/
/*    padding: 75px 34px 38px 43px;*/
/*    width: 100%;*/
/*    max-width: 527px;*/
/*    border-radius: 10px;*/
/*}*/

/*.about__wrapper-content p {*/
/*    margin-bottom: 20px;*/
/*    font-size: 18px;*/
/*    line-height: 26px;*/
/*    text-align: justify;*/
/*}*/

/*.about__wrapper-thumb {*/
/*    width: 0;*/
/*    flex-grow: 1;*/
/*    padding: 25px 27px 25px 0;*/
/*    position: relative;*/
/*    min-height: 100%;*/
/*}*/

/*.about__wrapper-thumb .main-img {*/
/*    position: relative;*/
/*    z-index: 3;*/
/*    width: 100%;*/
/*    transition: transform 0.3s ease-in-out;*/
/*    border-radius: 10px;*/
/*}*/

/*.about__wrapper-thumb .main-img:hover {*/
/*    transform: scale(1.02);*/
/*}*/

/*.about__wrapper-thumb .bg-img {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    z-index: -1;*/
/*    border-radius: 10px;*/
/*    height: 100%;*/
/*    left: 176px;*/
    /*width: 175%;*/
/*    overflow: hidden;*/
/*}*/

/*.about__wrapper-thumb .bg-img::before,*/
/*.about__wrapper-thumb .bg-img::after {*/
/*    border-radius: 5px;*/
/*    content: "";*/
/*    inset: 0;*/
/*    position: absolute;*/
/*}*/

/*.about__wrapper-thumb .bg-img::before {*/
/*    background: rgba(var(--btn-rgb), 0.96);*/
/*}*/

/*.about__wrapper-thumb .bg-img::after {*/
/*    inset: 7px;*/
/*    background: var(--bs-body-bg);*/
/*    opacity: 0.1;*/
/*}*/

/*.about__wrapper-thumb .bg-img img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*@media (max-width: 1199px) {*/
/*    .about__wrapper-thumb .main-img {*/
/*        max-height: 450px;*/
/*        height: 300px;*/
/*        object-fit: cover;*/
/*    }*/
/*    .about__wrapper-content p {*/
/*        font-size: 14px;*/
/*        line-height: 22px;*/
/*    }*/

/*    .about__wrapper-thumb .bg-img {*/
/*        left: 40px;*/
/*    }*/
/*}*/

/*@media (max-width: 1199px) {*/
/*    .about__wrapper-content {*/
/*        max-width: 470px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .about__wrapper-content {*/
/*        max-width: 100%;*/
/*        padding: 5px 34px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) and (max-width: 991px) {*/
/*    .about__wrapper-content {*/
/*        padding: 30px 15px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .about__wrapper-thumb {*/
/*        padding: 25px 25px 0;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) and (max-width: 575px) {*/
/*    .about__wrapper-thumb {*/
/*        padding: 15px 15px 0;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .about__wrapper-thumb .bg-img {*/
/*        left: 0;*/
/*        height: calc(100% - 50px);*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .about__wrapper-thumb .main-img {*/
/*        height: unset;*/
/*    }*/
/*}*/

/*About Section*/
.about__wrapper {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  background: linear-gradient(135deg, #1a1403 0%, rgba(var(--btn-rgb), 0.92) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

/* Added decorative overlay pattern for depth */
.about__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.about__wrapper-content {
  padding: 80px 50px 60px 60px;
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* Enhanced title styling with better spacing */
.about__wrapper-content .section-title {
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about__wrapper-content p {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.75;
  text-align: left;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Enhanced button styling with modern effects */
.about__wrapper-content .cmn--btn2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  /*background: rgba(255, 255, 255, 0.15);*/
  background: #44992b;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about__wrapper-content .cmn--btn2:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about__wrapper-content .cmn--btn2 i {
  transition: transform 0.3s ease;
  font-size: 18px;
}

.about__wrapper-content .cmn--btn2:hover i {
  transform: translateX(4px);
}

.about__wrapper-thumb {
  width: 0;
  flex-grow: 1;
  padding: 40px 40px 40px 20px;
  position: relative;
  min-height: 100%;
  z-index: 2;
}

/* Enhanced image styling with better shadows and effects */
.about__wrapper-thumb .main-img {
  position: relative;
  z-index: 3;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.about__wrapper-thumb .main-img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Redesigned background image container with modern styling */
.about__wrapper-thumb .bg-img {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 1;
  border-radius: 16px;
  height: calc(100% + 40px);
  left: 140px;
  overflow: hidden;
}

.about__wrapper-thumb .bg-img::before,
.about__wrapper-thumb .bg-img::after {
  border-radius: 16px;
  content: "";
  inset: 0;
  position: absolute;
}

/* Enhanced background overlay with gradient */
.about__wrapper-thumb .bg-img::before {
  background: linear-gradient(135deg, rgba(var(--btn-rgb), 1) 0%, rgba(var(--btn-rgb), 0.85) 100%);
  opacity: 0.6;
}

.about__wrapper-thumb .bg-img::after {
  inset: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.about__wrapper-thumb .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(1px);
}

/* Improved responsive design for tablets */
@media (max-width: 1199px) {
  .about__wrapper-content {
    padding: 60px 40px 50px 50px;
    max-width: 520px;
  }

  .about__wrapper-thumb .main-img {
    max-height: 450px;
    height: 320px;
    object-fit: cover;
  }

  .about__wrapper-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about__wrapper-thumb .bg-img {
    left: 80px;
  }
}

@media (max-width: 991px) {
  .about__wrapper {
    border-radius: 16px;
  }

  .about__wrapper-content {
    max-width: 100%;
    padding: 50px 40px;
  }

  .about__wrapper-content p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .about__wrapper-thumb {
    padding: 40px 40px 0;
  }

  .about__wrapper-thumb .bg-img {
    left: 20px;
    right: 20px;
    height: calc(100% - 40px);
    top: 0;
  }

  .about__wrapper-thumb .main-img {
    height: unset;
    max-height: 400px;
    object-fit: cover;
  }
}

/* Enhanced mobile responsive design */
@media (max-width: 575px) {
  .about__wrapper {
    border-radius: 12px;
  }

  .about__wrapper-content {
    padding: 40px 24px;
  }

  .about__wrapper-content .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about__wrapper-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .about__wrapper-content .cmn--btn2 {
    padding: 12px 28px;
    font-size: 15px;
  }

  .about__wrapper-thumb {
    padding: 30px 24px 0;
  }

  .about__wrapper-thumb .main-img {
    border-radius: 12px;
    max-height: 300px;
  }

  .about__wrapper-thumb .bg-img {
    left: 10px;
    right: 10px;
    border-radius: 12px;
    height: calc(100% - 30px);
  }

  .about__wrapper-thumb .bg-img::after {
    inset: 8px;
    border-radius: 8px;
  }
}


/*Counter Section*/
.counter__item {
    display: flex;
    /* align-items: center; */
    /*padding: 25px 14px 25px 12px;*/
    background: var(--section-bg);
    box-shadow: 0px 0px 15px #6c757d1c;
    border-radius: 10px;
    height: 100%;
}

.counter__item-left {
    width: 100px;
    /*height: 50px;*/
}

.counter__item-left img {
    width: 8rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 10px;
    
}

.counter__item-right {
    width: 0;
    padding: 34px 0 0 14px;
    flex: 1;
    overflow-wrap: break-word;
    /*margin-left: 33px;*/
}

.counter__item-right h3 {
    line-height: 1.175;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .counter__item-right h3 {
        font-size: 22px;
    }
}

/*div[class*="col"]:nth-of-type(3n + 1) > .counter__item {*/
/*    color: #7f6daf;*/
/*}*/

/*div[class*="col"]:nth-of-type(3n + 2) > .counter__item {*/
/*    color: #c67123;*/
/*}*/

/*div[class*="col"]:nth-of-type(3n + 3) > .counter__item {*/
/*    color: #ff5a5a;*/
/*}*/

/*CTA Section*/
.cta-wrapper {
    border-radius: 10px;
    position: relative;
    padding: 60px 30px;
    overflow: hidden;
}

.cta-wrapper::before {
    background: linear-gradient(78.92deg, rgb(135 191 135 / 58%) -22.94%, rgb(135 191 135 / 63%) 18.6%, rgb(135 191 135) 47.48%, rgb(135 191 135 / 95%) 25.92%);
    border-radius: 10px;
    border-radius: 10px;
    inset: 0;
    content: "";
    position: absolute;
}

.cta-wrapper .content {
    position: relative;
    z-index: 1;
    max-width: 405px;
    margin: 0 auto;
    line-height: 1.4;
}

.cta-wrapper .content .title {
    margin-bottom: 24px;
}

.cta-wrapper .cmn--btn {
    padding: 12px 36px;
    border-radius: 30px;
    margin-top: 30px;
    position: relative;
}

@media (min-width: 992px) {
    .cta-wrapper .cmn--btn {
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 60px;
        border: none;
    }
}

.cta-wrapper .left-icon {
    position: absolute;
    right: calc(50% + 130px);
    bottom: 0;
}

@media (min-width: 992px) {
    .cta-wrapper .left-icon {
        right: calc(50% + 230px);
        bottom: -20px;
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        padding: 45px 20px;
    }
}

.cta-main {
    border-radius: 10px;
    overflow: hidden;
}

.text-btn-title {
    color: var(--white-clr);
}

/*Dark CSS For CTA*/
.dark-theme .text-btn-title {
    color: var(--title-clr);
}

.dark-theme .cta-wrapper::before {
    linear-gradient(89.92deg, rgb(20 33 17 / 80%) 0.06%, rgb(17 33 18 / 70%) 52.6%, rgb(17 33 18 / 80%) 75.48%, rgb(19 33 17 / 80%) 99.92%)
}

/*NewsLetter Section*/
.newsletter-section {
    padding: 70px 0;
    position: relative;
}

.newsletter-section::before {
    content: "";
    inset: 0;
    position: absolute;
    background: #ecf7ff;
    opacity: 0.7;
}

.newsletter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.newsletter-wrapper .content {
    width: 100%;
    max-width: 405px;
    line-height: 20px;
    margin-right: 20px;
    color: var(--base-title);
}

.newsletter-wrapper .content .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--base-white);
    margin-bottom: 6px;
}

.newsletter-wrapper .content p {
    margin: 0;
}

@media (max-width: 991px) {
    .newsletter-wrapper .content {
        max-width: 340px;
    }
}

@media (max-width: 767px) {
    .newsletter-wrapper .content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.newsletter-wrapper .newsletter-right {
    width: 120px;
    flex-grow: 1;
    max-width: 596px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background: var(--bs-body-bg);
    border: none;
    box-shadow: none;
    border-radius: 30px;
    height: 55px;
    color: var(--title-clr);
    padding: 0 130px 0 20px;
}

.newsletter-form .cmn--btn {
    top: 3px;
    right: 3px;
    width: 122px;
    height: 49px;
    border-radius: 25px;
    position: absolute;
}

@media (max-width: 767px) {
    .newsletter-form .form-control {
        height: 45px;
    }

    .newsletter-form .cmn--btn {
        height: 39px;
    }
}

.bg__img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*Dark CSS For Newsletter*/
.dark-theme .newsletter-section::before {
    background: #111a21;
}

/*Testimonial Section*/
.testimonial__item {
    text-align: center;
    padding: 41px 28px 43px;
    /* margin: 20px; */
    line-height: 1.6;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 1 !important;
    background: var(--section-bg-2);
}

.testimonial__item-wrapper {
    opacity: 0.4;
}

.swiper-slide-active .testimonial__item-wrapper {
    opacity: 1;
}

.testimonial__item-img {
    width: 120px;
    border-radius: 5px;
    margin: 0 auto;
}

.testimonial__item-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 5px;
    object-fit: cover;
}

.testimonial__item-cont {
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .testimonial__item {
        font-size: 12px;
        padding: 25px 15px 25px;
    }

    .testimonial__item-img {
        width: 80px;
    }
}

.testimonial-section {
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-slider blockquote {
    margin: 15px 0 0;
}

.testimonial-slider .swiper-slide-active {
    background: var(--section-bg-2);
    box-shadow: 0px 0px 20px rgba(4, 97, 165, 0.15);
    border-radius: 5px;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #44992b;
}

.swiper-slide-next .testimonial__item,
.swiper-slide-prev .testimonial__item {
    transform: scale(0.75);
    opacity: 0.7;
    z-index: 5;
}

.swiper-slide-next-next .testimonial__item,
.swiper-slide-prev-prev .testimonial__item {
    transform: scale(0.65);
    opacity: 0.2;
    z-index: 1;
}

.swiper-slide-next-next,
.swiper-slide-prev-prev {
    transform: scale(0.65);
    opacity: 0.2;
    z-index: 1;
}

@media (max-width: 991px) {
    .swiper-slide {
        margin: 12px !important;
    }

    .swiper-slide:not(.swiper-slide-active) .testimonial__item {
        transform: scale(0.95) !important;
    }

    .swiper-slide-next-next,
    .swiper-slide-prev-prev {
        display: none;
    }

    .swiper-slide-next .testimonial__item,
    .swiper-slide-prev .testimonial__item {
        transform: scale(0.75) !important;
    }
}

@media (max-width: 767px) {
    .testimonial-slider {
        max-width: 360px;
        margin: 0 auto;
    }

    .swiper-wrapper {
        overflow: visible;
    }
}

.slider-bottom {
    margin-top: 10px;
}

.slider-bottom .owl-btn {
    font-size: 26px;
    font-weight: 700;
    color: var(--white-clr);
    cursor: pointer;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn i {
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn:hover i {
    transform: translateX(5px) scale(1.1);
}

.slider-bottom .owl-btn:first-child:hover i {
    transform: translateX(-5px) scale(1.1);
}

.slider-bottom .owl-btn-next:hover i {
    transform: translateX(-5px) scale(1.1);
}

.app-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    /*box-shadow: 0px 0px 5px 0px #64636363;*/
    border-radius: 10px;
}

.app-slider-wrapper .app-content {
    width: 100%;
    max-width: 686px;
    text-align: center;
    padding: 36px 30px 42px;
    background: var(--section-bg);
  
}

.app-slider-wrapper .app-content .subtitle {
    margin-bottom: 15px;
    color: var(--base-title);
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-content {
        max-width: 620px;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-content {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper .app-content {
        max-width: 100%;
        padding: 40px 20px 25px;
    }
}

.app-slider-wrapper .app-thumb {
    width: 320px;
    height: 511px;
    position: relative;
    margin-left: 80px;
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 40px;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 20px;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper .app-thumb {
        margin: 25px auto 0;
        height: unset;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 52%;
    }
}

@media (max-width: 575px) {
    .app-slider-wrapper .app-thumb {
        width: 290px;
    }

    .app-slider-wrapper .app-thumb .main-thumb,
    .app-slider-wrapper .app-thumb .smaller-thumb {
        width: 200px;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 60%;
        transform: translateY(-50%) scale(0.6) !important;
        right: 120px;
    }
}

.smaller-thumb,
.main-thumb {
    width: 246px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.smaller-thumb .main-img,
.main-thumb .main-img {
    width: 100%;
}

.smaller-thumb .app-slider,
.main-thumb .app-slider {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    width: calc(100% - 20px);
    z-index: -1;
    overflow: hidden;
    border-radius: 25px;
}

.smaller-thumb {
    top: 50%;
    transform: translateY(-50%) scale(0.84);
    position: absolute;
    z-index: 1;
    right: 140px;
}

.scroll-elem {
    top: -100px;
    visibility: hidden;
    opacity: 0;
    position: relative;
}

/*.page-header {*/
/*    border-radius: 10px;*/
/*    position: relative;*/
/*    padding: 60px 0;*/
/*    text-align: center;*/
/*}*/

.page-header {
    position: relative;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: no-repeat center center / cover;
    border-radius: unset;
    padding: 60px 0px;
}

.custom-container{
    width: 95%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.page-header::before {
    content: "";
    inset: 0;
    position: absolute;
    border-radius: 10px;
    background: rgba(var(--btn-rgb), 0.5);
}

.page-header .title {
    position: relative;
    z-index: 1;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
}

@media (max-width: 575px) {
    .page-header .title {
        font-size: 24px;
    }
}

.form--control:not(button) {
    background: var(--bs-body-bg) !important;
    border: 1px solid var(--border-clr);
    box-shadow: none !important;
    outline: none;
    padding: 0 15px;
    border-radius: 5px;
    color: var(--title-clr) !important;
}

.form--control:not(button):focus {
    border-color: var(--btn-clr) !important;
}

.form--control:not(button)::placeholder {
    color: var(--body-clr) !important;
}

.form--control {
    height: 45px;
}

button.form--control {
    height: 45px;
    width: auto;
    border-radius: 25px;
    min-width: 141px;
}

textarea.form--control {
    height: 120px;
    padding: 20px;
}

/*.dark-theme .page-header {*/
/*    background: rgba(var(--btn-rgb), 0.3);*/
/*}*/

.contact__item {
    padding: 29px 30px;
    line-height: 1.5;
    box-shadow: 0px 4px 10px rgba(var(--title-rgb), 0.06);
    background: var(--bs-body-bg);
    border-radius:10px;
}

.contact__item * {
    transition: all ease 0.3s;
}

.contact__item-icon {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 9px;
}

.contact__item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 9px;
}

.contact__item ul li a {
    color: var(--body-clr);
}

.contact__item:hover ul li,
.contact__item:hover ul li a,
.contact__item:hover .contact__item-title,
.contact__item:hover .contact__item-icon {
    color: var(--base-clr);
}

@media (max-width: 450px) {
    .contact__item {
        padding: 15px;
        font-size: 12px;
    }

    .contact__item-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact__item-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

.shadow-form {
    box-shadow: 0px 0px 15px rgba(var(--title-rgb), 0.07);
    padding: 30px 31px 33px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.cmn--btn {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-clr);
    background: var(--btn-clr);
    padding: 4px 20px;
    line-height: 25px;
    border-radius: 18px;
    border: 1px solid var(--btn-clr);
    transition: all ease 0.3s;
}

.cmn--btn:hover {
    color: var(--white-clr) !important;
    /* opacity: 0.8; */
    background: var(--btn-clr-dark);
}

.cmn--btn2 {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--white-clr);
    background: #e9ecef4f;
    padding: 5px 16px;
    line-height: 26px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmn--btn2 i {
    font-size: 18px;
    margin-left: 5px;
    font-weight: 700;
}

.cmn--btn2:hover {
    color: var(--white-clr);
    /* filter: brightness(0.8); */
    background: var(--btn-clr);
}

.bg--body {
    background-color: var(--bs-body-bg) !important;
}

.bg--section {
    background-color: var(--section-bg) !important;
}

.btn--base,
.badge--base,
.bg--base {
    background-color: var(--base-clr) !important;
    border-color: var(--base-clr) !important;
}

.btn--title,
.badge--title,
.bg--title {
    background-color: var(--title-clr) !important;
    border-color: var(--title-clr) !important;
}

.text--primary {
    color: #0c67a3 !important;
}

.text--secondary {
    color: #6b9966 !important;
}

.text--success {
    color: #0ead69 !important;
}

.text--danger {
    color: #d90429 !important;
}

.text--warning {
    color: #ee9b00 !important;
}

.text--info {
    color: #00b4d8 !important;
}

.text--dark {
    color: #192a56 !important;
}

.text--white {
    color: #fff !important;
}

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
    color: #daddff;
}

.text--black {
    color: #000 !important;
}

.text--body {
    color: var(--body-clr) !important;
}

.text--base {
    color: var(--base-clr) !important;
}

.text--btn {
    color: var(--btn-clr) !important;
}

.text--title {
    color: var(--title-clr) !important;
}

/*# sourceMappingURL=main.css.map */

.top-padding {
    padding-inline-start: 20px;
}

/*.dark-theme {*/
/*    --bs-body-bg: #121213;*/
/*    --header-bg: #11202be6;*/
/*    --footer: #001f35;*/
/*    --footer-bottom: #111a21;*/
/*}*/

.navbar-nav .dropdown-menu.lang-menu {
    position: absolute;
}

@media (max-width: 575px) {
    .navbar-nav .dropdown-menu.lang-menu {
        left: unset;
        right: 0;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .js-navbar-vertical-aside-toggle-invoker {
        margin-right: 0 !important;
    }
}

/* .lagn-drop-btn {
    background: var(--bs-body-bg);
    padding: 10px 20px !important;
    border-radius: 10px;
    min-width: 200px;
} */
.lagn-drop-btn > span::before {
    display: none;
}

@media (max-width: 1199px) {
    .lagn-drop-btn {
        min-width: initial;
        padding: 10px !important;
    }
}

.lagn-drop-btn + .dropdown-menu {
    min-width: 200px;
}

.lagn-drop-btn + .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--bs-body-bg);
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--bs-primary);
}

.dropdown-menu {
    box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05),
        0px 0.75rem 1.5rem -0.25rem rgba(65, 83, 179, 0.05);
    border: none;
    border-radius: 0.625rem;
}

.color-text {
    color: var(--base-title);
}

.subscribe-form-group {
    position: relative;
    display: flex;
    align-items: center;
    inline-size: clamp(100%, 95vw, 90%);
}

.subscribe-form-group .form-control {
    border: 1px solid rgba(4, 97, 165, 0.2);
    border-radius: 1.875rem;
    color: #8a8a8a;
    background: var(--section-bg-2);
    height: 3.4375rem;
    padding: 1rem 1.5rem;
}

.subscribe-form-group .cmn--btn {
    position: absolute !important;
    right: unset;
    inset-inline-end: 0.3125rem;
    block-size: calc(100% - 0.625rem);
    display: flex;
    align-items: center;
    margin: 0;
    padding: 1rem 1.5rem;
}



.footer-social a {
    border-radius: 100px;
}

.footer-social a:hover {
    box-shadow: var(--base-shadow);
}

.footer-social img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 100px;
}

.gap-10 {
    gap: 0.625rem;
}

.navbar-bottom-wrapper .menu li a:focus-visible {
    border: none !important;
}

.subscribe-newsletter {
    background: url("../img/newsletter-bg1.png") no-repeat center;
    background-size: cover;
    background-size: 100% 120% !important;
}
.py-75{
    padding-block: 75px
}

.subscribe-btn{
    position: absolute;
    inset-inline-end: 3px;
    padding-block: 8px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
