/*===========================    02.HEADER css ===========================*/
/*===== NAVBAR =====*/
.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
    padding: 0px;
    background-color: #fff;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
}

.sticky {
     / position: fixed; /
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
    padding: 0px;
    background-image: linear-gradient(331deg, #004D6E 0%, #21dcff 100%);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sticky .navbar {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .sticky .navbar {
        padding: 10px 0;
    }
}

.sticky .navbar .navbar-nav .nav-item a:hover {
    color: #fff;
}

.sticky .navbar .navbar-nav .nav-item a::before {
    /* background: rgb(118 56 149 / 15%); */
}

.sticky .navbar .navbar-toggler .toggler-icon {
    background: #162447;
}

.navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    /* transition: all 0.3s ease-out 0s; */
    padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar {
        padding: 17px 0;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 17px 0;
    }
}

.navbar-brand {
    padding: 0;
}

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

div#navbarSupportedContent {
    /* display: flex; */
    justify-content: end;
}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(22, 36, 71, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 10px;
        color: #5B657E;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 10px;
        color: #5B657E;
    }
}

.sticky .navbar .navbar-nav .nav-item .active a {
    color: #623b9f;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a::before {
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        border-radius: 0;
        background: rgba(40, 106, 222, 0.05);
    }
}

@media (max-width: 767px) {
    .single-brand .thumb img {
        max-height: 130px;
    }

    .navbar-nav .nav-item a::before {
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        border-radius: 0;
        background: rgba(40, 106, 222, 0.05);
    }
}

.navbar-nav .nav-item a:hover {
    color: #623895;
}

/* .navbar-nav .nav-item a.active {    color: #623895;} */
.navbar-nav .nav-item.current-menu-item a {
    color: #b3d337;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item a.active {
        color: #623895;
    }
}

@media (max-width: 767px) {

    .navbar-nav .nav-item a:hover,
    .navbar-nav .nav-item a.active {
        color: #5d417f;
    }
}

.navbar-nav .nav-item a:hover::before,
.navbar-nav .nav-item a.active::before {
    height: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navbar-nav .nav-item a:hover::before,
    .navbar-nav .nav-item a.active::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {

    .navbar-nav .nav-item a:hover::before,
    .navbar-nav .nav-item a.active::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 170%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 250px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    /* padding: 8px 20px; */
    color: #222;
}

/* .navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {  padding-left: 25px;  color: #286ADE;} */
.navbar-nav .sub-nav-toggler {
    display: none;
}

@media (max-width: 998px) {
    section#stats .col-lg-2.col-md-4.col-sm-6.custom-column {
        width: 50% !important;
    }

    .navbar-nav .nav-item {
        position: relative;
        margin-left: 0px;
        padding: 10px;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        box-shadow: 0px 15px 20px 0px rgba(22, 36, 71, 0.1);
        padding: 10px 12px;
        border-bottom: 2px dashed #105d95;
        border-top: 2px dashed #105d95;
        border-radius: 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }

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

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

/*======================================    Hero Area CSS========================================*/
.hero-area {
    position: relative;
    width: 100%;
    /* height: 60vh; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 190px 0px 100px;
    background-image: none;
}

.hero_before:before {
    background-color: #0000008f !important;
    opacity: .76 !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    content: ' ' !important;
    border-radius: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area {
        padding: 130px 0 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-area {
        padding: 160px 0 60px 0;
    }
}

.hero-area .main__circle {
    top: -98px;
    right: calc(50% - 1180px);
    width: 1000px;
    height: 1000px;
    background: #264233;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-area .main__circle {
    top: -10%;
    /* Adjust the top position relative to screen size */
    right: 0;
    /* Align from the right */
    width: 50vw;
    /* Responsive width based on viewport */
    height: 50vw;
    /* Equal height to maintain circular shape */
    max-width: 1000px;
    /* Max width to cap the size */
    max-height: 1000px;
    /* Max height */
    background: #264233;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

/* For screens between 1024px and 1200px */
@media (max-width: 1200px) and (min-width: 1024px) {
    .hero-area .main__circle {
        top: -12%;
        /* Adjust top for better positioning */
        right: 2%;
        /* Move right to keep the circle within bounds */
        width: 55vw;
        /* Reduce the size slightly */
        height: 55vw;
        /* Keep the height proportional */
    }
}

/* Media queries for smaller screens */
/* Specific fix for 1024px screens */
@media (max-width: 1024px) {
    .hero-area .main__circle {
        top: -10%;
        /* Adjust top as needed */
        right: 0%;
        /* Move slightly left to prevent overflow */
        width: 45vw;
        /* Reduce size to fit */
        height: 45vw;
        /* Keep height proportional */
    }
}

@media (max-width: 480px) {
    .hero-area .main__circle {
        top: -20%;
        right: -20%;
        /* Further adjust positioning */
        width: 80vw;
        /* Smallest size for mobile screens */
        height: 80vw;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area .main__circle {
        display: none;
    }
}

.hero-area .main__circle2 {
    right: calc(50% - 270px);
    bottom: -75px;
    z-index: 2;
    width: 150px;
    height: 150px;
    background: #f5e547;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: bounceAllDirections 3s ease infinite alternate;
}

@-webkit-keyframes bounceAllDirections {
    0% {
        transform: translate(0, 0);
        /* Start at the original position */
        text-shadow: 0 5px 0 #ccc, 0 2px 3px rgba(0, 0, 0, 1);
    }

    25% {
        transform: translate(20px, -20px);
        /* Move right and up */
    }

    50% {
        transform: translate(0, -40px);
        /* Move up */
    }

    75% {
        transform: translate(-20px, -20px);
        /* Move left and up */
    }

    100% {
        transform: translate(0, 0);
        /* Back to the original position */
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area .main__circle2 {
        display: none;
    }
}

.hero-area .main__circle3 {
    top: -180px;
    left: -180px;
    width: 350px;
    height: 350px;
    background: #bc2834;
    position: absolute;
    border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area .main__circle3 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area .main__circle4 {
        display: none;
    }
}

.hero-area .app-image {
    z-index: 99;
    position: relative;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    /* -webkit-box-shadow: 0px 0px 30px #0000000f; */
    /* box-shadow: 0px 0px 30px #0000000f; */
    z-index: 4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .app-image {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .hero-area .app-image {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .hero-area .app-image {
        margin-left: 20px;
    }
}

.hero-area .app-image .image-bg-shape {
    top: -45px;
    left: -45px;
    width: 110px;
    height: 110px;
    background: #623895;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: bounceHorizontal 2s ease infinite alternate;
}

@-webkit-keyframes bounceHorizontal {
    0% {
        transform: translateX(0);
        /* Start at the original position */
        text-shadow: 0 5px 0 #ccc, 0 2px 3px rgba(0, 0, 0, 1);
    }

    100% {
        transform: translateX(20px);
        /* Move 20px to the right */
        text-shadow: 0 50px 0 black, 0 0px 20px rgba(0, 0, 0, .8);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area .app-image .image-bg-shape {
        display: none;
    }
}

.hero-area .shape-1 {
    position: absolute;
    width: 520px;
    height: 520px;
    left: -184.03px;
    top: -1.4px;
}

.hero-area .shape-1 img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-area .shape-2 {
    position: absolute;
    width: 665px;
    height: 665px;
    right: -126px;
    top: -66px;
}

.hero-area .shape-2 img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-area .shape-3 {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -50%;
}

.hero-area .shape-3 img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-area .hero-content {
    border-radius: 0;
    position: relative;
    z-index: 1;
    text-align: center !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .hero-content {
        padding: 0px 0px;
    }
}

.hero-area .hero-content h1 {
    font-weight: 700;
    font-size: 45px;
    line-height: 65px;
    color: #ffffff;
    margin: 0px 0 18px;
    text-transform: capitalize;
    overflow: hidden;
    font-family: "Sen", sans-serif;
}

.hero-area .hero-content h1 span.color2 {
    color: #fdfcff;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.hero-area .hero-content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 28px auto;
    font-family: "Sen", sans-serif;
    width: 60%;
    display: flex;
    justify-content: center;
}

.hero-area .hero-content .button {
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .hero-content .button {
        margin-top: 10px !important;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-area .hero-content .button {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-area .hero-content .button .btn {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-area .hero-content h1 {
        font-size: 40px;
    }

    .hero-area {
        position: relative;
        background-color: #ffe2cd63;
        padding: 140px 0 60px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area .hero-content {
        /* text-align: center; */
    }

    .hero-area .hero-content h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 38px;
    }

    .hero-area .hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .contact-block.animated.visible {
        width: 100% !important;
    }

    .hero-area .hero-content {
        padding: 0px;
        text-align: center;
    }

    .hero-area .hero-content h1 {
        font-size: 30px;
        line-height: 45px;
    }

    .hero-area .hero-content p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 26px;
    }

    .hero-area .hero-content .button .btn {
        width: 100%;
        margin: 0;
        margin-bottom: 7px;
        font-size: 15px;
    }

    .hero-area .hero-content .button .btn:last-child {
        margin: 0;
    }
}

.hero-area.style2 {
    padding: 200px 0 120px 0;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, left bottom, from(#F4F7FA), to(transparent));
    background: linear-gradient(#F4F7FA, transparent);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area.style2 {
        padding: 130px 0 70px 0;
    }
}

@media (max-width: 767px) {
    .hero-area.style2 {
        padding: 110px 0 60px 0;
    }
}

.hero-area.style2 .main__circle {
    top: -98px;
    right: calc(50% - 1145px);
    width: 1000px;
    height: 1000px;
    background: #3080E3;
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .hero-area.style2 .hero-content {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area.style2 .hero-content {
        padding: 0px 110px;
    }
}

.hero-area.style2 .hero-content h4 {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    color: #727272;
}

.hero-area.style2 .hero-content h1 {
    text-transform: capitalize;
    font-size: 38px;
    line-height: 53px;
    overflow: hidden;
}

.hero-area.style2 .hero-content h1 .secondary-color {
    color: #fd723b;
}

.hero-area.style2 .hero-content p {
    font-family: poppins;
    color: #727272;
    font-size: 15px;
}

@media (max-width: 767px) {
    .hero-area.style2 .hero-content p {
        font-size: 14px !important;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .hero-area.style2 .hero-content p {
        padding-right: 60px;
    }
}

.hero-area.style2 .hero-content .button {
    margin-top: 20px;
}

.hero-area.style2 .hero-content .button .btn {
    padding: 17px 45px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .hero-area.style2 .hero-content .video {
        display: block;
        margin-top: 15px;
    }
}

.hero-area.style2 .hero-content .video .video-text {
    color: #727272;
    display: inline-block;
    margin-left: 15px;
}

.hero-area.style2 .hero-content .video .video-icon {
    height: 55px;
    width: 55px;
    line-height: 54px;
    text-align: center;
    display: inline-block;
    background-color: transparent;
    color: #3080E3;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
}

.hero-area.style2 .hero-content .video:hover .video-icon {
    background-color: #3080E3;
    color: #fff;
    border-color: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero-area.style2 .hero-content {
        text-align: center;
    }

    .hero-area.style2 .hero-content h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 42px;
    }

    .hero-area.style2 .hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .hero-area.style2 .hero-content {
        padding: 0 10px;
        text-align: center;
    }

    .hero-area.style2 .hero-content h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-area.style2 .hero-content p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 26px;
    }

    .hero-area.style2 .hero-content .button .btn {
        width: 70%;
        margin: 0;
        padding: 14px 30px;
        margin-bottom: 7px;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    .hero-area.style2 .hero-content .button .btn {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .hero-area.style2 .hero-content .button .btn:last-child {
        margin: 0;
    }
}

.hero-area.style2 .hero-image {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: -32px;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area.style2 .hero-image {
        display: none;
    }
}

.hero-area.style2 .hero-image img {
    width: 640px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .hero-area.style2 .hero-image {
        margin-left: 40px;
    }
}

.hero-area.style2 .hero-image .image-bg-shape {
    top: 40px;
    left: 44px;
    width: 110px;
    height: 110px;
    background: #FAB8C4;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .hero-area.style2 .hero-image .image-bg-shape {
        display: none;
    }
}

@media (max-width: 998px) {
    .app-image img {
        width: 100%;
        border-radius: 50px;
        background-color: #fff;
        padding: 5px;
        -webkit-animation: bounceHorizontal 0s ease infinite alternate !important;
        overflow: hidden;
    }

    .hero-area .main__circle4 {
        top: 44%;
        left: 30px;
        width: 48px;
        height: 48px;
        background: #105d95;
        position: absolute;
        border-radius: 50%;
        -webkit-animation: bounceAllDirections 0s ease infinite alternate !important;
    }
}

.app-image img {
    width: 100%;
    border-radius: 50px;
    background-color: #fff;
    padding: 5px;
    -webkit-animation: bounceHorizontal 2s ease infinite alternate;
    /* Slower bounce */
}

.button .btn:hover {
    color: #fff;
    background-color: #623895;
}

.button .btn:last-child {
    margin: 0;
}

.button .btn {
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    background-color: #b3d337;
    color: #fff;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    /* WIDTH: 100%; */
}

.hero-area .main__circle4 {
    top: 44%;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #623895;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: bounceAllDirections 3s ease infinite alternate;
}

.about__list li {
    list-style: none;
}

.about__list {
    margin: 15px 0 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    list-style: none;
}

/* Tablet view - two columns */
@media (max-width: 768px) {
    .about__list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* Mobile view - single column */
@media (max-width: 680px) {
    .about__list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 8px 0;
    }

    .about__list li {
        display: flex;
        align-items: center;
        padding: 8px 0;
    }

    .about__list li i {
        margin-right: 8px;
        /* Space between icon and text */
        font-size: 1.2em;
        /* Adjust icon size for better alignment */
    }

    .global__desc {
        font-size: 0.9em;
        /* Slightly smaller text on mobile */
        line-height: 1.4;
    }
}

.about__list li:nth-child(2) {
    margin: 5px 0;
}

.about__list li i {
    padding: 8px !important;
    margin: 0 9px 0 0;
    background: #623895;
    border: 2px solid #623895;
    border-radius: 30px;
    color: #fff;
}

.about__list li i:hover {
    background: transparent;
    color: #623895;
}

.about__list li span {
    font-size: 16px !important;
    font-weight: 500 !important;
}

@-webkit-keyframes bounce {
    0% {
        text-shadow: 0 5px 0 #ccc, 0 2px 3px rgba(0, 0, 0, 1);
    }

    100% {
        transform: translateY(-20px);
        text-shadow: 0 50px 0 black, 0 0px 20px rgba(0, 0, 0, .8);
    }
}

/*======================================    Hero Area CSS end========================================*/
/*--------------------------------------------------------------# About Section--------------------------------------------------------------*/
section#about {
    color: #000;
    background-color: #fff;
    padding: 50px 0 50px;
    scroll-margin-top: 90px;
    overflow: clip;
}

.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #4169e1;
    font-weight: 600;
}

.about .content h3 {
    font-size: 35px;
    font-weight: 600;
    color: #1196b8;
}

.accordion_area .card-2 {
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    background-color: #e7e3e363;
    box-shadow: 0px 8px 16px -38px rgba(0, 0, 0, 0.04);
    margin-bottom: 15px;
}

.about .accordion_area .card-2 {
    margin-bottom: 22px;
}

.about .accordion_area .card-2 {
    /* border: 1px solid #ffffff; */
    border-radius: 5px;
}

.about p.fst-italic {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 18px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

.accordion_area .card-header.witr_ac_card {
    background: 0 0 !important;
    border-bottom: 0;
    text-align: left;
    padding: 0px 0px;
    border-radius: 5px;
}

.witr_ac_style {
    padding-left: 30px;
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    position: relative;
    /* font-weight: 600; */
    /* float: left; */
    line-height: 25px;
}

.witr_ac_card i {
    color: #264233;
}

.witr_ac_card i {
    margin-right: 0px;
    font-size: 18px;
}

.witr_ac_style {
    color: #2f3839;
    text-decoration: none;
    padding: 15px 25px;
    transition: 0.3s;
}

button.accordion-button:hover {
    background: #1196b8;
    color: #fff;
}
button.accordion-button:hover .title {
    color: #ffffff;
}
.accordion_area .card-2 p {
    padding: 0 55px 0 47px;
}

.about .card-header:first-child {
    /* border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0; */
}

.witr_ac_style:hover {
    color: #000000;
    background-color: #FFFFFF00;
}

.about .witr_ac_style:hover {
    background: #ebe1ef;
    border-radius: 5px;
}

.about .content ul li span {
    font-weight: 500;
    font-size: 17px;
    line-height: 28px;
    color: #757065;
    margin: 20px 0;
    font-family: "Sen", sans-serif;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

.about .about-images img {
    border-radius: 10px;
    width: 100%;
}

.content.aos-init.aos-animate {
    padding-left: 15px;
}

.about .card-header a:not(.collapsed) {
    color: #000000;
    background-color: #ebe1ef;
    border-radius: 4px 4px 0 0;
}

div#collapseOne .card-body {
    padding: 10px 20px;
}

.card-link {
    position: relative;
    /* padding-right: 30px; */
    /* Space for the caret icon */
}

.about .icon-toggle {
    transition: opacity 0.3s ease;
    /* Smooth transition for icon visibility */
}

.about .icon-toggle.d-none {
    display: none;
    /* Hide icon when not needed */
}

/*--------------------------------------------------------------# About Section--------------------------------------------------------------*/
.service .content h3 {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 0px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #4169e1;
    font-weight: 600;
}

.service .content h2 {
    font-weight: 700;
    font-size: 35px;
    font-weight: 600;
    color: #1196b8;
}

.service .content p:last-child {
    margin-bottom: 0;
}

.read-more {
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    background-color: #1196b8;
    color: #fff;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    text-decoration: none;
}

.service .content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 18px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

.service .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

a .read-more:hover {
    color: #fff;
    background-color: #623895;
}

.service .content .read-more:hover i {
    margin-left: 10px;
}

.service .icon-box {
    background-color: #fff;
    padding: 35px 30px;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
    min-height: 315px;
}

.service .icon-box i {
   background-color: color-mix(in srgb, #623895, #ffffff 95%) !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: color-mix(in srgb, #623895, transparent 95%);
    color: #1195b7;
}

.service .icon-box h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.service .icon-box p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #eeeeee;
    margin: 18px 0 13px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

.service ..service .icon-box:hover i {
    background-color: #623895 !important;
    color: #ffff;
}

.service .icon-boxes .col-md-6:nth-child(2) .icon-box,
@media (max-width: 768px) {

    .service .icon-boxes .col-md-6:nth-child(2) .icon-box,
    .service .icon-boxes .col-md-6:nth-child(4) .icon-box {
        margin-top: 0;
    }
}

/* Service section design CSS start */
.service-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 25%;
    margin: 0 auto;
}

section.service-section {
    background: #fff4ec8c;
    padding: 50px 0;
    overflow: hidden;
}

h2.service-heading {
    font-size: 28px;
    color: #105d94;
    font-weight: 700;
}

p.service-para {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 5px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

/* Swiper slider styling */
/* service section css end */
/*======================================    Faq CSS========================================*/
.faq {
    padding-bottom: 80px;
    background-color: #fff;
    padding-top: 80px;
    position: relative;
}

.faq .section-title {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 37px;
    padding: 0 300px;
    position: relative;
    z-index: 5;
}

.section-title h2 {
     font-weight: 700;
    font-size: 35px;
    font-weight: 600;
    color: #1196b8;
}

.section-title p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 18px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

.section-title h3 {
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
    color: #4169e1;
    text-transform: capitalize;
}

.section-title h2.wow.fadeInUp {
    font-weight: 700;
    font-size: 25px;
    font-weight: 600;
    color: #1196b8;
}

@media (max-width: 767px) {
    .faq .xs-margin {
        margin-top: 20px !important;
    }
}

.accordion-button:not(.collapsed) i::before {
    content: "\f068";
    font-family: 'FontAwesome';
}

.faq .section-title {
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq .section-title {
        margin-bottom: 40px;
    }

    .contact-sec .contact-block {
        padding: clamp(23px, 1.667vw, 51px);
        border-radius: clamp(18px, 1.25vw, 48px);
        border: 0.5px solid #f1f2f7;
        height: 100%;
        box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    }

    .section-title {
        text-align: center;
        margin-bottom: 80px;
        padding: 0 0px;
        position: relative;
        z-index: 5;
    }

    div#accordionExample2 {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .faq .section-title {
        margin-bottom: 30px;
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .faq {
        padding-bottom: 30px;
    }
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1); */
    padding-right: 40px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.accordion-item .accordion-button {
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1); */
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    display: block;
    overflow: hidden;
    border: none;
    padding: 15px 25px;
    padding-right: 40px;
    background-color: #fff;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-item .accordion-button {
        padding: 18px 20px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .accordion-item .accordion-button {
        padding: 15px 20px;
        padding-right: 40px;
    }
}

.accordion-item .accordion-button .title {
    padding-left: 30px;
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    position: relative;
    /* font-weight: 600; */
    /* float: left; */
    line-height: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-item .accordion-button .title {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .accordion-item .accordion-button .title {
        font-size: 14px;
    }
}

/* Default state: collapsed with plus icon */
.accordion-button.collapsed i::before {
    content: "\f067";
    /* Plus icon */
    font-family: 'FontAwesome';
}

/* Expanded state: minus icon */
.accordion-button:not(.collapsed) i::before {
    content: "\f068";
    /* Minus icon */
    font-family: 'FontAwesome';
}

.accordion-item .accordion-button i {
    left: 17px;
    font-size: 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
}

.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ebe1ef;
    border-radius: 4px 4px 0 0;
}

.accordion-button::after {
    display: none;
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    border-radius: 0 0 4px 4px;
    padding: 25px;
    background-color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-body {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .accordion-body {
        padding: 20px;
    }
}

.accordion-body p {
    margin: 0;
    margin-bottom: 20px;
    color: #777;
}

.accordion-body p:last-child {
    margin: 0;
}

.accordion-item {
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 20px #00000007;
    box-shadow: 0px 0px 20px #00000007;
    border-radius: 4px;
}

.accordion-item:last-child {
    margin: 0;
}

/*--------------------------------------------------------------# Global Sections--------------------------------------------------------------*/
section,
.section {
    /* color: var(--default-color); */
    /* background-color: #f9f9f9; */
    padding: 50px 0 50px;
    /* scroll-margin-top: 85px; */
    /* overflow: clip; */
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 50px;
    }

    section.testimonial-slider {
        padding: 0;
    }

    section#about {
        color: #000;
        background-color: #fff;
        padding: 50px 0 50px;
        scroll-margin-top: 90px;
        overflow: clip;
    }

    .section-title h2.wow.fadeInUp {
        font-weight: 700;
        font-size: 25px;
        font-weight: 600;
        color: #623895;
    }
}

/*--------------------------------------------------------------# Global Section Titles--------------------------------------------------------------*/
/*--------------------------------------------------------------# Stats Section--------------------------------------------------------------*/
.stats .stats-item {
    padding: 17px;
    /* width: 162%; */
}

section#stats {
    color: #000;
    background-color: #f9f9f9;
    padding: 0px 0 0px;
    scroll-margin-top: 85px;
    overflow: clip;
}

.stats .stats-item i {
    color: #623895;
    display: block;
    font-size: 38px;
    float: left;
    line-height: 0;
}

.stats .stats-item .purecounter {
    color: #3d454d;
    font-size: 40px;
    line-height: 25px;
    display: block;
    font-weight: 700;
    margin-left: 60px;
}

.stats .stats-item p {
    color: color-mix(in srgb, #3d3d3d, transparent 40%);
    padding: 15px 0 0 0;
    margin: 0 0 0 60px;
    /* font-family: var(--heading-font); */
    font-size: 14px;
    width: 100%;
}

@media (min-width: 992px) {
    .img-contact {
        display: flex;
        align-items: flex-end;
        margin: 50px auto;
        justify-content: center;
        padding-right: 0px;/ box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);/
    }

    .stats .col-lg-3 {
        flex: 0 0 25%;
        /* 4 columns on large screens */
        max-width: 25%;
    }
}

/* For tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .stats .col-md-6 {
        /* flex: 0 0 50%; */
        /* 2 columns on medium screens */
        max-width: 50%;
    }
}

/* For mobile */
@media (max-width: 767px) {
    .stats.stats .col-md-6 {
        flex: 0 0 100%;
        /* 1 column on small screens */
        max-width: 100%;
    }
}

/* ---------------counter css end ------------------ */
section.contact-sec.pb-80 {
    /* padding-bottom: clamp(48px, 4.167vw, 160px); */
    padding-bottom: 60px;
    background: #f9f9f9;
    padding-top: 60px;
}

.contact-sec .img-contact img {
    border-radius: clamp(18px, 1.25vw, 48px);
    width: 100%;
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1); */
}

.contact-sec .contact-block {
    padding: clamp(16px, 1.667vw, 51px);
    border-radius: clamp(18px, 1.25vw, 48px);
    border: 0.5px solid #f1f2f7;
    height: 100%;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
}

.contact-form .light-gray {
    color: #92949f !important;
}

.contact-form .mb-24 {
    margin-bottom: 23px;
}

.contact-form .input-block {
    position: relative;
}

.contact-sec .contact-block .input-block input {
    padding-left: 16px;
    color: #92949f;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.contact-form .form-control {
    padding: 10px 10px;
    padding-left: 15px;
    border-radius: clamp(4px, 0.417vw, 5px);
    border: 1px solid #c0c6e0;
    background: transparent;
    font-family: "Urbanist", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    color: #0c0c0d;
    box-shadow: none;
}

.contact-form .mb-32 {
    margin-bottom: 24px;
}

.contact-form textarea.form-control {
    min-height: 100px;
    max-height: 100px;
}

.contact-sec .contact-block .ui-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.contact-sec .contact-block .ui-checkbox::before {
    top: 40%;
    left: 50%;
    content: "";
    position: absolute;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.contact-sec .contact-block .ui-checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    box-shadow: 0 0 0 calc(20px / 2.5) #fca95d;
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.contact-sec .contact-block .ui-checkbox::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
}

.cus-btn-3 {
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    background-color: #bc2834;
    color: #fff;
    border: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    text-decoration: none;
}

.cus-btn-3 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 2;
}

.cus-btn-3 span:last-child {
    color: #ffffff;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 2;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 13px;
    width: 100%;
    text-align: center;
}

/* Hover Effects */
.cus-btn-3:hover:after {
    transform: skewY(0deg) scaleY(0.95);
    /* Scale the background color fully */
}

.cus-btn-3:hover {
    color: #fff;
    background-color: #623895;
}

.cus-btn-3:hover span:first-child {
    color: transparent;
    /* First text fades out on hover */
}

.cus-btn-3:hover span:last-child {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%);
    /* Second text slides in */
}

.contact-block h4 {
    color: #67bcd2;
    font-weight: 600;
    font-size: 25px;
}

p.light-gray.mb-32 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 18px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

.img-contact {
    display: flex;
    align-items: flex-end;
    margin: 50px auto;
    justify-content: center;
    padding-right: 20px;
    /* box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1); */
}

.init-swiper.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding-top: 30px;
}

/* Center the testimonial section */
/*======================================  Footer CSS========================================*/
.footer {
    background-color: #000000;
    position: relative;
    padding-bottom: 0;
    background: #ebe1ef;
    background-image: linear-gradient(331deg, #004D6E 0%, #21dcff 100%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-top: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer .single-footer {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .footer .single-footer {
        margin-top: 0px;
        text-align: left;
    }
}

.footer .single-footer.f-about {
    padding-right: 30px;
}

@media (max-width: 767px) {
    .footer .single-footer.f-about {
        padding: 0;
    }
}

.footer .single-footer.f-about .logo {
    margin-bottom: 5px;
}

.footer .single-footer.f-about .logo img {
    width: 134px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer .single-footer.f-about .logo img {
        width: 130px;
    }
}

@media (max-width: 767px) {
    .footer .single-footer.f-about .logo img {
        width: 120px;
    }
}

.footer .single-footer.f-about p {
    color: #fff;
    margin-top: 10px;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer .single-footer.f-about .social-title {
    color: #b3d337;
    font-size: 15px;
    font-weight: 600;
    display: 7;
    margin-bottom: 6px;
}

.footer .single-footer.f-about .social li {
    display: inline-block;
    margin-right: 15px;
}

.footer .single-footer.f-about .social li:last-child {
    margin: 0;
}

.footer .single-footer.f-about .social li a {
     color: #fff;
    font-size: 20px;
}

.footer .single-footer.f-about .social li a:hover {
     color: #b3d337;
}

.footer .single-footer.f-about .copyright-text {
    color: #fff;
    font-size: 15px;
    margin-top: 40px;
}

.footer .single-footer.f-about .copyright-text span {
    display: block;
}

@media (max-width: 767px) {
    .footer .single-footer.f-about .copyright-text {
        margin-top: 20px;
    }
}

.footer .single-footer.f-about .copyright-text a {
    color: #fff;
    text-decoration: underline;
}

.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 15px;
}

.footer .single-footer.f-link li:last-child {
    margin: 0;
}

.footer .single-footer.f-link li a {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
}

.footer .single-footer.f-link li a:hover {
    color: #420ccf;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
    .footer .single-footer.newsletter {
        padding-left: 50px;
    }
}

.footer .single-footer.newsletter p {
    color: #fff;
}

.footer .single-footer h3 {
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    color: #b3d337;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer .single-footer h3 {
        margin-bottom: 25px;
    }

    section#stats .row.gy-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

section#testimonials {
    background: #ffff;
}

@media (max-width: 767px) {
    .footer .single-footer h3 {
        margin-bottom: 25px;
    }
}

@media (max-width:600px) {
    .footer .single-footer h3 {
        margin-bottom: 25px;
    }

    section#stats .row.gy-4 {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.footer .newsletter-form {
    margin-top: 30px;
    position: relative;
}

.footer .newsletter-form input {
    height: 50px;
    width: 100%;
    border-radius: 8px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    padding-left: 18px;
    padding-right: 70px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: #0f5aad00;
    color: #b3d337;
    border: 2px solid #b3d337;
}

.footer .newsletter-form input:hover {
    border-color: #fff;
}

.footer .newsletter-form input:focus {
    border-color:#fff;
}

.footer .newsletter-form .button {
    position: absolute;
    right: 0px;
    top: 0;
    color: #fff;
}

.footer .newsletter-form .button .sub-btn {
    height: 50px;
    width: 52px;
    border-radius: 0 6px 6px 0;
    background-color: #f9ff1000;
    color: #f9ff10;
    text-align: center;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    font-size: 23px;
    -webkit-transition: all 0.4sease;
    transition: all 0.4sease;
}

.footer .newsletter-form .button .sub-btn:hover {
    color: #fff;
    background-color: #4169e1;
}

.footer .copyright-area .inner-content {
    border-top: 1px solid rgba(238, 238, 238, 0.288);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 80px;
}

@media (max-width: 1200px) {
    .section-title {
        text-align: center;
        margin-bottom: 37px;
        padding: 0px 10px;
        position: relative;
        z-index: 5;
    }

    .contact-us .contact-info .single-info {
        margin-top: 30px;
        position: relative;
        padding: 30px 10px 13px 20px;
        padding-left: 81px;
        border-radius: 8px;
        overflow: hidden;
        -webkit-box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
        box-shadow: 0px 1px 20px 0px rgba(32, 32, 32, 0.11);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        min-height: 170px;
    }

    .contact-us .contact-info .single-info ul {
        padding-left: 0;
    }

    .contact-us .contact-info .single-info ul li {
        display: block;
        margin-bottom: 2px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer .copyright-area .inner-content {
        margin-top: 50px;
        text-align: center;
    }
}

.footer .copyright-area .copyright-owner {
    text-align: right;
}

@media (max-width: 767px) {
    .footer .copyright-area .copyright-owner {
        text-align: center;
        margin-top: 3px;
    }

    .client-logo {
        padding: 10px;
    }

    .client-logo .col-lg-3 {
        max-width: 50%;
        padding: 5px;
    }

    .team .col-lg-3 {
        max-width: 50%;
        padding: 5px;
    }

    .team {
        padding: 10px;
    }

    .team .single-team img {
        margin-top: 0;
        height: auto;
        width: 100%;
        border-radius: 6px;
    }

    .team .single-team {
        margin-top: 0;
    }

    .team .single-team .content .social {
        margin-top: -15px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        float: left;
    }

    .footer-top .col-lg-2 {
        max-width: 50%;
    }
}

.footer .copyright-area p {
    color: #fff;
    font-size: 14px;
}
.footer .newsletter-form input::placeholder {
    color: #fff;
}

.footer .copyright-area p a {
    color: #b3d337;
}

.footer .copyright-area p a:hover {
    color: #4169e1;
}

.footer .single-footer.f-link li a:hover {
    color: #b3d337;
    padding-left: 15px;
}

ul.social {
    padding: 0;
}
span.wpcf7-not-valid-tip {
    color: #fff;
}
.footer .single-footer.f-link li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: all 500ms ease;
    text-decoration: none;
    display: flex;
    column-gap: 14px;
}

.footer .single-footer.f-link li a:before {
    position: absolute;
    top: 36%;
    left: 0;
    bottom: 0;
    content: "\f105";
    font-family: "FontAwesome";
    font-weight: 900;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 500ms ease;
    font-size: 15px;
    color: var(--oxpins-primary);
}

.footer .single-footer.f-link li a:hover:before {
    opacity: 1;
}

.single-footer.f-link ul {
    padding-left: 0;
}

a.read-more:hover {
    background: #b3d337;
    color: #fff;
}

/*--------------------------------------------------------------# Testimonials Section--------------------------------------------------------------*/
.testimonial-section {
    padding-top: 82px;
    padding-bottom: 72px;
}

.testimonial-wrapper .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper.testimonial-wrapper .swiper-wrapper {
    height: auto;
    column-gap: 20px;
    display: flex;
}

.testimonial-wrapper .swiper-slide {
    text-align: center;
    border-radius: 40px;
    padding: 30px 23px;
    background: #1196b8a3 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 260px;
}

.testimonial-wrapper .swiper-slide .review-stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonial-wrapper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-wrapper .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
    background: #d9d9d9;
    background: #504b4b;
}

/* .testimonial-wrapper .swiper-horizontal > .swiper-pagination-bullets,.testimonial-wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,.testimonial-wrapper.swiper-pagination-custom,.testimonial-wrapper .swiper-pagination-fraction { } */
.testimonial-wrapper .swiper-pagination-bullet-active {
    background: #67bcd2;
}

.swiper.testimonial-wrapper {
    padding-top: 15px;
    padding-bottom: 60px;
}

.testimonial-items .testimonial-text {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    max-width: 330px;
    margin-top: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.testimonial-items .testimonial-title {
     color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    font-style: normal;
    margin-top: 0px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-items .testimonial-title::before {
    content: "";
    position: absolute;
    left: -23px;
    top: 9px;
    width: 20px;
    height: 1px;
    background-color: var(--white-text-white);
}

.testimonial-img {
    position: absolute;
    top: -30px;
    /* Adjust to bring the image above the testimonial content */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    /* Adjust size if needed */
    height: 100px;
    /* Adjust size if needed */
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonial-wrapper .swiper-pagination-bullets {
    bottom: 10px !important;
}

/* media query  */
@media screen and (min-width: 768px) {
    .swiper-pagination-bullet {
        width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 24px));
        height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 24px));
    }
}

@media (max-width: 767px) {
    .about .content h3 {
        font-size: 25px;
        font-weight: 600;
        color: #623895;
    }

    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonial-item {
        padding: 10px;
        margin: 10px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }

    .stats .stats-item {
        padding: 15px;
        /* width: 162%; */
    }

    .stats .stats-item i {
        color: #623895;
        display: block;
        font-size: 38px;
        float: left;
        line-height: 0;
    }
}

section#about1 {
    padding: 90px 0px 50px;
    background: #f9f9f9;
}

/*--------------------------------------/*  Brand Css Start----------------------------------------*/
.single-brand {
    text-align: center;
}

.single-brand .thumb {
    display: block;
}

.single-brand .thumb img {
    /* width: 100%; */
}

.brand-heading {
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
}

.brand-section {
    padding: 50px 0 50px;
    /* background: #f9f9f9; */
}

.swiper-slide {
    margin: 0 !important;
}

.single-brand {
    text-align: center;
}

.single-brand .thumb img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-width: 300px;
}

.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

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

.brand-heading h3 {
    font-size: 35px;
    font-weight: 600;
    color: #1196b8;
}

.brand-heading p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #757065;
    margin: 0px 0 20px;
    font-family: "Sen", sans-serif;
    font-style: normal !important;
}

/* Main navigation item */
.navbar-nav .nav-item {
    position: relative;
    margin-left: 30px;
}

/* Nav item link */
.navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease-out;
    position: relative;
    text-decoration: none;
    font-family: "Sen", sans-serif;
}

.card-body {
    margin: 0;
    margin-bottom: 20px;
    color: #777;
}

/* Dropdown menu styling */
.navbar-nav .sub-menu {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 0;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    min-width: 220px;
    z-index: 1000;
    padding: px 0;
    /* Padding around the dropdown */
    transition: all 0.3s ease-in-out;
}

/* Dropdown items */
.navbar-nav .sub-menu li {
    padding: 13px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-left: 0;
}

.navbar-nav .sub-menu li:last-child {
    border-bottom: none;
    /* Remove border from last item */
}

/* Dropdown links */
.navbar-nav .sub-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for dropdown items */
.navbar-nav .sub-menu li:hover {
    background-color: #1196b8;
}

.navbar-nav .sub-menu li:hover a {
    color: #fff !important; 
}
.navbar-nav .sub-menu li a:hover {
    color: #623895;
    /* Change text color on hover */
    transform: translateX(5px);
    /* Slight move to the right on hover */
}

/* Dropdown animation */
.navbar-nav .dropdown:hover .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
    /* Smooth dropdown effect */
}

/* Show the dropdown on hover */
.navbar-nav .nav-item:hover .sub-menu {
    display: block;
}

/* Apply the ::before styling only to top-level nav items */
.navbar-nav>.nav-item>a::before {
    content: '';
    width: 100%;
    height: auto;
    border-radius: 0 0 50px 50px;
    position: absolute;
    top: -27px;
    left: 0;
    transition: all 0.3s ease-out 0s;
    z-index: -1;
    color: aliceblue;
}

/* Remove the ::before styling and background for dropdown items */
.navbar-nav .sub-menu .nav-item a::before {
    content: none;
    background: none;
    /* Ensure background color is also removed */
}

.pre_title.pr2-headline {
    display: flex;
    column-gap: 10px;
}

.pre_title.pr2-headline span {
    color: #3d454d;
    font-size: 30px;
    line-height: 25px;
    font-weight: 700;
    margin-left: 0px;
}

section#stats .row.gy-4 {
    justify-content: space-around;
    !important
}

.hero-area {
    padding: 250px 0 130px 0;
}

@media (max-width:1200px) {
    .hero-area .hero-content p {
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        color: #ffffff;
        margin: 28px auto;
        font-family: "Sen", sans-serif;
        width: 80%;
        display: flex;
        justify-content: center;
    }
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.read-more:hover {
    background: #b3d337;
    color: #fff;
}

.contact-form .wpcf7-submit {
    width: 100%;
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    background-color: #1196b8;
    color: #fff;
    border: none;
    transition: all 0.3sease;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    border-radius: 5px;
}

.footer .newsletter-form input:focus-visible {
    outline: #420ccf !important;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Places the video in the background */
    overflow: hidden;
    border-radius: unset;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video fills the entire section without distortion */
    border-radius: unset;
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Keeps content on top of the video */
    color: #ffffff;
    text-align: center;
    /* Centers the text horizontally */
    /* Optional: Restrict the content width for readability */
    margin: 0 auto;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 45px;
    line-height: 65px;
    color: #ffffff;
    margin: 0px 0 18px;
    text-transform: capitalize;
    overflow: hidden;
    font-family: "Sen", sans-serif;
}

.hero-area .button .btn {
    display: inline-block;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    background-color: #1196b8;
    color: #fff;
    border: none;
    -webkit-transition: all 0.3sease;
    transition: all 0.3sease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    margin-right: 7px;
    overflow: hidden;
    /* WIDTH: 100%; */
}

span.element.text-primary {
    color: #fff !important;
}

.hero-area .button .btn:hover {
    color: #fff;
    background-color: #b3d337;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-area .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-area .hero-content p {
        font-weight: 500;
        font-size: 18px;
        line-height: 28px;
        color: #ffffff;
        margin: 28px auto;
        font-family: "Sen", sans-serif;
        width: 100% !important;
        display: flex;
        justify-content: center;
    }
}

.row.align-items-center.row-gap {
    row-gap: 25px;
}

.video-play-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.testimonial-items {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-items:hover {
    transform: scale(1.1);
    /* Enlarge the slide */
    z-index: 10;
    /* Bring it to the front */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    /* Add shadow / *} .icon-box:hover::before {opacity: 0.7; /* Change overlay opacity on hover */
}

.icon-box::before {
    content: '';/ Required for pseudo-elements / position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(86 82 82 / 29%);
    /* Semi-transparent overlay */
    z-index: -1;
    /* Place it behind content */
    transition: opacity 0.3s;
    /* Smooth hover effect */
}

.icon-box {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.typed-cursor {
    display: none;
}

.swiper-slide.testimonial-items {
    width: 100% !important;
    max-width: 421px;
}

.faq {
    padding-bottom: 80px;
    background-color: #e9f5ff;
    padding-top: 80px;
    position: relative;
}

section.contact-sec.pb-80 {
    / padding-bottom: clamp(48px, 4.167vw, 160px);/ padding-bottom: 60px;
    background: #dbdbdb75;
    padding-top: 60px;
    background-image: url("/wp-content/uploads/2024/12/Energy-procurement-services-7bf36af8.webp") !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-block.animated.visible {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    background-color: #fff;
}

.contact-block {
    padding: 30px 30px;
    border-radius: clamp(18px, 1.25vw, 48px);
    border: 0.5px solid #f1f2f7;
    height: 100%;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px auto;
    background: #fff;
}

section.our-partner {
    padding: 60px 0px;
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 110% !important;
    opacity: 1;
    visibility: visible;
}

/* Pause the swiper when hovering over the testimonial container */
.testimonial-wrapper:hover .swiper-wrapper {
    animation-play-state: paused;
}

/* This pauses the sliding animation *}/* Allow swiper to continue sliding when not hovered */
.testimonial-wrapper .swiper-wrapper {
    animation-play-state: running;
    /* This keeps the animation running when not hovered */
}

.custom-column {
    text-align: center;
    color: white;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.blue-bg {
    background-color: #3db5ea;
}

.dark-blue-bg {
    background-color: #0a1734;
}

.white-bg {
    background-color: #c9ebff;
    color: black;
}

.number {
    font-size: 2rem;
    font-weight: bold;
    font-family: "Sen", sans-serif;
}

.description {
    font-size: 1rem;
}

section#stats .col-lg-2.col-md-4.col-sm-6.custom-column {
    width: 20%;
}

h2.heading.font-weight-bold.mb-3 {
    height: 30px;
}

p.button-design {
    display: flex;
}

.single-brand .thumb img {
    display: block;
    object-fit: scale-down;
    width: 100%;
    height: 100%;
    max-width: 200px;
}

.button p {
    display: flex;
}

.gas_img {
    background-image: url('/wp-content/uploads/2025/01/imgonline-com-ua-twotoone-rHRm1oJvp2jqE-scaled.jpg');
}

.bill_img {
    background-image: url('/wp-content/uploads/2025/01/woman-working-with-finances-table-smartphone-money-notepad_1268-17474.avif');
    background-position: center;
    background-size: cover;
    padding: 200px 0 70px 0;
}

.debt_img {
    background-image: url('/wp-content/uploads/2025/01/media_20250127_184749_2800760048521633121.jpg');
    background-position: center;
    background-size: cover;
    padding: 200px 0 70px 0;
}

.metering_img {
    background-image: url('/wp-content/uploads/2025/01/ImportedPhoto_1738038448708.jpg');
    background-position: center;
    background-size: cover;
    padding: 200px 0 70px 0;
}