

:root {
    --kmct-primary: #D1A97A;
    --kmct-secondary: #56736C;
    --kmct-black: #114663;
    --kmct-grey: #D9DEDD;
    --kmct-light-brown: #FDEDDB;
    --kmct-light-orange: #F4ECE2;
    --kmct-light-black: #333939;
    --kmct-light-green: #C7D9D4;
    /* --kmct-dark-text: #3B4443; */
     --kmct-dark-text:   #002035;
  
    --kmct-light-text: #616866;
    --kmct-light: #ffffff;
    --kmct-body-font: 'Albert Sans', sans-serif;
    --kmct-heading-font: 'Frank Ruhl Libre', serif;
}
html, body {
  overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/***********************
* Common
***********************/

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

body {
    font-family: var(--kmct-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    color: var(--kmct-light-text);
    text-transform: none;
    font-style: normal;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: var(--kmct-heading-font);
    color: var(--kmct-dark-text);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 63px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}

h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    /* margin-bottom: 24px; */
}

h3 {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    /* margin-bottom: 24px; */
}

h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    /* margin-bottom: 24px; */
}

h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    /* margin-bottom: 16px; */
}

h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}

p {
    margin: 0 0 16px;
}

p.lead {
    font-size: 18px;
    font-weight: 400;
    color:white;
    text-align:justify;
}

p.lead-lg {
    font-size: 20px;
    font-weight: 400;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

textarea:focus-visible {
    outline: 0;
}

input:-webkit-autofill {
    -webkit-background-clip: text;
}

[type=search] {
    outline-offset: 0;
}

input:focus-visible,
button:focus-visible {
    outline: 0;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-40 {
    --bs-gutter-y: 40px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.gutter-x-15 {
    --bs-gutter-x: 30px;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--kmct-primary);
    color: var(--kmct-black);
    border: none;
}

/***********************
* Button style
***********************/

.btn-primary {
    background-color: var(--kmct-primary);
    color: var(--kmct-black);
}

.btn-primary:hover {
    background-color: var(--kmct-light);
    color: var(--kmct-black);
}

.btn-secondary {
    background-color: var(--kmct-secondary);
    color: var(--kmct-light);
}

.btn-secondary:hover {
    background-color: var(--kmct-black)
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: var(--kmct-light);
}

.btn-light:hover span {
    color: var(--kmct-black) !important;
}

.btn-dark {
    background-color: #036db4;
    color: var(--kmct-light);
}

.btn-theme {
    border-radius: 6px;
    border: none;
    padding: 0 20px;
    overflow: hidden;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.btn-theme>span {
    display: inline-block;
    padding: 13px 0;
    line-height: 1.2;
    font-weight: 500;
    font-size: 16px;
}

span.space {
    width: 7px;
}

.btn-theme:hover>span:nth-child(odd) {
    -webkit-animation: anim-nanuk-1 0.5s forwards;
    animation: anim-nanuk-1 0.5s forwards;
}

.btn-theme:hover>span:nth-child(even) {
    -webkit-animation: anim-nanuk-2 0.5s forwards;
    animation: anim-nanuk-2 0.5s forwards;
}

.btn-theme:hover>span:nth-child(odd),
.btn-theme:hover>span:nth-child(even) {
    -webkit-animation-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-animation-function: cubic-bezier(0.75, 0, 0.125, 1);
}

@-webkit-keyframes anim-nanuk-1 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
        color: inherit;
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {}
}

@keyframes anim-nanuk-1 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
        color: inherit;
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {}
}

@-webkit-keyframes anim-nanuk-2 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
        color: inherit;
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {}
}

@keyframes anim-nanuk-2 {
    0%,
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    49% {
        opacity: 1;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
        color: inherit;
    }
    51% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    100% {}
}

.btn-theme:hover>span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.btn-theme:hover>span:nth-child(2) {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}

.btn-theme:hover>span:nth-child(3) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.btn-theme:hover>span:nth-child(4) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.btn-theme:hover>span:nth-child(5) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.btn-theme:hover>span:nth-child(6) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.btn-theme:hover>span:nth-child(7) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.btn-theme:hover>span:nth-child(8) {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}

.btn-theme:hover>span:nth-child(9) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.btn-theme:hover>span:nth-child(10) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.btn-theme:hover>span:nth-child(11) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.btn-theme:hover>span:nth-child(12) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
}

.btn-theme:hover>span:nth-child(13) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.btn-theme:hover>span:nth-child(14) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
}

.btn-theme:hover>span:nth-child(15) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.btn-theme:hover>span:nth-child(16) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.btn-theme:hover>span:nth-child(17) {
    -webkit-animation-delay: 0.80s;
    animation-delay: 0.80s;
}

.btn-theme:hover>span:nth-child(18) {
    -webkit-animation-delay: 0.85s;
    animation-delay: 0.85s;
}

.btn-theme:hover>span:nth-child(19) {
    -webkit-animation-delay: 0.90s;
    animation-delay: 0.90s;
}

.btn-theme:hover>span:nth-child(20) {
    -webkit-animation-delay: 0.95s;
    animation-delay: 0.95s;
}

.btn-theme:hover>span:nth-child(21) {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
}

/*************************
* Custom-cursor 
*************************/

.custom-cursor-one {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid var(--kmct-primary);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor-two {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--kmct-primary);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor-hover,
.custom-cursor-innerhover {
    background-color: var(--kmct-primary);
    opacity: 0.4;
    animation: scale 0.5s;
    height: 5px;
    width: 5px;
}

@keyframes scale {
    0% {
        height: 80px;
        width: 80px;
    }
    100% {
        height: 5px;
        width: 5px;
    }
}

/*******************
* Preloader
*******************/

.preloader {
    position: fixed;
    background-color: #0f110ff7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}

.loading-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-image {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.loading-image img {
    height: 80px;
    animation: zoompre 1.5s;
}

.logo-text h1 {
    max-width: 0;
    overflow: hidden;
    transition: all 0.5s;
    animation: width 2.5s 1s;
    color: var(--kmct-light);
    font-size: 60px;
    margin-bottom: 0;
}

@keyframes zoompre {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(270deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes width {
    0% {
        max-width: 0;
    }
    100% {
        max-width: 1000px;
    }
}

/***********************
* header one
***********************/

.topbar-top {
    /* background-color: #1D1D1D; */
    background-color:#0c4982;
    padding: 15px 58px;
}

.topbar-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-top-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
@media only screen and (max-width: 776px) {
    .topbar-top {
        display: none;
    }
}
ul.topbar-left-one {
    display: flex;
    column-gap: 43px;
    align-items: center;
}

ul.topbar-left-one li {
    color: var(--kmct-light);
    display: flex;
    align-items: center;
    column-gap: 10px;
}

ul.topbar-left-one li p,
ul.topbar-left-one li a,
ul.topbar-link-right-one li a,
ul.topbar-social-media-one li a {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--kmct-light);
    line-height: 1.2;
}

.topbar-right-one {
    display: flex;
    column-gap: 28px;
    align-items: center;
}

ul.topbar-link-right-one {
    display: flex;
    column-gap: 18px;
    padding-right: 20px;
}

ul.topbar-link-right-one li,
ul.topbar-social-media-one li {
    line-height: 0;
}

ul.topbar-social-media-one li a i {
    font-size: 16px;
}

ul.topbar-social-media-one {
    display: flex;
    column-gap: 18px;
    align-items: center;
}
.topbar-left-one li a:hover{
    color: rgb(185, 185, 185);
}
.topbar-social-media-one li a:hover i{
    color: rgb(185, 185, 185);}
.topbar-link-right-one li a {
  position: relative;
  text-decoration: none;
  color: #000; /* adjust your text color */
  padding: 4px 0;
}

.topbar-link-right-one li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* underline at bottom */
  width: 100%;
  height: 1px; /* underline thickness */
  background-color: #e6e6e6; /* underline color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s ease;
}

.topbar-link-right-one li a:hover::after {
  transform: scaleX(1);
}
.main-header {
    position: absolute;
    width: 100%;
    border-bottom: 1px solid rgb(224 224 224 / 17%);
    z-index: 99999;
     background: rgba(224, 224, 224, 0.1);
}

nav.main-menu {
    display: flex;
    align-items: center;
}

.main-menu-inner {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

ul.main-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-right: auto;
    padding-left: 80px;
    border-left: 1px solid rgb(224 224 224 / 17%);
}

.main-menu-logo {
    max-width: 389px;
    width: 100%;
    text-align: center;

}

.main-menu-logo img {
        
    /* margin-left: -50px; */
}

ul.main-menu-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    color: var(--kmct-light);
    padding: 45px 0 40px;
    position: relative;
}

ul.main-menu-list li a {
    color: var(--kmct-light);
    line-height: 1.2;
}

ul.main-menu-list li.active>a,
ul.main-menu-list>li.active,
ul.main-menu-list>li:hover,
ul.main-menu-list>li:hover>a {
    color: var(--kmct-primary);
    position: relative;
}

ul.main-menu-list li ul {
    position: absolute;
    width: 250px;
    padding: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: var(--kmct-black);
    z-index: 999;
    padding: 10px 0;
}

ul.main-menu-list li:hover ul {
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}

ul.main-menu-list li ul li {
    padding: 15px 25px;
    border-bottom: none;
    transition: all 0.5s;
}

ul.main-menu-list li ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    height: 2px;
    width: 0;
    transform: translateY(-50%);
    background-color: var(--kmct-primary);
    transition: all 0.5s;
}

ul.main-menu-list li ul li:hover::after {
    width: 25px;
}

ul.main-menu-list li ul li:hover {
    padding-left: 50px !important;
}

ul.main-menu-list li ul li:hover a {
    color: var(--kmct-primary);
}

ul.main-menu-list li ul li:last-child {
    border: none;
}

.header-side-menu {
    margin-right: 58px;
    width: 53px;
    height: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 60px;
    cursor: pointer;
}

.header-side-menu span {
    background-color: var(--kmct-light);
    height: 2px;
    display: inline-block;
    width: 100%;
}

.main-menu-right {
    display: flex;
    align-items: center;
}

.search-btn {
    padding: 45px 45px 40px;
    border: 1px solid rgb(224 224 224 / 17%);
    border-top: 0;
    border-bottom: 0;
    line-height: 0;
}

.search-btn img {
    height: 19px;
    width: 19px;
}

.main-menu-right .btn-light {
    margin-right: 55px;
}

.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}

.header-menu-collaps span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color: #fff;
}

.header-menu-collaps span:nth-child(2) {
    width: 32px;
}

.header-menu-collaps span:nth-child(3) {
    width: 16px;
}

/***********************
* banner one
***********************/

.banner-main {
     height: calc(100vh - 49px);
    position: relative;
    overflow: hidden;
}

.banner-item {
    padding: 203px 0 126px 140px;
    position: relative;
    height: 100vh;
}

.banner-item::after {
   
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 75%);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

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

.banner-main .heading-box {
    position: relative;
    z-index: 1;
}

.banner-sub-title-one {
    padding-left: 18px;
    padding-bottom: 75px;
    margin-bottom: 27px;
    position: relative;
    overflow: hidden;
}

.banner-sub-title-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(224, 224, 224, 0.17);
}

.banner-sub-title-one h2 {
    color: var(--kmct-light);
    line-height: 1.1;
    animation: left-in2 2s;
}

.slick-active .banner-sub-title-one h2 {
    animation: left-in3 2s;
}

@keyframes left-in2 {
    0% {
        transform: translateX(-600px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes left-in3 {
    0% {
        transform: translateX(-600px);
    }
    100% {
        transform: translateX(0px);
    }
}

.banner-item h1.heading-title {
    color: var(--kmct-light);
    line-height: 1.1;
    margin-bottom: 34px;
    animation: fade-left 1s ease;
}

.slick-active .banner-item h1.heading-title {
    animation: fade-left2 1s ease;
}

@keyframes fade-left {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes fade-left2 {
    0% {
        transform: translateY(-200px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.banner-main h1.heading-title span {
    color: #036db4;
}

.banner-main p.heading-details {
    color: var(--kmct-light);
    margin-bottom: 34px;
    max-width: 80%;
}

.banner-main ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    bottom: 115px;
    right: 178px;
    display: flex;
    column-gap: 7px;
    align-items: center;
}

.banner-main ul.slick-dots li button {
    border: 0;
    background-color: #b8b3b36e;
    font-size: 0;
    height: 2px;
    width: 40px;
    transition: all 0.5s;
}

.banner-main ul.slick-dots li.slick-active button {
    background-color: var(--kmct-light);
}

#slider-info {
    position: absolute;
    bottom: 150px;
    right: 80px;
    color: var(--kmct-light);
    font-size: 18px;
    line-height: 29px;
}

/***********************
* patner one
***********************/

.patner-section-one {
    background-color: white;
}

.patner-slide-item-one {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex !important;
    justify-content: center;
    height: 104px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.patner-slide-item-one img {
    object-fit: cover;
    height: 104px;
    transition: all 0.5s;
}

.patner-slide-item-one img {
    /* filter: brightness(0.5); */
}

/***********************
* service one
***********************/

.service-section-one {
    padding: 130px 0;
    background-color: var(--kmct-grey);
}

.service-left-one {
    padding-right: 90px;
}

span.sub-title {
    text-transform: uppercase;
    letter-spacing: 0.62em;
    margin-bottom: 12px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.service-left-one .heading-title {
    margin-bottom: 12px;
}

.service-left-details-one {
    padding-left: 15px;
    border-left: 1px solid #D4D4D4;
    position: relative;
}

.service-left-details-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background-color: var(--kmct-light-text);
    transition: all 3s;
}

.service-left-details-one.active::after {
    height: 80%;
}

.service-left-details-one p {
    margin-bottom: 75px;
}

.service-right-one {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}

.service-right-inner-one {
    width: 45%;
    flex-grow: 1;
}

.service-right-inner-one:nth-child(2) {
    margin-top: 52px;
}

.service-box-one {
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 38px;
    transition: all 0.8s;
    position: relative;
    overflow: hidden;
}

.service-box-one img {
    position: absolute;
    top: -50px;
    right: -20px;
}

.service-icon-one {
    margin-bottom: 16px;
    position: relative;
}

.animated-svg path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 3s forwards ease-in-out;
}

.service-box-one:hover .animated-svg path {
    animation: draw2 3s forwards ease-in-out;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw2 {
    to {
        stroke-dashoffset: 0;
    }
}

.service-box-one h4 {
    font-size: 20px;
    margin-bottom: 13px;
}

.service-box-one p {
    margin-bottom: 13px;
}

.service-btn-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #F5F5F5;
    color: var(--kmct-light-text);
    column-gap: 0px;
    font-size: 14px;
    padding: 10px 14px;
    transition: all 0.5s;
}

.service-btn-one span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 2s ease-in;
}

.service-box-one:hover .service-btn-one span {
    max-width: 1000px;
    opacity: 1;
    margin-right: 10px;
}

.service-box-one:hover {
    background-color: #FAEBD9;
}

.service-box-one:hover .service-btn-one {
    background-color: var(--kmct-light);
    border-radius: 6px;
}

.service-box-one:hover img {
    filter: opacity(0.3);
}

/***********************
* about one
***********************/

.about-section-one {
    padding-top: 150px;
    overflow: hidden;
    position: relative;
    margin: 0 70px;
}

.about-left-one {
    height: 934px;
}

.about-left-one img {
    position: absolute;
    left: 0;
}

.about-right-one {
    padding-left: 80px;
    margin-top: 60px;
}

.about-section-one .sub-title {
    margin-bottom: 9px;
}

.about-section-one .heading-title {
    margin-bottom: 36px;
}

.heading-title>span {
    color: var(--kmct-primary);
}

.about-details-one {
    padding-left: 16px;
    border-left: 1px solid #D4D4D4;
    position: relative;
}

.about-details-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background-color: #616866;
    transition: all 3s;
}

.about-details-one.active::after {
    height: 75%;
}

.about-details-one>p {
    margin-bottom: 48px;
}

.about-details-inner-one {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 46px;
}

.about-details-inner-one>span {
    border-radius: 100%;
    border: 1px solid #D9D9D9;
    padding: 18px;
}

.about-details-inner-one>span>span {
    height: 96px;
    width: 96px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDF1F0;
}

.about-details-box-title h5 {
    margin-bottom: 3px;
    font-weight: 500;
    color: #3B4443;
    font-family: var(--kmct-body-font);
}

.about-details-box-title p {
    margin-bottom: 0;
}

.about-project-one {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-top: 1px solid #D4D4D4;
    margin-left: -16px;
}

.about-project-one h4 {
    font-size: 80px;
    font-weight: 700;
    font-family: var(--kmct-body-font);
    background: linear-gradient(180deg, #DADFDE 13.89%, #FFFFFF 88.89%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
    width: 50%;
    text-align: center;
    border-right: 1px solid #D4D4D4;
}

.about-project-one p {
    margin-bottom: 0;
    width: 50%;
    padding: 0 50px;
    color: #3B4443;
}

.about-right-one .btn-secondary {
    margin-left: 30px;
}

/***********************
* process one
***********************/

.process-section-one {
    padding: 250px 0 120px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0ECE8 52.07%, #ECE6E1 118.82%);
    margin-top: -100px;
}

.process-section-one .heading-title {
    margin-bottom: 50px;
}

.process-inner-one {
    display: flex;
}

.process-box-one {
    padding: 95px 40px 80px 85px;
    border-radius: 100%;
    border: 1px solid #D7BA98;
    position: relative;
    background-color: #F0ECE8;
    transition: all 0.5s;
    overflow: hidden;
    width: 416px;
}

.process-box-one>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0%;
    width: 0%;
    object-fit: cover;
    transition: all 0.8s;
    border-radius: 100%;
    z-index: -1;
}

.process-icon-one {
    margin-bottom: 30px;
    position: relative;
}

.process-box-one h4 {
    margin-bottom: 15px;
    transition: all 0.5s;
}

.process-box-one p {
    position: relative;
    transition: all 0.5s;
}

.process-box-one h4 span {
    color: #D1A97A;
    transition: all 0.5s 0.3s;
}

.process-box-one+.process-box-one {
    margin-left: -183px;
}

.process-box-one:hover {
    z-index: 1;
}

.process-box-one:hover>img {
    height: 100%;
    width: 100%;
}

.process-box-one:hover h4,
.process-box-one:hover h4 span,
.process-box-one:hover p {
    color: var(--kmct-light);
}

.process-box-one::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    transition: all 0.8s ease;
    background: linear-gradient(180deg, rgba(59, 68, 67, 0) 0%, rgba(59, 68, 67, 0.42) 100%);
    backdrop-filter: blur(10px);
    /* background-size: cover;
    background-position: center;
    background-color: #3B444385;
    background-blend-mode: overlay;
    filter: blur(4px); */
}

.process-box-one:hover::before {
    height: 100%;
    width: 100%;
}

.process-box-one:hover .process-icon-one img {
    filter: brightness(20.5);
}

/***********************
* testi one
***********************/

/* .testi-section-one {
    padding: 80px 0;
} */

.testi-section-one .sub-title {
    margin-bottom: 22px;
}

.testi-author-image {
    margin-bottom: 18px;
    display: inline-block;
}

.testi-item-one {
    text-align: -webkit-center;
}

.testi-item-one h5 {
    color:white;
    font-size: 20px;
    max-width: 85%;
    margin: auto;
    margin-bottom: 30px;
}

.testi-item-one>img {
    margin-bottom: 30px;
}

.testi-item-one p {
    margin-bottom: 27px;
    color: white;
}

.testi-section-one button.slick-arrow {
    color: white;
    position: absolute;
    top: 50%;
    left: -200px;
    border: none;
    background: no-repeat;
    display: flex;
    align-items: center;
    column-gap: 26px;
    letter-spacing: 0.62em;
    text-transform: uppercase;
    font-size: 14px;
    transform: translateY(-50%);
}

.testi-section-one button.slick-next.slick-arrow {
    color: white;
    right: -200px;
    left: auto;
}

.testi-section-one ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    display: flex;
    align-items: end;
    left: 50%;
    transform: translateX(-50%);
    column-gap: 10px;
    height: 14px;
}

.testi-section-one ul.slick-dots li {
    line-height: 0;
}

.testi-section-one ul.slick-dots li button {
    border: none;
    background-color: #D4D4D4;
    font-size: 0;
    height: 7px;
    width: 2px;
    transition: all 0.5s;
}

.testi-section-one ul.slick-dots li.slick-active button {
    background-color: #D1A97A;
    height: 14px;
}

/***********************
* why-choose one
***********************/

.why-choose-section-one {
    position: relative;
    overflow: hidden;
}

.why-choose-background-one {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.why-choose-background-image-one {
    height: 100%;
    width: 100%;
}

.why-choose-background-image-one img {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    object-fit: cover;
    /* transform: scale(1.5); */
    top: -290px;
}

.counter-one {
    padding-top: 570px;
    display: flex;
}

.video-play-one {
    position: absolute;
    top: 0;
    right: 70px;
    width: 312px;
    text-align: center;
    padding: 28px 48px 80px 48px;
    border-radius: 0 0 100% 100%;
    background: #FFFFFF21;
    backdrop-filter: blur(13px);
}

.video-play-one p {
    text-align: left;
    margin-bottom: 27px;
    color: var(--kmct-light);
}

.counter-box-one {
    flex-grow: 1;
    height: 534px;
    display: flex;
    flex-direction: column;
    width: 25%;
}

.counter-box-one-inner {
    background: #00000029;
    backdrop-filter: blur(26px);
    clip-path: polygon(20% 0%, 75% 0, 100% 30%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
    padding: 40px;
    transition: all 0.5s;
}

.counter-icon {
    margin-bottom: 44px;
    height: 60px;
}

.counter-box-one h4 {
    font-size: 45px;
    margin-bottom: 0;
    color: var(--kmct-light);
    transition: all 0.5s;
}

.counter-box-one p {
    margin-bottom: 0;
    color: var(--kmct-light);
    transition: all 0.5s;
}

.counter-box-one:nth-child(even) {
    justify-content: end;
}

.counter-box-one:nth-child(even) .counter-box-one-inner {
    clip-path: polygon(20% 0%, 100% 0, 100% 33%, 100% 70%, 74% 100%, 20% 100%, 0 100%, 0 0);
    background-color: #C7D9D4;
    backdrop-filter: blur(26px);
    color: var(--kmct-black);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s 0.8s;
}

.counter-box-one:nth-child(even) h4,
.counter-box-one:nth-child(even) p {
    color: var(--kmct-black);
}

.counter-box-one:nth-child(odd) .counter-box-one-inner:hover {
    background-color: #C7D9D4;
    color: var(--kmct-black);
}

.counter-box-one:nth-child(odd) .counter-box-one-inner:hover p,
.counter-box-one:nth-child(odd) .counter-box-one-inner:hover h4 {
    color: var(--kmct-black);
}

.counter-box-one:nth-child(odd) .counter-box-one-inner:hover img {
    filter: brightness(0);
}

.counter-box-one:nth-child(odd) .counter-box-one-inner {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.5s 0.8s;
}

.counter-box-one.active .counter-box-one-inner {
    transform: scaleY(1);
}

/***********************
* work one
***********************/

.work-section-one {
    padding: 390px 0 140px;
    background-color: var(--kmct-light-black);
    margin-top: -267px;
}

.work-section-one .sub-title {
    color: var(--kmct-light);
}

.work-section-one .heading-title {
    color: var(--kmct-light);
    margin-bottom: 30px;
}

.work-details-one {
    padding-left: 28px;
    position: relative;
    border-left: 1px solid #616866;
}

.work-details-one::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background-color: var(--kmct-light);
    transition: all 3s;
}

.work-details-one.active::after {
    height: 80%;
}

.work-details-one .lead-lg {
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    color: var(--kmct-light);
}

.work-details-one .lead {
    color: var(--kmct-light);
}

.work-btn {
    text-align: end;
    margin-bottom: 90px;
}

.work-process-one {
    margin-bottom: 44px;
}

.work-process-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-process-title p {
    color: var(--kmct-light);
    font-weight: 500;
    font-size: 20px;
}

.work-processing {
    width: 100%;
    height: 6px;
    background-color: #FFFFFF0A;
    position: relative;
}

.work-processing span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    width: 0%;
    transition: width 1.5s ease;
}

.work-process-one:last-child {
    margin-bottom: 0;
}

/***********************
* team one
***********************/

.team-section-one {
    padding: 125px 0 130px 0;
    background-color: var(--kmct-grey);
}

.team-section-one .sub-title {
    margin-bottom: 18px;
}

.team-section-one .heading-title {
    margin-bottom: 36px;
}

.team-box-one {
    background-color: var(--kmct-light);
    position: relative;
}

.team-details-one {
    position: absolute;
    top: 30px;
    left: 28px;
}

.team-details-one h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-details-one h4 a {
    color: var(--kmct-black);
}

.team-social-media-one {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
}

.team-social-media-one li a {
    height: 40px;
    width: 40px;
    background-color: var(--kmct-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
}

.team-social-media-one li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0%;
    width: 0%;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
    border-radius: 100%;
}

.team-social-media-one li a:hover::before {
    height: 100%;
    width: 100%;
}

.team-social-media-one li a img {
    position: relative;
}

.team-image-one {
    text-align: right;
}

.team-box-one:hover .team-social-media-one {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

/***********************
* blog one
***********************/

.blog-section-one {
    background-image: url(../images/blog/Blog-bg.jpg);
    background-size: auto;
    background-position: center;
}

.blog-box-one {
    padding: 140px 0px;
    position: relative;
}

/* .blog-background-image-one{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
} */

/* .blog-background-image-one img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.1;
} */

/* .blog-background-image-one::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0F1E1B;
} */

.blog-image-one {
    position: relative;
    padding: 24px;
    margin: auto;
    border: 1px solid #FFFFFF4D;
    margin-bottom: 70px;
    height: 346px;
    width: 385px;
    transition: all 0.5s;
}

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

.blog-details-one {
    position: relative;
    width: 385px;
    margin: auto;
}

.blog-meta-one {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 24px;
}

.blog-date-one {
    font-weight: 600;
    color: var(--kmct-light);
}

.blog-tag-one {
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.32em;
    padding: 5px 15px;
    color: var(--kmct-light);
    text-transform: uppercase;
    border-radius: 6px;
    background-color: #D9D9D91F;
}

h4.blog-title-one {
    margin-bottom: 18px;
    font-size: 24px;
}

.slick-current.slick-active .blog-title-one a {
    color: var(--kmct-light);
}

h4.blog-title-one a {
    color: #FFFFFF;
    background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

h4.blog-title-one a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
    color: var(--kmct-light);
}

@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }
    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}

@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }
    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}

.blog-author-one {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.blog-author-one a {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--kmct-light);
}

.blog-author-one a span {
    font-weight: 300;
    padding-right: 3px;
}

.blog-image-one .btn-link {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    backdrop-filter: blur(8px);
    background: var(--kmct-secondary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    transition: all 0.5s;
}

.blog-image-one .btn-link img {
    max-width: 12px;
    height: 12px;
}

.slick-current.slick-active .btn-link,
.blog-box-one:hover .btn-link {
    opacity: 1;
}

.blog-box-one:hover .blog-image-one {
    border-color: #fff;
}

.blog-box-one:hover .btn-link {
    backdrop-filter: blur(0px);
    background: #fff;
}

.btn-link img {
    transition: all 0.5s;
}

.blog-box-one:hover .btn-link img {
    filter: brightness(0);
}

/***********************
* main-footer one
***********************/

/* .main-footer {
    background: linear-gradient(0deg, #0c4982 -1.6%, #0c4982 100%);
    background: -webkit-linear-gradient(90deg, #0c4982 -1.6%, #0c4982 100%);
    overflow: hidden;
} */
.main-footer {
    background: linear-gradient(
        rgba(0, 27, 53, 0.9),   /* transparent blue overlay */
        rgba(1, 31, 59, 0.9)
    ),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEedFeOPBxe5KUV02fYAoiyxw35-Rgpe_N8g&s");       /* background image */
    background-size: cover;      /* make image cover entire footer */
    background-position: center;
    color: #fff;                 /* ensure text is readable */
    overflow: hidden;
}

.contact-section-one {
    padding-top: 145px;
    padding-bottom: 82px;
}

.contact-section-one .sub-title {
    margin-bottom: 9px;
}

.contact-section-one .heading-title {
    margin-bottom: 33px;
}

.contact-left-one>p {
    margin-bottom: 36px;
    padding-left: 19px;
}

ul.contact-details-one {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 65px;
    position: relative;
}

ul.contact-details-one::after {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    height: 255px;
    width: 1px;
    background-color: #D4D4D4;
}

ul.contact-details-one::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    height: 87px;
    width: 1px;
    background-color: #3B4443;
    z-index: 1;
}

ul.contact-details-one li {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 33px;
}

ul.contact-details-one li a,
ul.contact-details-one li p {
    color: var(--kmct-black);
    font-size: 18px;
    margin-bottom: 0;
    font-family: var(--kmct-heading-font);
}

.contact-form-one {
    margin-left: 60px;
    padding: 75px 56px;
    background-color: var(--kmct-light);
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 79%, 86% 100%, 0 100%, 0 100%, 0 0);
}

.form-group {
    display: flex;
    column-gap: 50px;
    margin-bottom: 37px;
}

.contact-form-one .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #56736C;
    padding: 11px 0;
}

.contact-form-one .btn-secondary {
    column-gap: 80px;
}

/***********************
* footer one
***********************/

footer.footer-one {
    padding-top: 140px;
    border-top: 1px solid #00000033;
    margin: 0 70px;
}

.footer-about-one {
    padding-right: 100px;
}

.footer-logo-one {
    margin-bottom: 23px;
 
}

.footer-widget-one h4 {
    margin-bottom: 30px;
    font-size: 20px;
       color: white;
}

ul.footer-menu-one {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-menu-one li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 10px;
}

ul.footer-menu-one li img {
    max-width: 22px;
    height: 22px;
}

ul.footer-menu-one li a {
    font-size: 18px;
    color: white;
    position: relative;
}

ul.footer-menu-one li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: all 0.5s;
}

ul.footer-menu-one li a:hover::after {
    width: 100%;
}

.footer-widget-one {
    padding-left: 60px;
    position: relative;
}

ul.footer-menu-one::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 82%;
    width: 1px;
    background-color: #dbdbdb33;
}

.footer-newslatter-one .newslatter-form-group {
    position: relative;
}

.footer-newslatter-one h4 {
    margin-bottom: 57px;
    font-size: 20px;
    color: white;
}

.footer-newslatter-one .form-control {
    padding: 15px 30px 15px 0;
    border: none;
    border-bottom: 1px solid #00000033;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 28px;
}

.newslatter-form-group .btn-link {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    filter: brightness(0.5);
}

ul.footer-social-media-one {
    margin: 0;
    padding: 0;
    list-style: none;
    /* display: flex; */
    align-items: center;
    column-gap: 15px;
}

ul.footer-social-media-one li a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #CCCCCC;
    position: relative;
    color: #000;
    margin: 20px;
}

ul.footer-social-media-one li a:hover {
    color: var(--kmct-light);
}

ul.footer-social-media-one li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--kmct-dark-text);
    transition: all 0.5s;
}

ul.footer-social-media-one li a:hover::after {
    height: 100%;
    width: 100%;
}

ul.footer-social-media-one li a i {
    position: relative;
    z-index: 1;
}

ul.footer-social-media-one li a img {
    filter: brightness(0);
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

ul.footer-social-media-one li a:hover img {
    filter: brightness(10);
}

.footer-lower-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #bdbdbd33;
    margin-top: 60px;
}

.footer-lower-one p {
    margin-bottom: 0;
    color:white;
    font-size: 16px;
}
.footer-link {
  color: #fff;               /* default link color */
  text-decoration: none;
  margin-left: 5px;          /* small spacing after "Designed By" */
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.footer-link:hover {
  color: #1886cf;            /* change text color on hover */
  border-bottom: 1px solid #1886cf; /* underline effect */
}

.footer-lower-one ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.footer-lower-one ul li a {
    font-size: 18px;
    color: white;
    position: relative;
}

.footer-lower-one ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--kmct-black);
    transition: all 0.5s;
}

.footer-lower-one ul li a:hover::after {
    width: 100%;
}
.footer-social-media-one {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-media-one li {
  margin-bottom: 12px;
}

.footer-social-media-one a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;   /* adjust based on footer bg */
  gap: 10px;     /* space between circle and text */
}
@media (max-width: 776px) {
  .footer-about-one {
    padding-right: 0px;
    padding:20px;
}
.footer-logo-one img{
    width:80%;
}
.lead{
    text-align:justify;
}
}
.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0c4982;  /* circle background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle i {
  font-size: 16px;
  color: #fff; /* icon color */
}

.social-text {
  font-size: 16px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0; /* add bottom space before socials */
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;  /* ðŸ‘ˆ keeps icon at the top */
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4; /* better spacing for multiple lines */
}

.contact-info-list i {
  color: hsl(199, 69%, 48%);   /* highlight icons */
  font-size: 16px;
  margin-top: 2px; /* fine-tune vertical alignment */
}
.contact-info-list i {
  color: #ffffff;   /* highlight icons */
  font-size: 16px;
}
.contact-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-item {
  margin-bottom: 12px;
}
.contact-info-list a{
    color:white;
    margin-bottom: 20px;
}
.contact-social-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;       /* default text color */
  gap: 10px;
  transition: color 0.3s ease;
}

/* Hover effects */
.contact-info-list li:hover {
  color: #2192d3; /* text turns yellow */
}

.contact-info-list li:hover i {
  color: #fff;        /* icon turns white */
  transform: scale(1.2); /* small zoom effect */
}
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0c4982; /* circle background */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-icon i {
  font-size: 16px;
  color: #fff;
}

.contact-label {
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Hover effect */
.contact-social-item a:hover .contact-icon {
  background: #ffffff;     /* circle becomes white */
  transform: scale(1.1);   /* slight zoom */
}

.contact-social-item a:hover .contact-icon i {
  color: #0c4982;          /* icon turns dark blue */
}

.contact-social-item a:hover .contact-label {
  color: #2587e2;          /* text changes color (yellowish) */
}
/***********************
* header two
***********************/

.main-header.header-two {
    border: none;
}

.header-two ul.main-menu-list {
    border: none;
    margin: 0;
    padding: 0;
}

.header-two ul.main-menu-list>li {
    padding: 33px 0;
}

.header-two nav.main-menu {
    border: 1px solid #FFFFFF1A;
    border-left: none;
    border-right: none;
    margin-top: 38px;
}

.header-two .main-menu-logo {
    max-width: unset;
    width: auto;
    text-align: left;
}

.header-two .main-menu-logo img {
    margin-left: 0px;
}

.header-two .main-menu-inner {
    justify-content: center;
}

.header-two .main-menu-right .btn-light {
    margin-right: 0;
    background-color: rgba(255, 255, 255, 0.14);
}

.header-two .main-menu-right .btn-light:hover {
    background-color: var(--kmct-light);
}

.header-two ul.main-menu-list>li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--kmct-light);
}

.header-two ul.main-menu-list>li.active::after {
    width: 100%;
}

.header-two ul.main-menu-list li ul {
    background-color: var(--kmct-light);
}

.header-two ul.main-menu-list li ul li {
    border-bottom: 1px solid rgb(224 224 224 / 61%);
}

.header-two ul.main-menu-list li ul li a {
    color: var(--kmct-black);
}

.header-two ul.main-menu-list li ul li:hover a {
    color: var(--kmct-primary);
}

.sticky-header--cloned.sticky-fixed.header-two nav.main-menu {
    margin-top: 0;
}

/***********************
* banner two
***********************/

.banner-section-two {
    background-color: #0C1215;
    padding: 227px 0 493px 0;
    position: relative;
    background-image: url(../images/background/banner-two-bg.png);
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-hedding-two h1 {
    font-size: 90px;
    line-height: 99px;
    color: #FFFFFFD4;
}

.banner-hedding-two h1 span {
    font-size: 16px;
    color: #D6D7D7;
    font-style: italic;
    font-family: var(--kmct-body-font);
    padding: 5px 33px;
    border-radius: 32px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.23) 0%, rgba(12, 18, 21, 0) 100%);
    max-width: 300px;
    line-height: 25px;
    display: inline-block;
    transform: translateY(-10px);
}

.banner-logo-text-two {
    text-align: center;
    position: absolute;
    bottom: -120px;
    width: 100%;
}

.banner-logo-text-two p {
    font-size: 592.62px;
    font-weight: 700;
    line-height: 651.88px;
    letter-spacing: -0.01em;
    background: url(../images/background/banner-two-1.jpg) 0 0 / cover no-repeat;
    color: #de466c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.banner-two__circle {
    position: absolute;
    right: 320px;
    top: 210px;
}

.banner-two-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
    height: 47px;
    width: 47px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF47;
    z-index: 1;
}

.curved-circle {
    color: #ffff;
    width: 185px;
    height: 185px;
    border-radius: 100%;
    position: relative;
    animation: textRotate 15s linear 0s forwards infinite alternate;
}

.curved-circle--item {
    width: 181px;
    height: 181px !important;
}

@keyframes textRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.curved-circle--item span {
    z-index: 1;
    letter-spacing: 0px;
    background-color: #0C1215;
}

/***********************
* patner two
***********************/

.patner-section-two {
    padding: 135px 0;
    background-color: var(--kmct-black);
}

.patner-slide-item-two {
    text-align: -webkit-center;
}

/***********************
* about two
***********************/

.about-section-two {
    background-color: var(--kmct-black);
}

.about-image-left-two {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    padding-right: 87px;
}

.about-image-left-two img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-right-two {
    margin-top: 37px;
}

.light .sub-title,
.light .heading-title {
    color: var(--kmct-light);
}

.about-section-two .heading-title {
    margin-bottom: 12px;
}

.about-details-two p {
    color: var(--kmct-light);
    margin-bottom: 42px;
}

.about-list-two {
    display: flex;
    align-items: center;
    column-gap: 85px;
    position: relative;
}

.about-list-two::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    background-color: #FFFFFF52;
}

.about-list-inner-two div {
    display: flex;
    align-items: center;
    column-gap: 7px;
    margin-bottom: 12px;
}

.about-list-inner-two h4 {
    margin-bottom: 0;
    color: var(--kmct-light);
    font-size: 18px;
}

.about-list-inner-two p {
    margin-bottom: 0;
    color: #999999;
}

.about-image-right-two {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.about-counter-two {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.about-counter-icon-two {
    margin-bottom: 80px;
}

.about-counter-icon-two img {
    width: 154px;
    filter: brightness(0.5);
}

.about-counter-two h4 {
    font-size: 139px;
    background: linear-gradient(180deg, #FFFFFF 8.1%, rgba(153, 153, 153, 0) 84.36%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
}

.about-counter-two p {
    font-size: 35px;
    font-weight: 300;
    color: var(--kmct-light);
    margin-bottom: 0;
    margin-top: -22px;
}

/***********************
* service two
***********************/

.service-section-two {
    background-color: var(--kmct-black);
    padding: 155px 0 105px 0;
}

.service-section-two .heading-box {
    margin-bottom: 67px;
}

.service-box-two {
    overflow: hidden;
    position: relative;
}

.service-details-two {
    padding: 150px 50px;
    position: absolute;
    padding-bottom: 72px;
    z-index: 1;
    width: calc(100% + 1px);
    bottom: -1px;
}

.service-details-two::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -1px;
    height: 100%;
    width: 101%;
    background-color: var(--kmct-light);
    transition: all 0.5s;
    clip-path: polygon(66% 29%, 100% 11%, 100% 100%, 0 100%, 0 0);
    z-index: -1;
}

.service-image-two {
    height: 493px;
}

.service-image-two::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(27, 36, 41, 0) 0%, rgba(27, 36, 41, 0.79) 78.72%);
}

.service-image-two img {
    height: 60%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.service-icon-two {
    position: absolute;
    top: 41%;
    transform: translateY(-50%);
    left: 44px;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #FAEBD9;
    z-index: 2;
    transition: all 0.5s;
}

.service-details-two h4 {
    margin-bottom: 12px;
}

.service-details-two h4 a {
    color: var(--kmct-black);
}

.service-details-two p {
    margin-bottom: 0;
    transition: all 0.5s;
}

.service-box-two:hover .service-icon-two {
    opacity: 0;
}

.service-box-two:hover .service-details-two::after {
    bottom: -350px;
}

.service-box-two:hover .service-image-two img {
    height: 100%;
}

.service-box-two:hover h4 a,
.service-box-two:hover p {
    color: var(--kmct-light);
}

/***********************
* testi two
***********************/

.testi-section-two {
    background-color: var(--kmct-black);
}

.testi-section-inner-two {
    position: relative;
    border: 1px solid #FFFFFF29;
    border-left: none;
    border-right: none;
    padding: 112px 0 198px 0;
}

.testi-slider-two {
    width: 75%;
    position: unset;
}

.testi-box-two {
    display: flex;
    justify-content: space-between;
    column-gap: 170px;
}

.testi-details-two {
    display: flex;
    column-gap: 60px;
}

.testi-details-two img {
    width: 73px;
    height: 104px;
}

.testi-details-two p {
    font-family: var(--kmct-heading-font);
    font-size: 45px;
    color: #FFFFFF82;
}

.testi-details-two p span {
    color: var(--kmct-light);
}

.testi-image-two {
    margin-top: 25px;
    width: 183px;
    height: 102px;
    border-radius: 51px;
    overflow: hidden;
}

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

.testi-section-two button.slick-arrow {
    border: none;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF0F;
    border-radius: 100%;
    font-size: 0;
    position: absolute;
    right: 200px;
    top: 137px;
    z-index: 1;
}

.testi-section-two button.slick-next.slick-arrow {
    right: 0px;
    background-color: #FFFFFF59;
}

.testi-section-two ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 22px;
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
}

.testi-section-two ul.slick-dots li button {
    border: none;
    font-size: 0;
    height: 7px;
    width: 7px;
    background-color: #FFFFFF1F;
    border-radius: 100%;
}

.testi-section-two ul.slick-dots li.slick-active button {
    background-color: var(--kmct-light);
}

.testi-slider-thumb {
    position: absolute;
    top: 111px;
    right: 0;
    width: 183px;
}

/***********************
* testi two
***********************/

.why-choose-section-two {
    background-color: var(--kmct-black);
    padding: 140px 0 150px 0;
    position: relative;
}

.why-choose-image-two {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-section-two .heading-box {
    margin-bottom: 40px;
}

.why-choose-left-two {
    text-align: right;
    padding-right: 78px;
}

.why-choose-icon-two {
    margin-bottom: 35px;
}

.why-choose-box-two h4 {
    font-size: 20px;
    color: var(--kmct-light);
    margin-bottom: 12px;
}

.why-choose-box-two p {
    color: var(--kmct-light);
    margin-bottom: 0;
}

.why-choose-box-two+.why-choose-box-two {
    margin-top: 285px;
}

.why-choose-right-two {
    padding-left: 78px;
}

/***********************
* work two
***********************/

.work-section-two {
    background-color: var(--kmct-black);
    padding: 230px 0;
    background-image: url(../images/work/work-two-bg.jpg);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.work-section-two .nav-link.active {
    background-color: transparent;
}

.work-section-two .nav-link {
    padding: 40px;
    border-top: 1px solid #FFFFFF29;
    border-radius: 0;
    color: var(--kmct-light);
    position: relative;
}

.work-section-two .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--kmct-light);
    transition: all 1s;
}

.work-section-two .nav-link.active::after {
    width: 80%;
}

.work-section-two .nav-link:last-child {
    border-bottom: 1px solid #FFFFFF29;
}

.work-section-two .nav-link h4 {
    color: var(--kmct-light);
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 0px;
}

.work-details-two {
    max-height: 0px;
    overflow: hidden;
    text-align: left;
    padding-left: 40px;
}

.work-section-two .nav-link.active .work-details-two {
    max-height: 1000px;
    transition: all 3s;
}

.work-section-two .nav-link.active h4 {
    margin-bottom: 24px;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--kmct-light) !important;
}

.work-section-two .tab-pane.active .work-image-two {
    animation: fade-right 2s;
}

@keyframes fade-right {
    0% {
        transform: translateX(300px);
    }
    100% {
        transform: translateX(0px);
    }
}

/***********************
* process two
***********************/

.process-section-two {
    background-color: var(--kmct-black);
    padding: 150px 0;
}

.process-section-two .heading-box {
    margin-bottom: 98px;
}

.process-box-two {
    padding-left: 25px;
    background: linear-gradient(180deg, #313E45 0%, rgba(35, 45, 51, 0.24) 100%);
}

.process-icon-two {
    width: 105px;
    height: 122px;
    border-radius: 0 0 52px 52px;
    background-color: var(--kmct-black);
    margin-bottom: 28px;
    position: relative;
}

.process-icon-two img {
    width: 50px;
    opacity: 0;
    filter: brightness(50);
    transition: all 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-box-two:hover .process-icon-two img {
    opacity: 1;
}

.process-icon-two span {
    font-family: var(--kmct-heading-font);
    font-size: 45px;
    color: var(--kmct-light);
    transition: all 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-box-two:hover .process-icon-two span {
    opacity: 0;
}

.process-box-two h4 {
    color: var(--kmct-light);
    font-size: 20px;
    margin-bottom: 23px;
}

.process-box-two p {
    color: var(--kmct-light);
    margin-bottom: 20px;
}

.process-btn {
    margin-bottom: 38px;
    display: inline-block;
}

.process-btn span {
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--kmct-light);
    transition: all 0.5s;
}

.process-box-two:hover .process-btn span {
    margin-left: 20px;
    border-color: #374249B2;
}

.process-box-two svg {
    transition: all 0.5s;
}

.process-box-two:hover svg {
    width: 50px;
    height: 18px;
    transform: translateX(-20px);
}

/***********************
* portfolio two
***********************/

.portfolio-section-two {
    position: relative;
}

.portfolio-item-two {
    position: relative;
    margin-bottom: -8px;
}

.portfolio-details-two {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 521px;
    background-color: #1B24290A;
    backdrop-filter: blur(58px);
    padding: 93px 0 95px 70px;
    color: var(--kmct-light);
    display: flex;
    flex-direction: column;
}

.portfolio-details-two h4 {
    color: var(--kmct-light);
    font-size: 45px;
    margin-bottom: 0;
}

.portfolio-details-two .sub-title {
    height: 100%;
}

.portfolio-btn {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid #77777747;
    flex-shrink: 0;
}

.portfolio-details-two p {
    margin-bottom: 0;
}

.portfolio-details-two p span {
    color: var(--kmct-primary);
}

.portfolio-section-two button.slick-arrow {
    position: absolute;
    border: none;
    background: transparent;
    z-index: 1;
    top: 43%;
    right: 70px;
    transform: translateY(-50%);
}

.portfolio-section-two button.slick-next.slick-arrow {
    left: 70px;
    right: auto;
}

/***********************
* blog two
***********************/

.blog-section-two {
    padding-top: 150px;
    background-color: var(--kmct-black);
}

.blog-section-two .heading-box {
    margin-bottom: 56px;
}

.blog-image-two {
    position: relative;
    margin-bottom: 33px;
    overflow: hidden;
}

ul.blog-tag-two {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 14px;
    position: absolute;
    top: 20px;
    left: 24px;
}

ul.blog-tag-two li a {
    padding: 8px 19px;
    color: var(--kmct-light);
    background-color: var(--kmct-black);
    border-radius: 6px;
}

.blog-meta-date-two a {
    color: var(--kmct-light);
    margin-bottom: 24px;
    display: inline-block;
}

.blog-box-two h4 {
    margin-bottom: 24px;
    max-width: 80%;
}

.blog-box-two h4 a {
    color: var(--kmct-light);
    background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.blog-box-two h4 a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
    color: var(--kmct-light);
}

.blog-box-two>p {
    margin-bottom: 37px;
    color: var(--kmct-light);
    max-width: 80%;
}

.blog-meta-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #FFFFFF29;
}

.blog-author-two {
    display: flex;
    column-gap: 14px;
    align-items: center;
}

.blog-author-two p {
    margin-bottom: 0;
    color: var(--kmct-light);
}

.blog-box-two .btn-dark {
    background-color: #222B2F;
}

.blog-image-two img {
    transition: all 0.8s;
}

.blog-image-two:hover img {
    transform: scale(1.2);
}

/***********************
* cta two
***********************/

.cta-section-two {
    background-color: var(--kmct-black);
    padding-top: 400px;
    padding-bottom: 150px;
    position: relative;
}

.cta-section-two::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/cta-bg-two.png);
    background-size: contain;
    background-position: center;
}

.cta-section-two .heading-box {
    margin-bottom: 18px;
}

.cta-box-two {
    position: relative;
    z-index: 1;
}

.cta-section-two .btn-light {
    background-color: var(--kmct-light);
    color: var(--kmct-black);
}

.cta-section-two p {
    font-size: 426px;
    font-weight: 700;
    line-height: 468.6px;
    color: var(--kmct-black);
    position: absolute;
    top: -350px;
    left: 50%;
    transform: translateX(-50%);
}

/***********************
* footer two
***********************/

.footer-section-two {
    background-color: var(--kmct-black);
    color: var(--kmct-light);
}

.newslatter-form-group-two {
    position: relative;
}

.newslatter-form-group-two .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--kmct-light);
    border-radius: 0;
    padding: 0px 30px 15px 0;
    color: var(--kmct-light);
}

.newslatter-form-group-two .form-control::placeholder {
    color: var(--kmct-light);
}

.newslatter-form-group-two button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}

.footer-logo-two,
.newslatter-two {
    margin-bottom: 125px;
}

.footer-about-two,
.footer-widget-two {
    margin-bottom: 75px;
}

.footer-section-two h4 {
    font-size: 20px;
    color: var(--kmct-light);
    margin-bottom: 30px;
}

.footer-about-two>p {
    margin-bottom: 30px;
}

.footer-section-two ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-about-list-two li {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 24px;
}

ul.footer-about-list-two li a,
ul.footer-about-list-two li p {
    color: var(--kmct-light);
    margin-bottom: 0;
}

ul.footer-about-list-two li a:hover {
    color: var(--kmct-primary);
}

ul.footer-about-list-two li span {
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #D9D9D91A;
}

ul.footer-menu-two li {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-bottom: 22px;
}

ul.footer-menu-two li img {
    max-width: 18px;
    filter: brightness(30);
}

ul.footer-menu-two li a {
    color: var(--kmct-light);
    position: relative;
}

ul.footer-menu-two li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    transition: all 0.5s;
    height: 1px;
    background-color: var(--kmct-primary);
}

ul.footer-menu-two li a:hover::after {
    width: 100%;
}

ul.footer-menu-two li a:hover {
    color: var(--kmct-primary);
}

.footer-widget-two {
    padding-left: 65px;
    border-left: 1px solid #FFFFFF33;
}

.footer-lower-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid #FFFFFF33;
    position: relative;
    z-index: 1;
}

.footer-lower-two p {
    margin-bottom: 0;
    font-size: 14px;
}

.footer-lower-two ul {
    display: flex;
    align-items: center;
    column-gap: 18px;
}

.footer-lower-two ul li a {
    color: var(--kmct-light);
}

.footer-section-four .footer-lower-two ul li a {
    color: var(--kmct-black);
}

/***********************
* header three
***********************/

.main-header.header-three {
    border: none;
    position: relative;
    margin: 24px 0;
}

.header-three ul.main-menu-list>li {
    color: var(--kmct-black);
    position: relative;
    padding: 28px 0;
}

.sticky-fixed.header-three ul.main-menu-list>li {
    padding: 40px 0;
}

.header-three ul.main-menu-list>li>a {
    color: var(--kmct-black);
}

.header-three ul.main-menu-list>li::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
}

.header-three ul.main-menu-list>li.active::after,
.header-three ul.main-menu-list>li:hover::after {
    width: 100%;
}

.header-three .main-menu-right .btn-light {
    margin-right: 0;
    background-color: #F1F1F1;
    backdrop-filter: blur(10px);
    color: var(--kmct-black);
}

.header-three ul.main-menu-list {
    border: none;
}

.header-three .header-menu-collaps span {
    background-color: var(--kmct-black);
}

.main-header.header-three.sticky-header--cloned.sticky-fixed {
    margin: 0;
    background-color: rgb(255 255 255 / 93%);
}

/***********************
* banner three
***********************/

.banner-section-three {
    margin: 0 70px;
}

.banner-left-three {
    padding: 0 130px 0 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F1F1F1;
    border-radius: 39px;
    background-image: url(../images/about/banner-three-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-image-three {
    height: 100%;
    border-radius: 39px;
    overflow: hidden;
}

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

.banner-heading-box-three h1 {
    font-size: 90px;
    line-height: 99px;
    margin-bottom: 0;
    color: var(--kmct-black);
}

.banner-left-three>p {
    color: #1D1D1D;
    max-width: 85%;
    margin-bottom: 30px;
}

.banner-details-three {
    display: flex;
    align-items: center;
    column-gap: 14px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.banner-details-three ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-details-three ul li {
    display: inline-block;
}

.banner-details-three ul li+li {
    margin-left: -20px;
}

.banner-details-three p {
    font-size: 35px;
    font-weight: 600;
    color: var(--kmct-black);
    margin-bottom: 0;
}

/***********************
* about three
***********************/

.about-section-three {
    padding: 100px 0 175px 0;
    overflow: hidden;
}

.about-box-outer-three {
    padding-bottom: 75px;
    border-bottom: 1px solid #00000033;
    margin-bottom: 120px;
}

.about-box-three {
    display: flex;
    align-items: center;
    column-gap: 18px;
    max-width: 83%;
    position: relative;
}

.about-box-three::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -65px;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background-color: #00000033;
}

.about__box:last-child .about-box-three::after {
    display: none;
}

.about-icon-three {
    height: 74px;
    width: 74px;
    border-radius: 100%;
    background-color: #F8F4EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-details-three h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.about-details-three p {
    margin-bottom: 0;
}

.about-left-three h2 {
    max-width: 89%;
    margin-bottom: 26px;
}

.about-left-three>p {
    margin-bottom: 20px;
}

ul.about-list-three {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.about-list-three li {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

ul.about-list-three li span {
    height: 9px;
    width: 9px;
    display: inline-block;
    border-radius: 5px 1px 1px 5px;
    background-color: var(--kmct-dark-text);
}

ul.about-list-three li p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 38px;
}

.about-right-three {
    position: relative;
    height: 100%;
}

.about-shape-three-3 {
    width: 567px;
    height: 340px;
    border-radius: 30px;
    overflow: hidden;
    transform: rotateZ(68deg) skew(-22deg, 0deg);
    position: absolute;
    top: 85px;
    left: 0;
    background-color: gray;
}

.about-shape-three-3 img {
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 1s;
}

.about-shape-three-3:hover img {
    transform: scale(1.2) translate(-73px, 32px);
}

.about-shape-image-container {
    position: absolute;
    top: -30px;
    left: -90px;
    height: 600px;
    width: 730px;
    transform: rotateZ(-90deg) skew(-19deg, 0deg);
}

.about-shape-box-three {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 17px;
    background-color: var(--kmct-light-green);
    padding: 30px;
    padding-right: 78px;
}

.about-shape-icon-three {
    width: 76px;
    height: 70px;
    background-color: var(--kmct-light);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-shape-box-three h4 {
    font-size: 63px;
    margin-bottom: -10px;
}

.about-shape-box-three p {
    font-family: var(--kmct-heading-font);
    font-size: 20px;
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

.about-shape-three-1 {
    position: absolute;
    bottom: -30px;
    right: 0;
    animation: updown1 10s infinite;
}

@keyframes updown1 {
    0% {
        transform: translateX(-200px);
    }
    50% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-200px);
    }
}

.about-shape-three-2 {
    position: absolute;
    bottom: -6px;
    left: 85px;
    animation: updown 10s infinite;
}

@keyframes updown {
    0% {
        transform: translateY(-200px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-200px);
    }
}

/***********************
* service three
***********************/

.service-section-three {
    position: relative;
    padding-top: 130px;
    margin: 0 70px;
    overflow: hidden;
    background-image: url(../images/services/service-three-bg.png);
    background-position: top right;
    background-size: auto;
    background-repeat: no-repeat;
}

.service-section-three::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 477px;
    background-color: var(--kmct-black);
    border-radius: 40px;
    z-index: -1;
}

.heading-box-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.service-section-three .btn-light {
    background-color: var(--kmct-light);
    color: var(--kmct-black);
}

.service-section-three .heading-title {
    color: var(--kmct-light);
    margin-bottom: 0;
    max-width: 478px;
}

.service-box-three {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.8s;
}

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

.service-box-three:hover {
    transform: translateY(-10px);
}

.service-box-three::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(59, 68, 67, 0) 0%, #1B2429 100%);
    background-blend-mode: multiply;
}

.service-details-three {
    position: absolute;
    bottom: 33px;
    left: 33px;
    z-index: 1;
}

.service-details-three span {
    height: 63px;
    width: 63px;
    border-radius: 11px;
    background-color: #FFFFFF2B;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-three h4 {
    font-size: 20px;
    margin-bottom: 0;
}

.service-details-three h4 a {
    color: var(--kmct-light);
}

/***********************
* testi three
***********************/

.testi-section-three {
    padding: 150px 0;
    overflow: hidden;
}

.testi-section-three .heading-box {
    margin-bottom: 30px;
}

.testi-left-three {
    padding-right: 50px;
}

.testi-left-three>p {
    margin-bottom: 33px;
}

.testi-user-three {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

.testi-user-three ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.testi-user-three ul li {
    display: inline-block;
}

.testi-user-three ul li+li {
    margin-left: -20px;
}

.testi-user-three p {
    font-weight: 600;
    margin-bottom: 0;
    color: #1D1D1D;
    max-width: 50%;
}

.testi-slider-three {
    display: flex;
    align-items: center;
    column-gap: 90px;
    background-color: #F8F4EB;
    border-radius: 24px;
    padding: 80px 52px 70px 80px;
    position: relative;
}

.testi-slider-three::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 270px;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #00000026;
}

.testi-item-three-1 {
    text-align: center;
}

.testi-image-three-1 {
    margin: auto;
    margin-bottom: 14px;
    height: 133px;
    width: 133px;
    border-radius: 100%;
    overflow: hidden;
}

.testi-image-three-1 img {
    width: 100%;
    height: 100%;
}

.testi-item-three-1 h4 {
    font-size: 20px;
    margin-bottom: 3px;
}

.testi-item-three-1 p {
    margin-bottom: 0;
}

.testi-icon-three-1 {
    margin-bottom: 25px;
}

.testi-item-three-2 p {
    font-weight: 300;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 27px;
}

.testi-slider-three-1 {
    width: 25%;
}

.testi-slider-three-2 {
    width: 60%;
    position: relative;
}

.testi-slider-three-2 button.slick-arrow {
    border: none;
    background: transparent;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.testi-slider-three-2 button.slick-next.slick-arrow {
    left: 68px;
}

.testi-slider-three-2 button.slick-arrow img {
    width: 36px;
}

/***********************
* team three
***********************/

.team-section-three {
    padding: 0px 0 150px 0;
    overflow: hidden;
}

.team-section-three hr {
    margin: 0 0 130px 0;
}

.team-section-three .heading-title {
    margin-bottom: 46px;
}

.team-box-three {
    text-align: center;
    border-left: 1px dashed #CBCBCB;
}

.team-image-three {
    margin-bottom: 20px;
}

.team-box-three h4 {
    font-size: 20px;
    margin-bottom: 3px;
}

.team-box-three h4 a {
    color: var(--kmct-dark-text);
}

.team-box-three p {
    margin-bottom: 12px;
}

ul.team-social-media-three {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
}

ul.team-social-media-three li a {
    border-radius: 100%;
    height: 34px;
    width: 34px;
    background-color: #E0E0E02B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    position: relative;
    color: #0c0c0c;
}

ul.team-social-media-three li a img {
    filter: brightness(0);
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}

ul.team-social-media-three li a i {
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.team-box-three:hover ul.team-social-media-three li a i {
    color: var(--kmct-light);
}

.team-section-three .col-lg-3:first-child .team-box-three {
    border-left: none;
}

.team-box-three:hover ul.team-social-media-three li a {
    background-color: var(--kmct-black);
}

.team-box-three:hover ul.team-social-media-three li a img {
    filter: brightness(1);
}

ul.team-social-media-three li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 100%;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
}

ul.team-social-media-three li a:hover::after {
    height: 100%;
    width: 100%;
}

/***********************
* why-choose three
***********************/

.why-choose-section-three {
    padding: 150px 0;
    background-color: #D9BE9E4D;
    position: relative;
    max-width: 1780px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image-three {
    margin-right: -107px;
    transform: translateX(80px);
}

.why-choose-section-three .heading-box {
    margin-top: 61px;
}

.why-choose-section-three .heading-title {
    margin-bottom: 25px;
}

.why-choose-details-three {
    padding-right: 65px;
}

.why-choose-details-three p {
    margin-bottom: 60px;
    max-width: 70%;
}

.why-choose-lower-three {
    position: absolute;
    bottom: 150px;
    width: 975px;
}

.why-choose-box-three {
    padding: 40px 20px 32px 30px;
    background-color: var(--kmct-light);
    border-radius: 30px;
    position: relative;
}

.why-choose-box-three span {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F2F2;
    margin-bottom: 33px;
    position: relative;
}

.why-choose-box-three span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    background-color: var(--kmct-secondary);
    transition: all 0.5s;
    border-radius: 100%;
    z-index: -1;
}

.why-choose-box-three:hover span::after {
    height: 100%;
    width: 100%;
    border: 1px solid var(--kmct-primary);
}

.why-choose-box-three span {
    position: relative;
    z-index: 1;
}

svg path {
    transition: all 0.5s;
}

.why-choose-box-three:hover svg path {
    stroke: var(--kmct-primary);
}

.why-choose-box-three h4 {
    font-size: 25px;
    margin-bottom: 14px;
}

.why-choose-box-three p {
    margin-bottom: 0px;
}

.why-choose-image-shape {
    position: relative;
}

.why-choose-container {
    display: flex;
    column-gap: 30px;
}

/***********************
* portfolio three
***********************/

.portfolio-section-three {
    padding: 130px 0 110px 0;
    background-color: var(--kmct-black);
    max-width: 1780px;
    margin: auto;
    border-radius: 30px;
    color: var(--kmct-light);
    overflow: hidden;
}

.portfolio-section-three .heading-title {
    margin-bottom: 40px;
}

.portfolio-three {
    display: flex;
    column-gap: 30px;
    margin-bottom: 140px;
}

.portfolio-box-three {
    position: relative;
    width: 16%;
    flex-grow: 1;
    transition: all 0.5s;
}

.portfolio-details-three {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.portfolio-image-three {
    height: 545px;
    overflow: hidden;
    border-radius: 25px;
    transition: all 0.5s;
}

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

.portfolio-title-three h4 {
    color: var(--kmct-light);
    margin-bottom: 10px;
    background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.portfolio-title-three h4:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.portfolio-title-three p {
    font-size: 18px;
    margin-bottom: 0;
}

.portfolio-box-three:hover {
    width: 46%;
}

.portfolio-box-three:hover .portfolio-image-three {
    height: 439px;
}

.portfolio-box-three:hover .portfolio-details-three {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s 0.3s;
}

.portfolio-btn-three {
    height: 89px;
    width: 89px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F3837;
    position: relative;
}

.portfolio-btn-three::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--kmct-light);
    transition: all 0.5s;
}

.portfolio-btn-three:hover::after {
    height: 100%;
    width: 100%;
}

.portfolio-btn-three:hover img {
    filter: brightness(0);
}

.portfolio-btn-three img {
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.portfolio-btn-three img {
    margin-left: 7px;
    margin-top: -5px;
}

.portfolio-left-three .heading-title {
    margin-bottom: 15px !important;
}

.portfolio-left-three p {
    margin-bottom: 40px;
}

.portfolio-left-three .btn-light {
    background-color: var(--kmct-light);
    color: var(--kmct-black);
}

.portfolio-box-three-1 {
    text-align: center;
}

.portfolio-box-three-1-inner {
    width: 170px;
    height: 170px;
    margin: auto;
    position: relative;
    margin-bottom: 15px;
}

.portfolio-box-three-1-inner span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-box-three-1 h4 {
    font-size: 20px;
    margin-bottom: 13px;
    color: var(--kmct-light);
}

.portfolio-box-three-1 p {
    max-width: 82%;
    margin: auto;
}

.portfolio-slider-three {
    margin-top: 16px;
}

.portfolio-item-three {
    display: flex !important;
    align-items: center;
    column-gap: 30px;
    margin: 0 15px;
}

.portfolio-item-three h5 {
    font-size: 132px;
    color: var(--kmct-light);
    margin-bottom: 0;
}

.portfolio__three_box {
    border-right: 1px solid #FFFFFF1A;
}

.portfolio__three_box:last-child {
    border: none;
}

/***********************
* blog three
***********************/

.blog-section-three {
    padding: 130px 0 150px 0;
    overflow: hidden;
}

.blog-heading-box {
    padding-right: 90px;
}

.blog-heading-box .heading-title {
    margin-bottom: 10px;
}

.blog-heading-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.blog-heading-box .btn-light {
    background-color: #F1F1F1;
    backdrop-filter: blur(10px);
    color: var(--kmct-black);
}

.blog-box-three {
    padding: 24px;
    border-radius: 30px;
    background-color: #F4F4F4;
}

.blog-image-three {
    position: relative;
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
}

.blog-image-three img {
    transition: all 0.8s;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-box-three:hover .blog-image-three img {
    transform: scale(1.2);
}

ul.blog-tag-three {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    top: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

ul.blog-tag-three li a {
    padding: 5px 18px;
    color: var(--kmct-dark-text);
    background-color: var(--kmct-light);
    border-radius: 38px;
}

ul.blog-meta-three {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 10px;
}

ul.blog-meta-three li {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

ul.blog-meta-three li a {
    font-size: 14px;
    color: var(--kmct-black);
}

.blog-box-three h4 {
    margin-bottom: 18px;
}

.blog-box-three h4 a {
    color: var(--kmct-black);
}

.blog-box-three .btn-light {
    background-color: var(--kmct-light);
    backdrop-filter: blur(10px);
    color: var(--kmct-black);
}

/***********************
* footer three
***********************/

footer.footer-section-three {
    padding-top: 138px;
    position: relative;
    background-image: url(../images/footer-three-bg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--kmct-light);
    overflow: hidden;
}

footer.footer-section-three::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(27, 36, 41, 0) 0%, rgba(27, 36, 41, 0.82) 44.58%, rgba(27, 36, 41, 0.95) 62.73%, #1B2429 100%);
}

.footer-newslatter-three {
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: space-between;
}

.footer-newslatter-three .heading-title {
    margin-bottom: 0;
    color: var(--kmct-light);
}

.newslatter-form-group-three {
    position: relative;
}

.newslatter-form-group-three button {
    position: absolute;
    top: 50%;
    right: 0;
    border: none;
    background: transparent;
    transform: translateY(-50%);
}

.newslatter-form-group-three .form-control {
    padding: 0 30px 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--kmct-light);
    border-radius: 0;
    color: var(--kmct-light);
}

.newslatter-form-group-three .form-control::placeholder {
    color: var(--kmct-light);
}

.partner-three {
    position: relative;
    z-index: 1;
}

.partner-three ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-three ul li {
    flex-grow: 1;
    text-align: -webkit-center;
    padding: 46px 0;
    border: 1px solid #FFFFFF47;
    height: 132px;
    margin-bottom: 95px;
    transition: all 0.5s;
}

.partner-three ul li:hover {
    background-color: var(--kmct-light);
}

.partner-three ul li img {
    transition: all 0.5s;
}

.partner-three ul li:hover img {
    filter: brightness(0);
}

.footer-about-three {
    position: relative;
    z-index: 1;
    color: var(--kmct-light);
}

.footer-logo-three {
    padding-bottom: 70px;
    margin-bottom: 70px;
    border-bottom: 1px solid #FFFFFF33;
}

ul.footer-about-list-three {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-about-list-three li {
    display: flex;
    column-gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

ul.footer-about-list-three li p {
    margin-bottom: 0;
}

ul.footer-about-list-three li a {
    color: var(--kmct-light);
}

ul.footer-about-list-three li a:hover {
    color: var(--kmct-primary);
}

.footer-widget-two {
    position: relative;
    z-index: 1;
}

.footer-section-three ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section-three .footer-widget-two h4 {
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--kmct-light);
}

/***********************
* header four
***********************/

.main-header.header-four {
    padding: 60px 30px;
    border: none;
    border-right: 1px solid #E0E0E02B;
    width: 250px;
    height: 997px;
    overflow-y: scroll;
}

.main-header.header-four::-webkit-scrollbar {
    display: none;
}

.main-header.header-four::-moz-scrollbar {
    display: none;
}

.main-header.header-four::-o-scrollbar {
    display: none;
}

.header-four nav.main-menu {
    flex-direction: column;
    row-gap: 85px;
    align-items: flex-start;
}

.header-four ul.main-menu-list {
    border: none;
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
}

.header-four .main-menu-logo {
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.header-four .main-menu-logo img {
    margin-left: 0px;
}

.header-four ul.main-menu-list>li {
    padding: 15px 0;
    position: relative;
    transition: all 0.5s;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(224 224 224 / 17%);
    justify-content: space-between;
}

.header-four ul.header-social-media {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 22px;
}

.header-four ul.header-social-media li a {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D966;
    position: relative;
}

.header-four ul.header-social-media li a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 100%;
    background-color: var(--kmct-secondary);
    transition: all 0.5s;
    z-index: -1;
}

.header-four ul.header-social-media li a:hover::after {
    height: 100%;
    width: 100%;
}

.header-four ul.main-menu-list li ul {
    left: 0;
}

.header-four ul.main-menu-list li ul li {
    padding: 12px 15px;
}

.header-four .main-menu-inner {
    width: 100%;
}

.header-four ul.main-menu-list li ul {
    position: relative;
    width: 100%;
    padding: 0;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    visibility: visible;
    background-color: transparent;
    transition: none;
    transform: none;
}

.header-four ul.main-menu-list li.active ul {
    max-height: 1000px;
    visibility: visible;
    margin-top: 15px;
    border-top: 1px solid;
    transition: max-height 2s ease-in, border 5s ease-out;
}

.header-four ul.main-menu-list li.active {
    padding-bottom: 0;
}

/***********************
* banner four
***********************/

.banner-section-four {
    padding: 260px 0 280px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../images/about/banner-four-1.jpg);
    background-size: cover;
    background-position: center;
    background: linear-gradient(270deg, rgba(86, 115, 108, 0.95) 0%, rgba(27, 36, 41, 0.95) 100%), url(../images/about/banner-four-1.jpg);
    background-blend-mode: multiply;
}

.banner-left-four {
    padding-left: 80px;
}

.banner-heading-box-four h1 {
    margin-bottom: 70px;
    color: var(--kmct-light);
    font-size: 90px;
    line-height: 90px;
    padding-top: 70px;
    border-top: 1px solid #E0E0E02B;
}

.banner-left-four .btn-light {
    background-color: #C7D9D466;
    backdrop-filter: blur(10px);
}

.banner-left-four .btn-light:hover {
    background-color: var(--kmct-secondary);
    backdrop-filter: blur(10px);
}

.banner-left-four .btn-light:hover span {
    color: var(--kmct-light) !important;
}

/***********************
* patner four
***********************/

.patner-section-four {
    background-color: var(--kmct-light-green);
}

.patner-slide-item-four {
    height: 244px;
    text-align: -webkit-center;
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: 1px solid #00000033;
    border-left: none;
}

/***********************
* about four
***********************/

.about-section-four {
    padding: 122px 0 155px 0;
    position: relative;
}

.about-section-four::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 592px;
    width: 100%;
    background-color: var(--kmct-light-green);
    z-index: -1;
}

.about-image-four {
    border-radius: 0 0 0 238px;
    overflow: hidden;
    margin-left: -230px;
    margin-right: 72px;
    position: relative;
}

.about-image-four::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(265.67deg, rgba(59, 68, 67, 0.4664) 12.1%, rgba(59, 68, 67, 0.4136) 86.36%);
    background-blend-mode: multiply;
}

.about-section-four .sub-title {
    margin-bottom: 25px;
}

.about-section-four .heading-title {
    margin-bottom: 18px;
}

.about-info-four>p {
    margin-bottom: 66px;
    max-width: 88%;
}

.about-info-four .btn-secondary {
    margin-bottom: 88px;
}

.about-counter-four {
    display: flex;
}

.counter-box-four {
    width: 230px;
    flex-shrink: 0;
    padding: 60px 15px 60px 45px;
}

.counter-box-four h4 {
    margin-bottom: 0;
}

.counter-box-four h4 span {
    font-size: 45px;
}

.counter-box-four h4 span:last-child {
    margin-left: -8px;
}

.counter-box-four p {
    margin-bottom: 0;
}

.counter-box-four {
    width: 230px;
    flex-shrink: 0;
    padding: 60px 15px 60px 45px;
    position: relative;
}

.counter-box-four::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 130%;
    width: 12px;
    background-image: url(../images/about/about-border-shape.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.counter-box-four:nth-child(2):after {
    height: 100%;
}

.counter-box-four:last-child:after {
    display: none;
}

/***********************
* service four
***********************/

.service-section-four {
    padding-bottom: 150px;
    overflow: hidden;
}

.service-section-four .sub-title {
    margin-bottom: 25px;
}

.service-section-four .heading-box {
    max-width: 48%;
}

.service-section-four .heading-box-two {
    margin-bottom: 80px;
}

.service-box-four {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0px 100px 35px 35px;
    background-image: url(../images/services/service-four-1.jpg);
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 4.06%, #1B2429 64.78%), url(../images/services/service-four-1.jpg), no-repeat;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 345px;
}

.service-section-four .col-lg-6:nth-child(2) .service-box-four {
    background-image: url(../images/services/service-four-2.jpg);
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 4.06%, #1B2429 64.78%), url(../images/services/service-four-2.jpg), no-repeat;
}

.service-section-four .col-lg-6:nth-child(3) .service-box-four {
    background-image: url(../images/services/service-four-3.jpg);
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 4.06%, #1B2429 64.78%), url(../images/services/service-four-3.jpg), no-repeat;
}

.service-section-four .col-lg-6:nth-child(4) .service-box-four {
    background-image: url(../images/services/service-four-4.jpg);
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 4.06%, #1B2429 64.78%), url(../images/services/service-four-4.jpg), no-repeat;
}

.service-details-four {
    color: var(--kmct-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.service-details-four h4 {
    margin-bottom: 5px;
    color: var(--kmct-light);
}

.service-details-four p {
    margin-bottom: 25px;
}

.service-btn-four {
    height: 46px;
    width: 46px;
    border-radius: 100%;
    border: 1px solid var(--kmct-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box-four:hover .service-btn-four {
    background-color: #fff;
}

.service-box-four:hover .service-btn-four img {
    filter: brightness(0);
}

/***********************
* why-choose four
***********************/

.why-choose-section-four {
    padding: 150px 0;
    background-color: var(--kmct-light-green);
    overflow: hidden;
}

.why-choose-section-four .sub-title {
    margin-bottom: 25px;
}

.why-choose-section-four .heading-box {
    margin-bottom: 80px;
}

.why-choose-video-four {
    height: 785px;
    border-radius: 45px;
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}

.why-choose-image-four {
    height: 100%;
    width: 100%;
    background-image: url(../images/why-choose/why-choose-image-four.jpg);
    background-position: center;
    background-size: cover;
    background: linear-gradient(265.67deg, rgba(59, 68, 67, 0.4664) 12.1%, rgba(59, 68, 67, 0.4136) 86.36%), url(../images/why-choose/why-choose-image-four.jpg);
    background-blend-mode: multiply;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.why-choose-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 143px;
    width: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    color: var(--kmct-light);
    border-radius: 100%;
    border: 1.5px solid #FFFFFF1A;
    font-size: 40px;
}

.why-choose-play-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 100%;
    border: 1.5px solid var(--kmct-light);
    border-right: none;
}

.why-choose-left-four p {
    font-size: 132px;
    line-height: 170px;
    margin-bottom: 0;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--kmct-secondary);
    font-family: sans-serif;
}

.why-choose-left-four h5 {
    max-width: 50%;
    font-size: 30px;
}

.why-choose-left-four {
    height: 100%;
    border-right: 1px solid #00000020;
}

ul.why-choose-list-four {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.why-choose-list-four li {
    display: flex;
    align-items: center;
    column-gap: 34px;
}

ul.why-choose-list-four li+li {
    margin-top: 60px;
}

.why-choose-order-list {
    height: 81px;
    width: 81px;
    border: 1px dashed var(--kmct-secondary);
    border-radius: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-order-list p {
    color: var(--kmct-light);
    margin-bottom: 0;
    background-color: var(--kmct-secondary);
    height: 55px;
    width: 55px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-details-four h4 {
    font-size: 25px;
    margin-bottom: 9px;
}

.why-choose-details-four p {
    margin-bottom: 0;
}

/***********************
* benefit four
***********************/

.benefit-section-four {
    padding: 150px 0 120px 0;
    overflow: hidden;
}

.benefit-section-four .sub-title {
    margin-bottom: 25px;
}

.benefit-section-four .heading-title {
    margin-bottom: 104px;
}

.benefit-box-four {
    padding: 0 20px 0 10px;
    position: relative;
}

.benefit-box-four::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #00000020;
}

.benefit-box-four:first-child:after {
    display: none;
}

.benefit-icon-four {
    height: 83px;
    width: 83px;
    background-color: #C7D9D4;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    position: relative;
    transition: all 0.5s;
}

.benefit-icon-four svg path {
    transition: all 0.5s;
}

.benefit-icon-four::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -6px;
    height: 16px;
    width: 16px;
    background-image: url(../images/benefit-shape-1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-icon-four::before {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -6px;
    height: 22px;
    width: 22px;
    background-image: url(../images/benefit-shape-1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-box-four:hover .benefit-icon-four {
    background-color: var(--kmct-secondary);
}

.benefit-box-four:hover svg path {
    stroke: var(--kmct-light);
}

.benefit-box-four h4 {
    font-size: 25px;
    margin-bottom: 9px;
}

.benefit-box-four p {
    margin-bottom: 0;
}

/***********************
* portfolio four
***********************/

.portfolio-section-four {
    position: relative;
    overflow: hidden;
}

.portfolio-background {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background-image: url(../images/portfolio/portfolio-four-1.jpg);
    background-size: cover;
    background-position: center;
    transition: all 0.8s;
}

.portfolio-four {
    display: flex;
}

.portfolio-box-four {
    height: 900px;
    border-left: 1px solid rgb(213 223 237 / 46%);
    position: relative;
    overflow: hidden;
    background-color: transparent;
    flex: 1;
}

.portfolio-image-four img {
    opacity: 0;
    visibility: hidden;
}

.portfolio-details-four {
    padding: 43px 30px;
    height: 460px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.44) -39.93%, #1b2429e0 72.01%);
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: -461px;
    width: 100%;
    transition: all 0.8s;
}

.portfolio-details-four .tagline {
    height: 100%;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.62em;
    font-weight: 600;
    color: var(--kmct-light);
}

.portfolio-btn-four {
    margin-bottom: 18px;
}

.portfolio-details-four h4 {
    font-size: 35px;
    margin-bottom: 6px;
}

.portfolio-details-four h4 a {
    color: var(--kmct-light);
}

.portfolio-details-four p {
    margin-bottom: 0;
    color: var(--kmct-light);
}

.portfolio-box-four:hover .portfolio-details-four {
    bottom: 0;
}

/***********************
* testi four
***********************/

.testi-section-four {
    padding-top: 150px;
}

.testi-slider-four {
    border-bottom: 1px solid #C7D9D4;
    padding-bottom: 130px;
}

.testi-box-four {
    display: flex;
    align-items: flex-start;
    column-gap: 110px;
    position: relative;
}

.testi-box-four>img {
    position: absolute;
}

.testi-title-four h4 {
    margin-bottom: 8px;
    font-size: 35px;
    line-height: 56px;
}

.testi-title-four>p {
    margin-bottom: 64px;
}

.testi-details-four>p {
    font-family: var(--kmct-heading-font);
    font-size: 35px;
    margin-bottom: 0;
}

.testi-image-four {
    flex-shrink: 0;
}

.testi-section-four .slick-arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    background: transparent;
    height: 89px;
    width: 89px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E9E9E9;
    transition: all 0.5s;
}

.testi-section-four .slick-prev.slick-arrow {
    right: 120px;
    z-index: 1;
}

.testi-section-four .slick-prev.slick-arrow img {
    filter: brightness(0);
}

.testi-section-four .slick-arrow:hover,
.testi-section-four .slick-arrow:focus {
    background: var(--kmct-secondary);
}

.testi-section-four .slick-arrow:hover img,
.testi-section-four .slick-arrow:focus img {
    filter: brightness(50);
}

/***********************
* blog four
***********************/

.blog-section-four {
    padding-bottom: 150px;
}

.blog-section-four .sub-title {
    margin-bottom: 25px;
}

.blog-section-four .heading-title {
    margin-bottom: 80px;
}

.blog-box-four {
    position: relative;
    height: 560px;
    border-radius: 15px;
    overflow: auto;
    background-image: url(../images/blog/blog-four-1.jpg);
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 0%, #1B2429 65.33%), url(../images/blog/blog-four-1.jpg);
    background-blend-mode: multiply;
    display: flex;
    flex-direction: column;
    padding: 30px;
    padding-right: 60px;
    background-position: center;
    background-size: cover;
}

.blog-section-four .col-lg-4:nth-child(2) .blog-box-four {
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 0%, #1B2429 65.33%), url(../images/blog/blog-four-2.jpg);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}

.blog-section-four .col-lg-4:nth-child(3) .blog-box-four {
    background: linear-gradient(180deg, rgba(86, 115, 108, 0.4) 0%, #1B2429 65.33%), url(../images/blog/blog-four-3.jpg);
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
}

.blog-date-four {
    height: 100%;
}

.blog-date-four a {
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    background-color: var(--kmct-light);
    flex-direction: column;
    align-items: center;
    color: var(--kmct-dark-text);
    font-size: 18px;
    font-weight: 600;
}

.blog-date-four a span:first-child {
    font-size: 35px;
}

.blog-date-four a span:last-child {
    margin-top: -15px;
}

ul.blog-four-tag {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 14px;
    color: var(--kmct-light);
}

ul.blog-four-tag li a {
    color: var(--kmct-light);
}

.blog-box-four h4 {
    margin-bottom: 20px;
}

.blog-box-four h4 a {
    color: var(--kmct-light);
    background-image: linear-gradient(transparent calc(100% - 1px), #ffffff 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.blog-box-four h4 a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.blog-four-btn {
    height: 51px;
    width: 51px;
    border-radius: 100%;
    border: 1px solid var(--kmct-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-box-four:hover .blog-four-btn {
    background-color: var(--kmct-light);
}

.blog-box-four:hover .blog-four-btn img {
    filter: brightness(0);
}

.blog-box-four {
    position: relative;
    overflow: hidden;
}

.blog-box-four::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.blog-box-four:hover::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/***********************
* contact four
***********************/

.contact-section-four {
    padding: 110px 0;
    background-image: url(../images/contact-four-bg.jpg);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.contact-form-four {
    background-color: var(--kmct-light);
    box-shadow: -9px 9px 66.1px 0px #9B9B9B40;
    border-radius: 20px;
    padding: 65px 80px;
}

.contact-section-four .sub-title {
    margin-bottom: 25px;
}

.contact-section-four .heading-title {
    margin-bottom: 64px;
}

ul.contact-location-four {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 50px;
    margin-bottom: 57px;
}

ul.contact-location-four li {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

ul.contact-location-four li span {
    height: 58px;
    width: 58px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kmct-primary);
    flex-shrink: 0;
}

ul.contact-location-four li a,
ul.contact-location-four li p {
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

.form-group-four {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 30px;
}

.form-group-four .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #56736C4D;
    padding: 0;
    padding-bottom: 11px;
}

/***********************
* footer four
***********************/

.footer-section-four {
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
    padding: 150px 30px 0 30px;
}

.footer-four-logo {
    margin-bottom: 40px;
    position: relative;
}

.footer-four-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 0.5px;
    background-color: #3B444333;
    z-index: -1;
}

.footer-four-logo a {
    background-color: var(--kmct-light);
    padding-right: 38px;
}

.footer-section-four h4 {
    font-size: 20px;
}

.footer-about-four {
    padding-right: 220px;
}

.footer-about-four h4 {
    margin-bottom: 18px;
}

.footer-about-four>p {
    margin-bottom: 50px;
}

ul.footer-location-four {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-location-four li+li {
    margin-top: 24px;
}

ul.footer-location-four li {
    display: flex;
    align-items: center;
    column-gap: 14px;
}

ul.footer-location-four li span {
    height: 58px;
    width: 58px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9E9E9;
    flex-shrink: 0;
}

ul.footer-location-four li span img {
    filter: brightness(0);
}

ul.footer-location-four li a,
ul.footer-location-four li p {
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

.footer-newslatter-four p {
    margin-bottom: 40px;
}

.form-newslatter-four {
    position: relative;
}

.form-newslatter-four .form-control {
    padding: 30px 130px 30px 25px;
    border: 0;
    background-color: #E9E9E9;
}

.form-newslatter-four button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.footer-section-four ul.footer-menu-one li {
    margin-bottom: 20px;
}

.footer-section-four .footer-lower-two {
    border-top: 1px solid #3B444333;
    margin-top: 60px;
}

.footer-section-four ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section-four .footer-lower-two ul li a img {
    filter: brightness(0);
}

.footer-section-four .footer-lower-two p {
    color: var(--kmct-dark-text);
}

.footer-section-four a:hover {
    color: var(--kmct-secondary);
}

.form-newslatter-four button:hover {
    background-color: var(--kmct-light);
    color: var(--kmct-black);
}

/***********************
* header five
***********************/

.main-header.header-five {
    position: relative;
    border-bottom: 1px solid #EAEAEA;
    margin: 0 70px;
    width: auto;
}

.header-five .main-menu-logo {
    max-width: 100%;
    width: auto;
}

.header-five .main-menu-logo img {
    margin-left: 0px;
}

.header-five .main-menu-inner {
    justify-content: end;
}

.header-five ul.main-menu-list {
    padding: 0;
    margin: 0;
    border: none;
}

.header-five ul.main-menu-list>li,
.header-five ul.main-menu-list>li>a {
    color: #1D1D1D;
}

.header-five ul.main-menu-list>li.active>a,
.header-five ul.main-menu-list>li.active,
.header-five ul.main-menu-list>li:hover,
.header-five ul.main-menu-list>li:hover>a {
    color: var(--kmct-primary);
    position: relative;
}

.header-five .header-side-menu span {
    background-color: var(--kmct-dark-text);
}

.header-five .header-side-menu {
    margin-right: 0;
    margin-left: 48px;
}

.header-five ul.main-menu-list>li {
    padding: 45px 0;
}

.header-five ul.main-menu-list>li.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #3B4443;
}

.header-five .header-menu-collaps span {
    background-color: var(--kmct-black);
}

.sticky-header--cloned.sticky-fixed {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s;
    visibility: visible;
    backdrop-filter: blur(10px);
    background-color: rgb(11 19 27 / 65%);
}

.sticky-fixed {
    box-shadow: 0 7px 50px 0 rgba(0, 0, 0, .1);
    position: fixed !important;
    transform: translateY(0);
    z-index: 999;
    transition: all 1.5s;
}

.sticky-header--cloned {
    position: fixed !important;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
}

/***********************
* banner five
***********************/

.banner-section-five {
    padding: 80px 0 150px 0;
    margin: 0 70px;
    overflow: hidden;
}

.banner-upper-five {
    margin-bottom: 90px;
}

.banner-five-heading h1 {
    font-size: 90px;
    line-height: 99px;
    margin-bottom: 0;
}

.banner-heading-details-five {
    padding-left: 150px;
}

.banner-heading-details-five p {
    color: #1D1D1D;
    margin-bottom: 44px;
}

.banner-button-five {
    display: flex;
    align-items: center;
    column-gap: 22px;
}

.banner-call-action-five {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.banner-call-action-five>span {
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 0;
    border: 0.5px solid #CECECE;
    position: relative;
}

.banner-call-action-five>span img {
    position: relative;
    z-index: 1;
}

.banner-call-action-five>span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    background-color: var(--kmct-black);
    border-radius: 100%;
}

.banner-call-action-five>span:hover::after {
    height: 100%;
    width: 100%;
}

.banner-call-five span {
    display: block;
    font-size: 14px;
    color: var(--kmct-primary);
    line-height: 15px;
}

.banner-call-five a {
    font-size: 18px;
    color: #1D1D1D;
}

.banner-slider-outer-five {
    position: relative;
}

.banner-section-five ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    bottom: 155px;
    right: 178px;
    display: flex;
    column-gap: 7px;
    align-items: center;
}

.banner-section-five ul.slick-dots li button {
    border: 0;
    background-color: #E0E0E0;
    font-size: 0;
    height: 2px;
    width: 40px;
    transition: all 0.5s;
}

.banner-section-five ul.slick-dots li.slick-active button {
    background-color: var(--kmct-light);
}

#slider-info-2 {
    position: absolute;
    bottom: 150px;
    right: 80px;
    color: var(--kmct-light);
    font-size: 18px;
    line-height: 29px;
}

.banner-box-outer-five {
    border-bottom: 1px solid #EAEAEA;
}

.banner-box-five {
    padding: 80px 45px 65px;
    display: flex;
    column-gap: 35px;
    position: relative;
}

.banner-box-five::after {
    content: "";
    position: absolute;
    top: 0;
    right: -13px;
    height: 100%;
    width: 1px;
    background-color: #EAEAEA;
}

.banner-box-details-five h4 {
    margin-bottom: 12px;
}

.banner-box-details-five p {
    margin-bottom: 33px;
    color: var(--kmct-dark-text);
}

.banner-box-five:hover .banner-btn-five {
    background-color: var(--kmct-black);
    color: var(--kmct-light);
    border-radius: 6px;
}

.banner-box-outer-five .col-lg-4:last-child .banner-box-five::after {
    display: none;
}

.banner-btn-five {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #F5F5F5;
    color: var(--kmct-light-text);
    column-gap: 0px;
    font-size: 14px;
    padding: 10px 17px;
    transition: all 0.5s;
}

.banner-btn-five span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 2s ease-in;
}

.banner-box-five:hover .banner-btn-five span {
    max-width: 1000px;
    opacity: 1;
    margin-right: 10px;
}

/***********************
* about five
***********************/

.about-section-five {
    padding-bottom: 150px;
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}

span.sub-title-two {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 4px 18px;
    background-color: #FAEBD9;
    border-radius: 14px;
    margin-bottom: 3px;
    display: inline-block;
}

.about-info-five>p {
    margin-bottom: 42px;
}

ul.about-list-five {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 32px;
    border-top: 1px solid #C3C3C3;
}

ul.about-list-five li {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 10px;
}

ul.about-list-five li span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #FAEBD9;
}

ul.about-list-five li p {
    margin-bottom: 0;
    font-size: 18px;
}

.about-image-five {
    margin-left: -15px;
    margin-right: -242px;
}

.about-info-five {
    padding-right: 95px;
}

/***********************
* service five
***********************/

.service-section-five {
    padding-top: 150px;
    background-image: url(../images/services/service-five-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #1B242980;
    background-blend-mode: overlay;
    margin: 0 70px;
    overflow: hidden;
}

.service-section-five .sub-title-two {
    background-color: var(--kmct-black);
    color: var(--kmct-light);
}

.service-section-five .heading-title {
    margin-bottom: 30px;
}

.service-info-five p {
    color: var(--kmct-light);
    margin-bottom: 83px;
}

.service-image-five img {
    position: absolute;
    left: 0;
}

.service-box-five {
    position: relative;
    padding: 64px 32px 68px 62px;
    background-color: #232A2FD4;
    backdrop-filter: blur(84px);
    width: 408px;
}

.service-icon-five {
    margin-bottom: 35px;
}

.service-box-five h4 {
    font-size: 25px;
    margin-bottom: 4px;
    color: var(--kmct-light);
}

.service-box-five p {
    color: var(--kmct-light);
    margin-bottom: 34px;
}

.service-slider-five {
    width: 1600px;
    position: relative;
    z-index: 1;
}

.service-slider-item-five {
    padding-right: 30px;
}

.service-box-five .service-btn-one {
    background-color: #F5F5F51A;
    color: var(--kmct-light);
}

.service-box-five:hover .service-btn-one span {
    max-width: 1000px;
    opacity: 1;
    margin-right: 10px;
}

.service-box-five:hover .service-btn-one {
    border-radius: 6px;
}

/***********************
* process five
***********************/

.process-section-five {
    padding: 280px 0 150px 0;
    margin-top: -89px;
    background-color: var(--kmct-black);
    position: relative;
    background-image: url(../images/process/process-bg-five.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    overflow: hidden;
}

.process-section-five .sub-title-two {
    background-color: #6168660F;
    color: #fff;
}

.process-box-five.one,
.process-box-five.two {
    padding-right: 50px;
}

.process-box-five.three,
.process-box-five.four {
    padding-left: 50px;
}

.process-box-five.one,
.process-box-five.four {
    margin-top: 279px;
}

.process-box-five.two {
    margin-left: -30px;
}

.process-box-five.three {
    margin-right: -30px;
}

.process-box-five {
    color: var(--kmct-light);
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-image-five {
    position: relative;
    margin-bottom: 33px;
    height: 244px;
    width: 244px;
    border-radius: 100%;
}

.process-image-five::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: #000000b5;
    transition: all 0.5s;
    height: 0;
    width: 0;
}

.process-box-five:hover .process-image-five::after {
    height: 100%;
    width: 100%;
}

.process-image-five span {
    height: 47px;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--kmct-light);
    color: var(--kmct-black);
    position: absolute;
    bottom: -22px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.process-box-five h4 {
    margin-bottom: 4px;
    font-size: 25px;
    color: var(--kmct-light);
}

.process-box-outer {
    position: relative;
}

.process-box-outer::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    height: 1200px;
    width: 1200px;
    border-radius: 100%;
    border: 1px solid #97979757;
}

.process-box-outer::before {
    content: "";
    position: absolute;
    bottom: -940px;
    left: 50%;
    transform: translateX(-50%);
    height: 1200px;
    width: 1200px;
    background-color: var(--kmct-black);
    z-index: 1;
}

.process-info-five {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: -150px;
}

.process-info-five::after {
    content: "";
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    height: 580px;
    width: 580px;
    border-radius: 100%;
    border: 1px solid #f1f1f169;
    border-bottom: transparent;
    border-left: transparent;
    border-right: transparent;
    z-index: -1;
}

/***********************
* testi five
***********************/

.testi-section-five {
    padding: 110px 0 150px 0;
    overflow: hidden;
}

.testi-box-five {
    text-align: -webkit-center;
    max-width: 720px;
    margin: auto;
}

.testi-icon-five {
    margin-bottom: 30px;
}

.testi-box-five>p {
    font-size: 35px;
    font-family: var(--kmct-heading-font);
    color: var(--kmct-dark-text);
    margin-bottom: 35px;
}

.testi-box-five>img {
    margin-bottom: 30px;
}

.testi-details-five h4 {
    font-size: 25px;
    margin-bottom: 0;
}

.testi-section-five button.slick-arrow {
    border: none;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.testi-section-five button.slick-next.slick-arrow {
    left: auto;
    right: 0;
}

.testi-section-five ul.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: center;
}

.testi-section-five ul.slick-dots li button {
    font-size: 0;
    border: none;
    height: 6px;
    width: 6px;
    background-color: #525D60;
    border-radius: 100%;
}

.testi-section-five ul.slick-dots li.slick-active button {
    background-color: var(--kmct-primary);
}

/***********************
* why-choose five
***********************/

.why-choose-section-five {
    padding-bottom: 150px;
    overflow: hidden;
}

.why-choose-inner-five {
    padding: 0 !important;
    padding-top: 110px !important;
    background-image: url(../images/why-choose/why-choose-bg-five.jpg);
    background-size: cover;
    background-position: center;
}

.why-choose-inner-five .sub-title-two {
    background-color: #263035;
    margin-bottom: 13px;
    color: var(--kmct-light);
}

.why-choose-inner-five .heading-title {
    margin-bottom: 90px;
    padding: 0 10px;
}

.why-choose-box-five {
    position: relative;
}

.why-choose-box-five::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(97, 104, 102, 0) 0%, #1B2429 87.52%, #1B2429 100%);
}

.why-choose-details-five {
    position: absolute;
    bottom: 42px;
    left: 52px;
    z-index: 1;
    color: var(--kmct-light);
}

.why-choose-image-five img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.why-choose-details-five img {
    margin-bottom: 20px;
}

.why-choose-details-five h4 {
    margin-bottom: 0;
    color: var(--kmct-light);
}

.why-choose-details-five p {
    font-size: 18px;
    margin-bottom: 0;
}

.why-choose-five-two {
    padding-top: 130px;
    overflow: hidden;
}

.why-choose-left-five p {
    margin-bottom: 40px;
}

.why-choose-left-five .btn-light {
    background-color: #F1F1F1;
    color: var(--kmct-black);
}

.why-choose-left-five {
    padding-right: 30px;
}

.why-choose-right-five {
    padding-left: 85px;
}

.why-choose-box-icon {
    height: 164px;
    width: 164px;
    position: relative;
    margin: auto;
    margin-bottom: 33px;
}

.why-choose-box-five-two {
    text-align: center;
    padding: 0 10px;
}

.why-choose-box-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: var(--kmct-dark-text);
    font-family: var(--kmct-heading-font);
}

.why-choose-box-five-two h4 {
    font-size: 20px;
    margin-bottom: 13px;
}

.why-choose-box-five-two p {
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

/***********************
* pricing one
***********************/

.pricing-section-one {
    padding: 150px 0 200px 0;
    margin: 0 70px;
    background-image: url(../images/background/pricing-bg.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.pricing-section-one .sub-title-two {
    background-color: #FFFFFF33;
}

.pricing-section-one .heading-title {
    margin-bottom: 16px;
}

.pricing-section-one .heading-box p {
    margin-bottom: 30px;
}

.sweech-box-pricing-one {
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    margin: auto;
    padding: 5px;
    background-color: var(--kmct-black);
    border-radius: 6px;
    margin-bottom: 44px;
}

.sweech-box-pricing-one p {
    margin-bottom: 0;
    color: var(--kmct-light);
    padding: 8px 10px;
    border-radius: 3px;
    transition: all 0.5s;
    cursor: pointer;
}

.sweech-box-pricing-one p.active {
    background-color: var(--kmct-primary);
}

.pricing-box-one {
    background-color: var(--kmct-light);
    padding: 50px 45px 40px;
}

.box-header-one h5 {
    font-size: 20px;
    margin-bottom: 6px;
}

.pricing-one {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.pricing-one h2 {
    margin-bottom: 0;
}

.pricing-one p {
    font-size: 22px;
    color: var(--kmct-dark-text);
    font-family: var(--kmct-heading-font);
    margin-bottom: 0;
}

.box-header-one {
    padding-bottom: 37px;
    margin-bottom: 25px;
    border-bottom: 1px solid #DADADA;
}

.pricing-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 45px;
}

.pricing-body ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
}

.pricing-body ul li i {
    height: 23px;
    width: 23px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
    font-size: 14px;
}

.pricing-body ul li p {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--kmct-dark-text);
}

.btn-block {
    width: 100%;
    justify-content: space-between;
}

.pricing-box-one .btn-primary:hover,
.pricing-box-one.two .btn-primary {
    background-color: var(--kmct-black);
    color: var(--kmct-light);
}

.pricing-box-one.two .btn-primary:hover {
    background-color: var(--kmct-primary);
    color: var(--kmct-black);
}

/***********************
* blog five
***********************/

.blog-section-five {
    padding: 120px 0;
    overflow: hidden;
}

.blog-section-five .sub-title-two {
    background-color: #56736C1F;
}

.blog-section-five .heading-title {
    margin-bottom: 40px;
}

.blog-box-five {
    position: relative;
    overflow: hidden;
}

.blog-image-five img {
    transition: all 0.8s;
}

.blog-box-five:hover .blog-image-five img {
    transform: scale(1.1) translateX(20px);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.blog-details-five {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
    width: 80%;
    padding-top: 32px;
    padding-right: 80px;
}

.blog-details-five h4 a {
    color: var(--kmct-dark-text);
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.blog-details-five h4 a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.blog-details-five .btn-light {
    background-color: #F1F1F1;
    color: var(--kmct-black);
}

/***********************
* partner five
***********************/

.partner-section-five {
    background-image: url(../images/patner/partner-five-bg.jpg);
    background-size: cover;
    background-position: center;
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}

.partner-item-five {
    border-left: 1px solid #1b242945;
    transition: all 0.5s;
}

.partner-item-five:hover {
    background-color: #1B242970;
    backdrop-filter: blur(20px);
}

.partner-box-five {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***********************
* footer five
***********************/

.footer-section-five {
    background-color: var(--kmct-black);
    max-width: 1780px;
    margin: auto;
    padding: 130px 0 220px 0;
    color: var(--kmct-light);
    position: relative;
    overflow: hidden;
}

.footer-section-five::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/footer-three/footer-five-image.png);
    width: 564px;
    height: 580px;
    background-position: left;
    background-size: cover;
}

.footer-logo-five {
    margin-bottom: 30px;
}

.footer-about-five p {
    margin-bottom: 25px;
}

.footer-section-five ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-social-media-five {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

ul.footer-social-media-five li a {
    color: var(--kmct-light);
}

.footer-section-five h4 {
    color: var(--kmct-light);
    font-size: 20px;
}

.footer-section-five .footer-widget-two {
    border: none;
}

.footer-section-five ul.footer-location-four li span {
    background-color: #D9D9D91A;
}

.footer-section-five ul.footer-location-four li span img {
    filter: none;
}

.footer-section-five ul.footer-location-four li a,
.footer-section-five ul.footer-location-four li p {
    color: var(--kmct-light);
}

.newslatter-five .form-control {
    border-color: #FFFFFF24;
    background-color: transparent;
    color: var(--kmct-light);
    padding: 10px 23px;
    border-radius: 6px;
}

.newslatter-five .form-control::placeholder {
    color: var(--kmct-light);
}

.newslatter-five form {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.footer-copyright p {
    padding: 20px;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--kmct-black);
}

.newslatter-five button {
    flex-shrink: 0;
}

.footer-about-five {
    position: relative;
    z-index: 1;
}

/***********************
 * side menu
***********************/

.side-menu-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}

.side-menu-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}

.side-menu-overlay.side-menu-toggler {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000090;
    opacity: 0.9;
    height: 100%;
    width: 100%;
}

.side-menu-content {
    width: 100%;
    max-width: 420px;
    background-color: var(--kmct-light);
    text-align: center;
    padding: 60px 30px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
    height: 100vh;
    margin-left: auto;
}

.side-menu-wrapper.expanded .side-menu-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}

.side-menu-logo-box {
    margin-bottom: 50px;
}

.side-menu-container p {
    margin-bottom: 30px;
}

.side-menu-container h4 {
    margin-bottom: 20px;
}

.side-menu-container ul {
    margin: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

.side-menu-container ul li {
    display: flex;
    justify-content: center;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.side-menu-container ul li i {
    line-height: 0;
    font-size: 20px;
    position: relative;
}

.side-menu-container ul li a {
    color: var(--kmct-light-text);
}

ul.side-menu-social-media {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}

ul.side-menu-social-media li a {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--kmct-secondary);
    color: var(--kmct-light);
    position: relative;
    transition: all 0.5s;
    border: 1px solid var(--kmct-secondary);
}

ul.side-menu-social-media li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
    z-index: 0;
}

ul.side-menu-social-media li a:hover::before {
    height: 100%;
    width: 100%;
}

ul.side-menu-social-media li a:hover {
    color: var(--kmct-light);
}

.side-menu-toggler {
    position: absolute;
    right: 20px;
    height: 40px;
    width: 40px;
    top: 40px;
}

.side-menu-toggler span {
    height: 1px;
    display: inline-block;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s;
}

.side-menu-toggler span:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

.side-menu-toggler:hover span {
    transform: translateY(-50%) rotate(0deg);
}

/***********************
 * search-popup
***********************/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: translateY(-100vh);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-active .search-popup {
    transform: translateY(0);
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: 0 auto 0;
    transform: scale(0);
    transform-origin: center;
    -webkit-transition: all 1s 0.5s ease;
    -moz-transition: all 1s 0.5s ease;
    -ms-transition: all 1s 0.5s ease;
    -o-transition: all 1s 0.5s ease;
    transition: all 1s 0.5s ease;
}

.search-active .search-popup form {
    transform: scale(1);
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: var(--kmct-light);
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: var(--kmct-secondary);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    border: none;
}

.search-popup .form-group input[type="search"]::placeholder {
    color: var(--kmct-light);
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 3px;
    height: 70px;
    line-height: 30px;
    background: transparent;
    text-align: center;
    font-size: 20px;
    color: var(--kmct-light);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    z-index: 1;
}

.close-search {
    position: absolute;
    left: 0;
    right: 0;
    border: transparent;
    top: 20%;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    background-color: var(--kmct-secondary);
    width: 50px;
    height: 50px;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.search-active .close-search {
    visibility: visible;
    opacity: 1;
}

.close-search:before,
.close-search:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--kmct-light);
    width: 25px;
    top: 24px;
    right: 13px;
    transform: rotate(45deg);
}

.close-search:after {
    transform: rotate(-45deg);
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

input[type="search"]::-moz-search-cancel-button {
    display: none;
}

input[type="search"]::-ms-clear {
    display: none;
}

/***********************
 * back-to-top
***********************/

.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--kmct-primary);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--kmct-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--kmct-secondary);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--kmct-secondary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}

/***********************
 * mobile-nav
***********************/

.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}

.mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
}

.mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: black;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
}

.mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
}

.mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
}

.mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: var(--kmct-light);
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
}

ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

ul.mobile-menu-list li:last-child {
    border: none;
}

.locked {
    position: fixed;
    width: 100%;
    top: 0;
}

ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
}

ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
}

.mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
}

.mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
}

/***********************
 * about page
***********************/

.page-header-section {
    padding-top: 236px;
    background-image: url(../images/about/about-page-banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-color: rgb(0 0 0 / 30%);
    background-blend-mode: overlay;
}

.page-header-section::after {
    content: "";
    position: absolute;
    bottom: 118px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #E0E0E02B;
}

.page-header-heading {
    margin-bottom: 117px;
    color: var(--kmct-light);
    padding-left: 28px;
    border-left: 1px solid #E0E0E02B;
}

.page-header-heading h2 {
    font-size: 63px;
    margin-bottom: 38px;
    color: var(--kmct-light);
}

.page-header-heading p {
    max-width: 70%;
    margin-bottom: 0;
}

ul.breadcrumb {
    /* display:flex;
    justify-content: right; */
    column-gap: 10px;
    padding: 45px 0;
    font-size: 18px;
    margin-bottom: 0;
}

ul.breadcrumb li a,
ul.breadcrumb li span {
    color: var(--kmct-light);
}
@media (max-width: 1400px) {
    ul.breadcrumb li a,
    ul.breadcrumb li span {
        font-size: 14px;
    }
    
}
ul.breadcrumb li a:hover {
    color: var(--kmct-primary);
}

.about-lower {
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}

.about-why-choose {
    border-radius: 35px;
    margin: 0 60px;
    margin-top: 150px;
}

.about-team {
    padding-top: 660px;
    margin-top: -550px;
}

.about-why-choose-two {
    border-top: 1px solid #D7D7D7;
}

.about-why-choose-three {
    background-color: transparent;
}

.cta-section-three {
    text-align: center;
    padding: 100px 0;
    background-image: url(../images/background/cta-three-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.cta-section-three .heading-title {
    color: var(--kmct-light);
    margin-bottom: 36px;
}

.cta-section-three::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #333939 15.26%, #131414 50.68%, #333939 85.55%);
    opacity: 0.9;
}

/***********************
* service page
***********************/

.service-section-two.srvice {
    background-color: #F3F3F3;
}

.service-section-two.srvice .sub-title {
    color: var(--kmct-primary);
}

/***********************
* service details page
***********************/

.service-details-section {
    padding: 150px 0;
    overflow: hidden;
}

.service-details-block {
    margin-bottom: 40px;
}

.service-details-block h4 {
    margin-bottom: 13px;
}

.service-details-cta {
    padding: 40px;
    border-radius: 20px;
    background-color: #FAEBD9;
    margin-bottom: 40px;
    color: #BB894F;
}

.service-details-tag-inner {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.service-details-tag {
    width: 100%;
    padding: 46px 54px;
    background-color: #F0F0F0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    column-gap: 18px;
}

.service-details-tag span {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--kmct-light);
    flex-shrink: 0;
}

.service-details-tag-title h5 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-details-tag-title p {
    margin-bottom: 0;
}

.service-details-image {
    display: flex;
    column-gap: 30px;
    overflow: hidden;
}

.service-details-image-inner {
    border-radius: 20px;
    overflow: hidden;
}

.service-pagination-list {
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    padding: 30px 0;
    border: 1px solid #EAEAEA;
    border-left: none;
    border-right: none;
    flex-wrap: wrap;
    row-gap: 20px;
}

.service-pagination-inner a {
    display: flex;
    align-items: center;
    column-gap: 23px;
    color: var(--kmct-light-text);
}

.service-pagination-inner>a {
    margin-bottom: 20px;
}

.next .service-pagination-inner a {
    justify-content: end;
}

.service-pagination-inner>a span {
    text-transform: uppercase;
    letter-spacing: 0.62em;
    font-size: 14px;
    font-weight: 600;
}

.service-pagination-inner h5 {
    margin-bottom: 0;
    font-size: 30px;
}

.service-pagination-inner h5 a {
    color: var(--kmct-dark-text);
}

.service-details-widget {
    border-radius: 10px;
    background-color: #F5F5F5;
    padding: 42px;
    margin-bottom: 40px;
}

.service-details-widget h4 {
    margin-bottom: 13px;
    font-size: 25px;
}

.service-details-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-details-widget ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
    transition: all 0.5s;
}

.service-details-widget ul li p {
    margin-bottom: 0;
    transition: all 0.5s;
}

.service-details-widget ul li:hover {
    padding: 15px 20px;
    background-color: var(--kmct-dark-text);
    border-radius: 5px;
}

.service-details-widget ul li:hover p {
    color: var(--kmct-light);
}

.service-details-widget ul li:hover img {
    filter: brightness(10);
}

.service-details-cta-widget {
    padding: 88px;
    background-color: var(--kmct-dark-text);
    border-radius: 10px;
    text-align: center;
}

.service-details-cta-widget img {
    width: 200px;
    margin-bottom: 32px;
}

.service-details-cta-widget h5 {
    margin-bottom: 32px;
    color: var(--kmct-light);
    font-size: 25px;
}

.sticy {
    position: sticky;
    top: 150px;
}

/***********************
* contact page
***********************/

.contact-section {
    padding: 150px 0;
    overflow: hidden;
}

.contact-info .heading-box {
    margin-bottom: 37px;
}

.contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-right: 120px;
}

.contact-info ul li {
    display: flex;
    column-gap: 20px;
    align-items: flex-start;
    margin-bottom: 34px;
}

.contact-title h6 {
    font-size: 18px;
    font-family: var(--kmct-body-font);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-title p {
    margin-bottom: 0;
}

.contact-title a {
    color: var(--kmct-light-text);
    display: block;
}

.contact-form {
    background-color: #F2F2F2;
    border-radius: 20px;
    margin-left: 60px;
    padding: 50px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 79%, 86% 100%, 0 100%, 0 100%, 0 0);
}

.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C4C6C5;
    border-radius: 0;
    padding: 0;
    padding-bottom: 11px;
}

.contact-form textarea.form-control {
    margin-bottom: 85px;
}

.contact-box {
    border-radius: 10px;
    padding: 30px 30px;
    height: 457px;
    display: flex;
    align-items: end;
    background-size: cover;
}

.contact-details {
    padding: 35px;
    border-radius: 10px;
    background-color: var(--kmct-light);
}

.contact-details h4 {
    font-size: 25px;
    margin-bottom: 22px;
}

.contact-details p,
.contact-details a {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--kmct-light-text);
}

.contact-details a:hover,
.contact-title a:hover {
    color: var(--kmct-primary);
}

.map-section .map {
    height: 1120px;
    background-image: url(../images/background/Map.jpg);
    background-size: cover;
    background-position: top center;
    margin-top: -410px;
}

/***********************
* blog page
***********************/

.blog-single-section {
    padding: 150px 0;
    overflow: hidden;
}

.blog-list-box {
    margin-bottom: 40px;
}

.blog-single-image {
    position: relative;
    margin-bottom: 20px;
}

.blog-single-image a:last-child {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: var(--kmct-secondary);
    color: var(--kmct-light);
    padding: 6px 15px 20px;
    text-align: center;
}

.blog-single-image a p {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 0;
}

.blog-single-image a span {
    font-weight: 600;
    margin-top: -18px;
    display: block;
}

.blog-single-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    column-gap: 10px;
}

.blog-single-meta ul li span {
    font-weight: 300;
}

.blog-single-meta ul li a {
    font-weight: 600;
    color: var(--kmct-light-text);
}

.blog-single-meta ul li a:hover {
    color: var(--kmct-primary);
}

.blog-single-details h4 {
    margin-bottom: 10px;
}

.blog-single-details h4 a {
    color: var(--kmct-dark-text);
    background-image: linear-gradient(transparent calc(100% - 1px), var(--kmct-primary) 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.blog-single-details h4 a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.blog-single-details p {
    margin-bottom: 24px;
}

.blog-single-details a.btn {
    border: 1px solid #00000033;
}

.pagination {
    justify-content: center;
    column-gap: 10px;
}

.blog-pagination-btn a {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #E1E1E1;
    color: var(--kmct-light-text);
}

.blog-pagination-btn a:hover,
.blog-pagination-btn.active a {
    background-color: var(--kmct-black);
    border-color: var(--kmct-black);
    color: var(--kmct-light);
}

.blog-sidebar.stcky {
    position: sticky;
    top: 150px;
}

.blog-block {
    margin-bottom: 35px;
    background-color: #F9F9F9;
    padding: 30px 35px;
}

.blog-serch-widget form {
    position: relative;
}

.blog-serch-widget form input[type="search"] {
    border: none;
    background-color: transparent;
    width: 100%;
}

.blog-serch-widget button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}

.blog-serch-widget button img {
    filter: brightness(0.4);
}

.blog-block h4 {
    font-size: 20px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--kmct-black);
    margin-bottom: 0;
}

.blog-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-widget ul li {
    padding: 18px 0;
    border-bottom: 1px solid #00000042;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}

.category-widget ul li:last-child {
    border: none;
}

.category-widget ul li a {
    color: var(--kmct-light-text);
}

.category-widget ul li:hover {
    background-color: var(--kmct-dark-text);
    padding: 18px;
    color: var(--kmct-light);
}

.category-widget ul li:hover a {
    color: var(--kmct-light);
}

.recent-blog-widget-item {
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid #0000004D;
}

.recent-blog-widget-item:last-child {
    border: none;
}

.recent-blog-widget-item img {
    height: 82px;
    width: 82px;
    border-radius: 100%;
}

.recent-blog-widget-item-title span {
    display: block;
}

.recent-blog-widget-item-title a {
    color: var(--kmct-dark-text);
    font-family: var(--kmct-heading-font);
    font-size: 18px;
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.recent-blog-widget-item-title a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.tag-widget ul {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.tag-widget ul li a {
    padding: 7px 20px;
    color: var(--kmct-dark-text);
    background-color: var(--kmct-light);
    transition: all 0.5s;
    display: inline-block;
}

.tag-widget ul li a:hover {
    color: var(--kmct-light);
    background-color: var(--kmct-dark-text);
}

.cta-widget {
    background-color: #F0ECE8;
}

.cta-widget h4 {
    margin-bottom: 15px;
}

.cta-widget p {
    margin-bottom: 35px;
    font-size: 18px;
}

.bolg-cta-widget .tel {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 35px;
    color: var(--kmct-dark-text);
}

.insta-post {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

/***********************
* blog details page
***********************/

.header-blog-meta {
    display: flex;
    align-items: center;
    column-gap: 15px;
}

.header-blog-meta .date {
    color: var(--kmct-light);
}

.header-blog-meta .tag {
    background-color: var(--kmct-light);
    padding: 7px 18px;
    border-radius: 6px;
    letter-spacing: 0.62em;
    color: var(--kmct-dark-text);
    text-transform: uppercase;
    font-size: 14px;
}

.blog-list-box h4 {
    margin-bottom: 15px;
}

.blog-detail-image {
    display: flex;
    column-gap: 30px;
    margin: 30px 0;
}

.cta-blog-details {
    padding: 40px 60px;
    margin-top: 30px;
    background-color: #FDEDDB;
    font-size: 35px;
    color: var(--kmct-dark-text);
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 71%, 91% 100%, 0 100%, 0 100%, 0 0);
    font-family: var(--kmct-heading-font);
}

ul.blog-details-list {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

ul.blog-details-list li {
    display: flex;
    column-gap: 10px;
    font-size: 18px;
    align-items: center;
    line-height: 25px;
    margin-bottom: 15px;
}

ul.blog-details-list li span {
    font-weight: 500;
    font-size: 25px;
    color: var(--kmct-dark-text);
    line-height: 25px;
}

.blog-details-share {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.blog-tag,
.blog-share {
    width: 48%;
}

.blog-tag ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
}

.blog-tag ul li a {
    font-size: 14px;
    color: var(--kmct-dark-text);
    padding: 7px 20px;
    border: 1px solid #00000033;
    display: inline-block;
}

.blog-tag ul li a:hover {
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
}

.blog-share {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: end;
}

.blog-share ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    transition: all 1.5s;
    max-width: 0;
    overflow: hidden;
}

.blog-share a {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--kmct-dark-text);
}

.blog-share a i {
    position: relative;
    z-index: 1;
}

.blog-share a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 100%;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
}

.blog-share a:hover::after {
    height: 100%;
    width: 100%;
}

.blog-share:hover ul {
    max-width: 1000px;
}

.blog-pagination-list {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    border: 1px solid #EAEAEA;
    border-left: none;
    border-right: none;
}

.blog-pagination {
    width: 40%;
}

.blog-pagination.next {
    text-align: end;
    margin-left: auto;
}

.blog-pagination-inner {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.blog-pagination-inner a {
    display: inline-flex;
    align-items: center;
    column-gap: 20px;
    color: var(--kmct-light-text);
}

.blog-pagination.next a {
    justify-content: end;
}

.blog-pagination-inner span {
    letter-spacing: 0.62em;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.blog-pagination-inner h5 {
    margin-bottom: 0;
    font-size: 20px;
}

.blog-pagination-inner h5 a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: var(--kmct-dark-text);
}

.comment-box-item {
    display: flex;
    column-gap: 28px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #B8B8B8;
}

.comment-box-item:last-child {
    border: none;
}

.comment-box-item>img {
    border-radius: 100%;
}

.comment-meta-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.comment-meta p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--kmct-dark-text);
}

.comment-meta span {
    font-size: 18px;
    color: var(--kmct-dark-text);
}

.comment-box h4 {
    margin-bottom: 30px;
}

.comment-box-item.reply {
    padding-left: 80px;
}

.comment-meta-inner .btn-primary:hover {
    color: var(--kmct-light);
    background-color: var(--kmct-dark-text);
}

.comment-form-box h4 {
    margin-bottom: 12px;
}

.comment-form-box p {
    margin-bottom: 40px;
    font-size: 18px;
}

.comment-form-box form {
    border-radius: 20px;
    background-color: #F2F2F2;
    padding: 60px 70px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 71%, 88% 100%, 0 100%, 0 100%, 0 0);
}

.comment-form-group-one {
    display: flex;
    align-items: center;
    column-gap: 50px;
    margin-bottom: 37px;
}

.comment-form-group-one-inner {
    width: 100%;
}

.comment-form-group-one .form-control {
    padding: 0;
    padding-bottom: 10px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #C4C6C5;
    background-color: transparent;
}

/***********************
* testi page
***********************/

.testi-page-section {
    padding: 150px 0;
    overflow: hidden;
}

.testi-box {
    padding: 52px;
    background-color: #F2F2F2;
    border-radius: 10px;
    position: relative;
}

.testi-heading {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 27px;
}

.testi-title h4 {
    font-size: 25px;
    margin-bottom: 5px;
}

.testi-title p {
    margin-bottom: 0;
}

span.testi-icon {
    position: absolute;
    top: 74px;
    right: 123px;
}

/***********************
* pricing page
***********************/

.pricing-section-one.pricing {
    background-image: none;
}

.pricing-section-one.pricing .pricing-box-one {
    background-color: #F2F2F2;
}

/***********************
* portfolio page
***********************/

.portfolio-section-five {
    padding: 150px 0;
    overflow: hidden;
}

.portfolio-section-five .heading-box {
    margin-bottom: 50px;
}

.portfolio-image-five {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 35px;
}

.portfolio-box-five:hover .portfolio-image-five img {
    transform: scale(1.2);
}

.portfolio-image-five img {
    transition: all 0.8s;
}

.portfolio-title-five h4 {
    margin-bottom: 10px;
}

.portfolio-title-five h4 a {
    color: var(--kmct-dark-text);
    background-image: linear-gradient(transparent calc(100% - 1px), #000000 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline forwards;
}

.portfolio-title-five h4 a:hover {
    animation: 1s cubic-bezier(.215, .61, .355, 1) underline-hover forwards;
}

.portfolio-title-five p {
    font-size: 18px;
    margin-bottom: 0;
    color: #3D484B;
}

.portfolio-details-five {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.portfolio-btn-five {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2F3837;
    position: relative;
    border: 1px solid #2F3837;
    overflow: hidden;
}

.portfolio-btn-five img {
    margin-left: 6px;
    position: relative;
    z-index: 1;
    margin-top: -5px;
}

.portfolio-btn-five::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    background-color: var(--kmct-primary);
    transition: all 0.5s;
    border-radius: 100%;
}

.portfolio-box-five:hover .portfolio-btn-five::before {
    height: 100%;
    width: 100%;
}

/***********************
* portfolio details page
***********************/

.portfolio-details-section {
    padding: 150px 0;
    overflow: hidden;
}

.portfolio-list-box {
    margin-bottom: 40px;
}

.portfolio-list-box h4 {
    margin-bottom: 10px;
}

.portfolio-details-image {
    display: flex;
    column-gap: 30px;
    margin: 30px 0;
}

ul.portfolio-list {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

ul.portfolio-list li {
    font-size: 18px;
    list-style: 25px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

ul.portfolio-list li span {
    font-size: 25px;
    line-height: 25px;
    color: var(--kmct-dark-text);
}

.portfolio-pagination {
    margin-top: 60px;
    display: flex;
    align-items: center;
    column-gap: 30px;
    justify-content: space-between;
    padding: 10px 0;
    border: 1px solid #3B444333;
    border-left: none;
    border-right: none;
    position: relative;
}

.portfolio-pagination::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 0px;
    border-left: 1px solid #3B444333;
}

.portfolio-pagination-inner {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.portfolio-pagination-inner.next {
    margin-left: auto;
}

.portfolio-pagination-title {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.portfolio-pagination-title span {
    color: var(--kmct-black);
    font-weight: 500;
}

.portfolio-pagination-title i {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    border: 1px solid #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kmct-light-text);
    transition: all 0.5s;
}

.portfolio-pagination-title:hover i {
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
    border-color: var(--kmct-dark-text);
}

.portfolio-widget {
    padding: 40px;
    background-color: #E8E8E8;
}

.portfolio-widget h4 {
    margin-bottom: 18px;
}

.portfolio-widget>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-widget>ul>li {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 18px;
    padding: 8px 0;
}

.portfolio-widget>ul>li>p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--kmct-dark-text);
}

ul.portfolio-details-social-media {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #3B444333;
    display: flex;
    align-items: center;
    column-gap: 15px;
    flex-wrap: wrap;
    row-gap: 15px;
}

ul.portfolio-details-social-media li {
    padding: 0;
}

ul.portfolio-details-social-media li a {
    padding: 8px 10px;
    border-radius: 100%;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
}

ul.portfolio-details-social-media li a img {
    filter: brightness(0);
    transition: all 0.5s;
}

ul.portfolio-details-social-media li a span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    color: var(--kmct-light);
}

ul.portfolio-details-social-media li a:hover {
    background-color: var(--kmct-dark-text);
    border-color: var(--kmct-dark-text);
    padding: 8px 18px;
    border-radius: 54px;
    transition: all 0.5s;
}

ul.portfolio-details-social-media li a:hover img {
    filter: none;
}

ul.portfolio-details-social-media li a:hover span {
    max-width: 1000px;
    padding-left: 5px;
    transition: max-width 2s ease-in;
}

.portfolio-sidebar.sticy {
    position: sticky;
    top: 150px;
}

/***********************
* shop page
***********************/

.shop-section {
    padding: 150px 0;
    overflow: hidden;
}

.shop-fillter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 30px;
}

.shop-fillter p {
    margin-bottom: 0;
    font-size: 20px;
}

.shop-fillter .select2-selection.select2-selection--single {
    border: 1px solid #3B4443;
    border-radius: 6px;
}

.shop-fillter .fillter-option {
    width: 268px;
}

.shop-fillter .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 13px 20px;
    color: var(--kmct-dark-text);
    font-size: 16px;
    line-height: 19px;
}

.shop-fillter .select2-container .select2-selection--single {
    height: 100%;
}

.shop-fillter .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.product-image {
    background-color: #D9D9D9;
    position: relative;
    margin-bottom: 16px;
    transition: all 0.5s;
}

.product-details h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.product-details h4 a {
    color: var(--kmct-dark-text);
}

.product-details p {
    margin-bottom: 20px;
}

ul.product-retting {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 3px;
    color: var(--kmct-dark-text);
}

.product-box:hover .product-image {
    background-color: #C2D7D2;
}

.product-image .programs {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 10px 22px;
    border-radius: 6px;
    background-color: var(--kmct-black);
    color: var(--kmct-light);
}

.product-image .cart-icon {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.3);
    opacity: 0;
    display: flex;
    align-items: center;
    column-gap: 6px;
    transition: all 1s;
}

.product-image .cart-icon li a {
    height: 58px;
    width: 58px;
    border-radius: 100%;
    background-color: var(--kmct-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kmct-light);
    font-size: 18px;
}

.product-box:hover .product-image .cart-icon {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.shop-widget {
    margin-bottom: 36px;
}

.shop-search-widget {
    padding: 24px 40px;
    position: relative;
    border: 1px solid #00000033;
}

.shop-search-widget input {
    border: none;
    background-color: transparent;
    width: 100%;
}

.shop-search-widget button {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}

.shop-search-widget button img {
    filter: brightness(0.4);
}

.product-category-widget {
    background-color: #F0ECE8;
    padding: 24px 40px;
}

.shop-widget h4 {
    padding-bottom: 25px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--kmct-black);
}

.product-category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-category-widget ul li {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #00000042;
    transition: all 0.5s;
}

.product-category-widget ul li:last-child {
    border: none;
}

.product-category-widget ul li a {
    color: var(--kmct-light-text);
    transition: all 0.5s;
}

.product-category-widget ul li span {
    font-weight: 500;
    color: var(--kmct-dark-text);
    transition: all 0.5s;
}

.product-category-widget ul li:hover {
    background-color: var(--kmct-dark-text);
    padding: 18px;
}

.product-category-widget ul li:hover a,
.product-category-widget ul li:hover span {
    color: var(--kmct-light);
}

.shop-widget .product-widget,
.shop-widget .tag-widget {
    padding: 24px 40px;
    background-color: #F9F9F9;
}

.tag-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.product-list {
    display: flex;
    column-gap: 30px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #0000004D;
}

.product-list:nth-child(2) {
    margin-top: 10px;
}

.product-list:last-child {
    border: none;
}

.product-list img {
    border-radius: 10px;
}

.product-list .title a {
    font-size: 20px;
    color: var(--kmct-dark-text);
    margin-bottom: 5px;
}

.product-list .title p {
    font-size: 18px;
    margin-bottom: 0;
}

.fillter-price-rang {
    height: 15px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.fillter-price-rang::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 14px;
    width: 15px;
    border-radius: 100%;
    background-color: var(--kmct-dark-text);
}

.fillter-price-rang::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    width: 100%;
    background-color: var(--kmct-dark-text);
}

.fillter-price-rang-handle {
    width: 14px;
    height: 14px;
    background-color: var(--kmct-dark-text);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    cursor: pointer;
}

.fillter-widget {
    padding: 24px 40px;
    background-color: #F9F9F9;
}

.fillter-price-rang-inner {
    display: inline-block;
    white-space: nowrap;
    font-size: 18px;
}

.fillter-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

/***********************
* shop details page
***********************/

.shop-details-section {
    padding: 150px 0;
    overflow: hidden;
}

.product-slide-item {
    position: relative;
    overflow: hidden;
}

.magnifier {
    position: absolute;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: none;
    width: 150px;
    height: 150px;
    display: none;
    pointer-events: none;
}

.product-slide-thumb-item {
    background-color: #D9D9D9;
    cursor: pointer;
}

.product-slide-item img {
    width: 100%;
    height: 100%;
}

.product-thumb-slider {
    margin-top: 20px;
}

.shop-details-section .slick-slide {
    padding-right: 30px;
}

.product-title h4 {
    margin-bottom: 0;
    font-size: 45px;
}

.product-title p {
    margin-bottom: 13px;
}

.product-ratting-info {
    display: flex;
    align-items: center;
    column-gap: 32px;
    margin-bottom: 15px;
}

.product-ratting-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 3px;
    font-size: 17px;
    color: var(--kmct-dark-text);
    position: relative;
}

.product-ratting-info ul::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -16px;
    height: 80%;
    width: 1px;
    background-color: #CCCCCC;
}

.whishlist-box {
    display: flex;
    align-items: center;
    column-gap: 7px;
    color: var(--kmct-light-text);
}

.whishlist-box p {
    margin-bottom: 0;
}

.pruduct-info>p {
    font-size: 18px;
    margin-bottom: 38px;
}

.product-cart-info {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 40px;
}

.product-cart-info-box {
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    display: flex;
    column-gap: 40px;
    align-items: center;
    color: var(--kmct-dark-text);
}

a.minus {
    border-right: 1px solid #CCCCCC;
    padding-right: 10px;
}

a.plus {
    border-left: 1px solid #CCCCCC;
    padding-left: 10px;
}

.product-cart-info-box a {
    color: var(--kmct-dark-text);
}

.product-cart-info .btn-secondary {
    padding: 13px;
    display: flex;
    align-items: center;
    column-gap: 25px;
}

ul.product-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 34px;
    border-top: 1px solid #E1E1E1;
    margin-bottom: 30px;
}

ul.product-info-list h5 {
    margin-bottom: 22px;
    font-size: 20px;
}

ul.product-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    column-gap: 2px;
}

ul.product-info-list li p {
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

.social-media {
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #E1E1E1;
}

.social-media p {
    margin-bottom: 0;
    color: var(--kmct-dark-text);
}

.social-media ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
}

.product-desc-reviews {
    padding: 80px 0;
}

.product-desc-reviews-btn {
    border-bottom: 1px solid #3B444333;
    margin-bottom: 20px;
    column-gap: 70px;
}

.product-desc-reviews-btn li {
    line-height: 0;
}

.product-desc-reviews-btn .btn {
    position: relative;
    background-color: transparent;
    padding: 20px;
    margin-bottom: -2px;
}

.product-desc-reviews-btn .btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 0;
    transition: all 0.5s;
    background-color: var(--kmct-dark-text);
}

.product-desc-reviews-btn .btn.active::after {
    width: 100%;
}

.product-desc-reviews-btn .btn:first-child:active {
    background-color: transparent;
}

.reating-inner a {
    color: #FF9900;
}

.tab-content .comment-form-box p {
    margin-bottom: 20px;
    font-size: 18px;
}

.tab-content .comment-form-box .reating-inner {
    margin-bottom: 30px;
}

/***********************
* cart page
***********************/

.cart-section {
    padding: 150px 0;
    overflow: hidden;
}

.cart-product-heading {
    border-bottom: 1px solid #00000033;
}

.cart-heading h4 {
    margin-bottom: 30px;
    font-size: 25px;
}

.cart-product-info {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.cancel-product a {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
}

.cart-product-name h6 {
    margin-bottom: 0;
}

.cancel-product {
    margin-right: 40px;
}

.cart-product-name {
    margin-left: 82px;
}

.cart-product-count .product-cart-info {
    justify-content: center;
    margin-bottom: 0;
}

.cart-product-single-box {
    padding: 30px 0;
    border-bottom: 1px solid #00000033;
}

.price p,
.total-price p {
    margin-bottom: 0;
}

.cart-product-image {
    background-color: #D9D9D9;
}

.cart-lower {
    padding-top: 60px;
}

.cupen-code form {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.cupen-code form .form-control {
    width: auto;
    padding: 11px;
}

.cupen-code form .btn-primary:hover {
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
}

.cart-total {
    background-color: #EEF0EF;
    border-radius: 6px;
    padding: 60px;
}

.cart-total h4 {
    margin-bottom: 44px;
}

.cart-total ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
}

.cart-total ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #00000033;
    padding: 20px 0;
}

.cart-total ul li p {
    margin-bottom: 0;
    font-size: 18px;
}

.cart-total ul li h6 {
    margin-bottom: 0;
    font-size: 25px;
}

/***********************
* checkout page
***********************/

.checkout-section {
    padding: 150px 0;
    background-color: #D9DEDD4D;
    overflow: hidden;
}

.form-group-outer,
.checkout-form .form-group {
    margin-bottom: 32px;
    column-gap: 36px;
    display: flex;
}

.checkout-section .form-group-inner {
    width: 100%;
    margin-bottom: 18px;
}

.checkout-form .form-group {
    flex-direction: column;
}

.checkout-form .form-control {
    border-color: #CACACA;
    padding: 14px 25px;
    font-size: 14px;
}

.checkout-form label {
    margin-bottom: 18px;
    font-weight: 500;
}

.checkout-form label span {
    color: #E66363;
}

.place-order-box {
    padding: 50px;
    background-color: var(--kmct-dark-text);
    border-radius: 6px;
}

.place-order-box h4 {
    color: var(--kmct-light);
    font-size: 35px;
    margin-bottom: 38px;
}

.order-product-info {
    display: flex;
    align-items: center;
    column-gap: 36px;
    margin-bottom: 24px;
}

.order-product-info h6 {
    font-size: 30px;
    color: var(--kmct-light);
}

.order-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
}

.order-info ul li {
    color: var(--kmct-light);
    display: flex;
    align-items: center;
    column-gap: 3px;
    padding: 10px 0;
}

.order-info ul li p {
    margin-bottom: 0;
    font-weight: 600;
}

.form-group-option {
    display: flex;
    align-items: center;
    column-gap: 13px;
    color: var(--kmct-light);
    margin-bottom: 10px;
}

.form-group-option input {
    height: 24px;
    width: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    border: 4px solid var(--kmct-light);
    outline: none;
    transition: all 0.3s ease;
}

.form-group-option input:checked {
    background-color: var(--kmct-primary);
}

.form-group-option p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 42px;
}

form.payment-option {
    margin-bottom: 40px;
}

/***********************
* careers page
***********************/

.careers-section {
    padding: 150px 0;
    overflow: hidden;
}

.careers-section .heading-box {
    margin-bottom: 60px;
}

.job-box {
    background-color: #F2F2F2;
    border-radius: 10px;
    padding: 50px;
    padding-right: 40px;
    height: 100%;
}

.job-box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 20px;
}

.job-box-heading h4 {
    font-size: 25px;
    margin-bottom: 0;
}

span.post-name {
    padding: 10px 15px;
    background-color: var(--kmct-dark-text);
    color: var(--kmct-light);
    letter-spacing: 0;
    font-size: 14px;
    border-radius: 42px;
}

.job-box>p {
    margin-bottom: 64px;
}

.job-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    flex-wrap: wrap;
    row-gap: 20px;
}

ul.job-location {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 23px;
}

ul.job-location li {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
}

ul.job-location li p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--kmct-dark-text);
}

.job-lower .btn-light {
    background-color: var(--kmct-light);
    color: var(--kmct-dark-text);
}

.job-lower .btn-light:hover {
    background-color: var(--kmct-primary);
}

.job-lower .btn-light:hover span {
    color: var(--kmct-light) !important;
}

/***********************
* why-choose six
***********************/

.why-choose-section-six {
    padding: 145px 0 435px 0;
    position: relative;
    margin: 0 70px;
    border-radius: 35px;
    background-image: url(../images/why-choose/why-choose-six-bg.png);
    background: linear-gradient(180deg, rgba(27, 36, 41, 0) 105.83%, #5E7E8F 177.65%), url(../images/why-choose/why-choose-six-bg.png);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.why-choose-section-six::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--kmct-black);
    z-index: -1;
}

.why-choose-section-six .heading-box {
    margin-bottom: 77px;
}

.why-choose-box-six {
    display: flex;
    column-gap: 32px;
    padding-right: 30px;
}

.why-choose-icon-six {
    flex-shrink: 0;
}

.why-choose-box-six h4 {
    color: var(--kmct-light);
    font-size: 20px;
    margin-bottom: 13px;
}

.why-choose-box-six p {
    margin-bottom: 0;
    color: var(--kmct-light);
}


/* .custom-menu-container {
  width: 100%;
  margin: 0 auto;
} */

.custom-menu-container {
  width: 100%;
  margin: 0 auto;
  
}

/* Main grid menu */
.custom-menu-grid {
    justify-content: center;
    align-items:center;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  border: 1px solid rgba(224, 224, 224, 0.17); /* outer border */
  border-bottom: none;
  border-top:none;
}

/* Menu items */
.custom-menu-item {
  position: relative;
  /* border-left: 1px solid rgba(224, 224, 224, 0.17); */
  /* border-top: 1px solid rgba(224, 224, 224, 0.17); */
}
.custom-menu-item:first-child
 {
  border-left: none;
}
/* .custom-menu-item:first-child,
.custom-menu-item:nth-child(6n+1) {
  border-left: none;
} */
.custom-menu-item:nth-child(-n+6) {
  /* border-bottom: 1px solid rgba(224, 224, 224, 0.3); */
}
.custom-menu-item:nth-child(-n+6) {
  border-top: none; /* remove top border for first row */
}

.custom-menu-item > a {
    
  display: block;

  /* padding: 12px 10px; */
  padding: 24px 5px ;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
    /* background: rgba(224, 224, 224, 0.09); */
}

.custom-menu-item > a:hover {
  background: rgba(224, 224, 224, 0.15);
  color: #007bff;
  height: 100%;
}

/* Dropdown submenu */
.custom-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border: 1px solid rgba(224, 224, 224, 0.3);
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.custom-submenu li {
  border-bottom: 1px solid rgba(224,224,224,0.1);
}

.custom-submenu li:last-child {
  border-bottom: none;
}

.custom-submenu li a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  position: relative; /* important for pseudo-element positioning */
  transition: all 0.3s ease;
}

.custom-submenu li a::before {
    content: "➤"; /* arrow symbol, you can change to FontAwesome if you like */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0; /* hidden by default */
  transition: all 0.3s ease;
  font-size: 12px;
  color: #333;
}

.custom-submenu li a:hover {
  padding-left: 25px; /* pushes text to right when hovered */
}

.custom-submenu li a:hover::before {
  opacity: 1; /* show arrow */
  left: 8px;  /* position arrow a little inside */
}
.custom-submenu li a:hover {
  background: rgba(224, 224, 224, 0.15);
  color: #007bff;
}

/* Show dropdown on hover */
.custom-menu-item:hover > .custom-submenu {
  opacity: 1;
  visibility: visible;
}

/* Responsive layouts */
@media (max-width: 992px) {
  .custom-menu-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
.custom-menu-item > a{
    font-size:15px;
}
  .custom-menu-item:nth-child(3n+1) { border-left: none; }
  .custom-menu-item:nth-child(-n+3) { border-top: none; }
}

@media (max-width: 576px) {
  .custom-menu-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }

  .custom-menu-item:nth-child(2n+1) { border-left: none; }
  .custom-menu-item:nth-child(-n+2) { border-top: none; }
}
.nav-logo-section , .admsn-btn{
    display:flex;
    justify-content:center;
    align-items:center;
}
.readmore-btn{
    display:flex;
    /* justify-content:center;
    align-items:center; */
}
@media only screen and (max-width: 600px) {
     .readmore-btn{ 
    display:flex;
    justify-content:center;
    align-items:center;
}
}
.banner-hexagon{
    position:absolute;
   
    z-index: 1;
    right: 20%;
    /* top: 40%; */
}



.hex-grid__wrap {
  padding-top: 20vh;
}

.hex-grid__list {
  --amount: 5;
  position: relative;
  margin: 0 auto;
  list-style-type: none;
  font-family: 'Roboto', sans-serif;
  display: grid;
  grid-template-columns: repeat(var(--amount), 1fr 2fr) 1fr;
  font-size: 16px;
  /* grid-gap: 0.625em 1.25em; */
  grid-gap: 3rem;
  /* max-width: 810px; */
}

.hex-grid__item {
  position: relative;
  grid-column: 1 / span 3;
  grid-row: calc(var(--counter) + var(--counter)) / span 2;
  height: 0;
  padding-top: 80%;
  filter: drop-shadow(0px 0px 2px #002543);
  transition: 0.7s;
}

.hex-grid__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color:  #036db4;
  overflow: hidden;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
      /* clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%)
; */
  transition: 0.5s;
}

.hex-grid__item--blank {
  display: none;
}

.hex-grid__item--fake {
    
  pointer-events: none;
  transform: scale(.5);
}

.hex-grid__item--light {
  color: #002543;
}

.hex-grid__item--light::before {
  background-color: #fff;
}

.hex-grid__item:hover {
  transform: scale(1.3);
  z-index: 9;
}

.hex-grid__item:hover::before {
  clip-path: polygon(25% 100%, 0 50%, 25% 0, 75% 0, 100% 50%, 75% 100%);
}

.hex-grid__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  padding: 1em 1.5em;
}
/* .hex-icon{
    font-size:30px;
   font-weight: 300;
} */
/* ---------------- MEDIA QUERIES ---------------- */

@media screen and (min-width: 1441px) {
  .hex-grid__list {
    --amount: 5;
    --counter: 1;
  }

  /* grid-item(5) expansion */
  .hex-grid__item:nth-of-type(5n+1) { grid-column: 1 / span 3; }
  .hex-grid__item:nth-of-type(5n+2) { grid-column: 3 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }
  .hex-grid__item:nth-of-type(5n+3) { grid-column: 5 / span 3; }
  .hex-grid__item:nth-of-type(5n+4) { grid-column: 7 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }
  .hex-grid__item:nth-of-type(5n+5) { grid-column: 9 / span 3; }

  .hex-grid__item:nth-of-type(n+6) { --counter: 2; }
  .hex-grid__item:nth-of-type(n+11) { --counter: 3; }
  .hex-grid__item:nth-of-type(n+16) { --counter: 4; }
  .hex-grid__item:nth-of-type(n+21) { --counter: 5; }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .hex-grid__list {
    --amount: 4;
    --counter: 1;
      grid-gap: 2.5rem;
  }

  /* grid-item(4) expansion */
  .hex-grid__item:nth-of-type(4n+1) { grid-column: 1 / span 3; }
  .hex-grid__item:nth-of-type(4n+2) { grid-column: 3 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }
  .hex-grid__item:nth-of-type(4n+3) { grid-column: 5 / span 3; }
  .hex-grid__item:nth-of-type(4n+4) { grid-column: 7 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }

  .hex-grid__item:nth-of-type(n+5) { --counter: 2; }
  .hex-grid__item:nth-of-type(n+9) { --counter: 3; }
  .hex-grid__item:nth-of-type(n+13) { --counter: 4; }
  .hex-grid__item:nth-of-type(n+17) { --counter: 5; }
  .banner-main .heading-box{
      margin-top:-50px;
  }
 .heading-title{
      font-size:33px;
  } 
}

@media screen and (min-width: 850px) and (max-width: 1280px) {
  .hex-grid__list {
    max-width: 700px;
    --amount: 4;
    --counter: 2;
    grid-gap: 2rem;
  }

  /* grid-item(3) expansion */
  .hex-grid__item:nth-of-type(3n+1) { grid-column: 1 / span 3; }
  .hex-grid__item:nth-of-type(3n+2) { grid-column: 3 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }
  .hex-grid__item:nth-of-type(3n+3) { grid-column: 5 / span 3; }

  .hex-grid__item:nth-of-type(n+4) { --counter: 2; }
  .hex-grid__item:nth-of-type(n+7) { --counter: 3; }
  .hex-grid__item:nth-of-type(n+10) { --counter: 4; }
  .hex-grid__item:nth-of-type(n+13) { --counter: 5; }
 
  .banner-main .heading-box{
      margin-top:-50px;
  }
 .heading-title{
      font-size:33px;
  } 
}

@media screen and (min-width: 550px) and (max-width: 849px) {
  .hex-grid__list {
    max-width: 500px;
    --amount: 2;
    --counter: 1;
    grid-gap: 1.5rem 3rem;
  }

  /* grid-item(2) expansion */
  .hex-grid__item:nth-of-type(2n+1) { grid-column: 1 / span 3; }
  .hex-grid__item:nth-of-type(2n+2) { grid-column: 3 / span 3; grid-row: calc(var(--counter) + var(--counter) - 1) / span 2; }

  .hex-grid__item:nth-of-type(n+3) { --counter: 2; }
  .hex-grid__item:nth-of-type(n+5) { --counter: 3; }
  .hex-grid__item:nth-of-type(n+7) { --counter: 4; }
  .hex-grid__item:nth-of-type(n+9) { --counter: 5; }

  .hex-grid__item:hover { transform: none; }
  .hex-grid__item:hover::before { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
}

@media screen and (max-width: 549px) {
  .hex-grid__list {
    max-width: 350px;
    --amount: 1;
    grid-gap: 1.5rem 3rem;
  }
.heading-title{
      font-size:43px;
  }
  .hex-grid__item--fake { display: none; }

  .hex-grid__content {
    left: 50%;
    transform: translateX(-50%);
    max-width: 250px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hex-grid__content:hover img {
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}




/* Base state for each hexagon */
.hex-grid__item {
  opacity: 0;
  transform: scale(0.7);
  animation: hexFadeIn 0.8s ease forwards;
}

/* Keyframes for the effect */
@keyframes hexFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
    filter: blur(3px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Animate each hexagon with a delay */
.hex-grid__item:nth-child(1) { animation-delay: 0.1s; }
.hex-grid__item:nth-child(2) { animation-delay: 0.2s; }
.hex-grid__item:nth-child(3) { animation-delay: 0.3s; }
.hex-grid__item:nth-child(4) { animation-delay: 0.4s; }
.hex-grid__item:nth-child(5) { animation-delay: 0.5s; }
.hex-grid__item:nth-child(6) { animation-delay: 0.6s; }
.hex-grid__item:nth-child(7) { animation-delay: 0.7s; }
.hex-grid__item:nth-child(8) { animation-delay: 0.8s; }
.hex-grid__item:nth-child(9) { animation-delay: 0.9s; }
.hex-grid__item:nth-child(10) { animation-delay: 1s; }
.hex-grid__item:nth-child(11) { animation-delay: 1.1s; }
.hex-grid__item:nth-child(12) { animation-delay: 1.2s; }
.hex-grid__item:nth-child(13) { animation-delay: 1.3s; }
.hex-grid__item:nth-child(14) { animation-delay: 1.4s; }
.hex-grid__item:nth-child(15) { animation-delay: 1.5s; }
.hex-grid__item:nth-child(16) { animation-delay: 1.6s; }
.hex-grid__item:nth-child(17) { animation-delay: 1.7s; }
.hex-grid__item:nth-child(18) { animation-delay: 1.8s; }
.hex-grid__item:nth-child(19) { animation-delay: 1.9s; }
.hex-grid__item:nth-child(20) { animation-delay: 2s; }
.hex-grid__item:nth-child(21) { animation-delay: 2.1s; }
.hex-grid__item:nth-child(22) { animation-delay: 2.2s; }

.hex-grid__item--fake {
    
  opacity: 0.7;
  transform: scale(0.7);
  animation: hexFadeIn 0.5s ease forwards;
}

/*  code for repeating the animaiton */
@keyframes hexFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

/* Loop forever */
.hex-grid__item {
  animation: hexFadeIn 8s ease-in-out infinite;
}

/* about-section */
 .hero {
      padding: 100px 20px;
      /* background: linear-gradient(to bottom, #ffffff 70%, #002855 30%); */
      position: relative;
      overflow: hidden;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #002855;
    }

    .hero p {
        text-align:justify;
      font-size: 1.1rem;
      color: #555;
    }

    /* Hexagon Shape */
    .hex {
      width: 290px;
      aspect-ratio: 1 / 1;
clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);      overflow: hidden;
      margin: 10px;
      transition: transform 0.3s ease;
    }

    .hex img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .hex:hover img {
      transform: scale(1.1);
    }

    /* Triangle Arrangement */
    .hex-cluster {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hex-row {
      display: flex;
      justify-content: center;
    }
    .hex-row:nth-child(2) {
      margin-top: -70px; /* overlap middle row slightly */
    }
    .hex-row:nth-child(3) {
      margin-top: -40px;
    }

    /* Wave Shape */
    .wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    .wave svg {
      position: relative;
      display: block;
      width: calc(132% + 1.3px);
      height: 120px;
    }

    /* Stats Section */
    .stats {
      background: #0c4982;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .stat-box {
      margin: 20px 0;
    }

    .stat-box h3 {
        color: white;
      font-size: 1.8rem;
      font-weight: bold;
    }

    .stat-box p {
      font-size: 1rem;
      margin-top: 5px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero {
        text-align: center;
        padding: 60px 20px;
      }
      .hero h1 {
        font-size: 2rem;
      }
      .hex {
        width: 120px;
      }
    }


    .ocean {
  height: 80px; /* change the height of the waves here */
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23003F7C'/%3E%3C/svg%3E");
  position: absolute;
  width: 200%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
}

.wave:nth-of-type(2) {
  bottom: 0;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

.wave:nth-of-type(3) {
  bottom: 0;
  animation: wave 20s -1s linear infinite;
  opacity: 0.5;
}

@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}



.counter-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: #0c4982; /* solid background color */
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-image: url("../images/reaction.png");
  background-repeat: no-repeat;
  background-size: contain;
  /* background-position: center; */
  opacity: 0.1;
  /* transform: translate(-50%, -50%) rotate(8deg);  */
}

.counter-section > * {
  position: relative;
  z-index: 2; /* keeps text above image */
}

    .counter-box {
      position: relative;
      padding: 20px;
    }
.counter-section h2{
    color:white;
}
    .counter-box i {
      font-size: 2rem;
      color: #00e6a7;
      margin-bottom: 10px;
    }

    .counter-number {
      font-size: 2rem;
      font-weight: bold;
      display: block;
    }

    .counter-title {
      /* font-size: 1.5rem; */
      text-transform: uppercase;
      color: #ffffff;
      margin-top: 5px;
    }

    /* Separator lines */
    .separator {
      width: 2px;
      height: 160px;
      background: linear-gradient(to bottom, transparent, #00e6a7, transparent);
      margin: auto;
      animation: moveUpDown 2s infinite alternate;
    }

    @keyframes moveUpDown {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-15px); }
    }

    /* Responsive spacing */
    @media (max-width: 767px) {
      .separator {
        display: none;
      }
    }


    
.header-side-menu {
  display: none; /* hide menu bar */
}



/* ------------------------
    testis
------------------------*/

.testi {
    position: relative;
}

.testi p {
    /* font-size: 20px;
    line-height: 32px; */
    margin: 20px 0;
    position: relative;
}

.testi .testi-caption {
    color:white;
    z-index: 9;
    position: relative;
}

.testi .testi-caption label {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--themeht-text-color);
    display: block;
}

.testi .testi-caption h5 {
    color: var(--themeht-primary-color);
    display: inline-block;
    margin-bottom: 5px;
}

.testi .testi-quote {
    position: relative;
    display: inline-block;
    z-index: 9;
    color: #f3f3f3;
    font-size: 70px;
    line-height: 1;
}

.testi-img img {
    border-radius: 24px;
    position: relative;
    z-index: 9;
    width: 100%;
}

.testi-media {
    display: flex;
    align-items: center;
}

.testi.style-1 {
    width: 100%;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 20px
}

.testi.style-1 p {
    color:#797979;
}

.testi.style-1 .testi-img {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
}

.testi.style-1 .testi-img img {
    border-radius: 0;
    position: relative;
    z-index: 9;
    width: 350px;
    height: 350px;
    background-size: cover;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.testi.style-1 .testi-quote {
    position: absolute;
    right: 0;
    top: 20%;
    background: white;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 8
    px solid #0c4982;
    z-index: 9;
}

.testi.style-1 .testi-caption h5,
.testi.style-1 .testi-caption label {
    color: var(--themeht-white-color);
}

.testi.style-2 {
    background: var(--themeht-white-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 35px 5px rgba(137, 173, 255, .15);
    margin: 30px
}

.testi.style-2 .testi-img {
    width: 100px;
}

.testi.style-2 .testi-quote i {
    position: relative;
    display: inline-block;
    z-index: 9;
    color: var(--themeht-primary-color);
    font-size: 40px;
    line-height: 1;
    opacity: 1;
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testi.style-2 p {
    font-size: 18px;
    line-height: 28px;
}

.testi-rating i {
    color: #ffb300;
    margin-right: 2px;
    font-size: 24px;
    line-height: 1;
}

.testi-marquee {
    overflow-y: hidden;
    max-height: 500px;
    padding-right: 50px;
}

.testi-marquee-inner {
    will-change: transform;
    animation: marquee-verticle 10s linear infinite;
}

.testi.style-3 {
    background: var(--themeht-white-color);
    padding: 50px;
    border-radius: 24px;
    margin: 50px 0;
}

.testi.style-3 .testi-img {
    border-radius: 100%;
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: 70px;
    height: 70px;
    margin-right: 15px
}

.testi.style-3 p {
    margin: 30px 0 0;
}

.testi-sec-bg {
    background-image: url("../images/bg/03.webp");
    background-position: 66% 87%;
    background-repeat: no-repeat;
    background-size: 1460px 1260px;
}

.testi-sec-bg.style-2 {
    background-position: 96% 70%;
    background-size: 1170px 1260px;
}

 @media (max-width:1199px) {
       
        .testi-sec-bg {
            padding-bottom: 0;
        }
        .testi-sec-bg.style-2 {
            padding-bottom: 100px;
        }
       
        .testi p {
            font-size: 16px;
            line-height: 26px;
        }
        .testi-rating i {
            font-size: 20px;
        }
        
       
        .testi.style-1 {
            display: block;
        }
    }
    @media (max-width:767px) {
        
        .testi.style-1 {
            padding: 30px;
        }
        .testi p {
            font-size: 16px;
            line-height: 26px;
        }
        .testi.style-1 .testi-quote.right {
            right: 20px;
            bottom: 40px;
            width: 50px;
        }
       
        .testi.style-1 .testi-img {
            margin-bottom: 30px;
        }
        .testi.style-1 .testi-img img {
            /* width: 300px;
            height: 300px; */
        }
        .testi.style-1 .testi-quote {
            right: -7%;
        }
       
    }
    .msg-section{
        /* margin-top:200px; */
    }
.msg-section h6{
    color: white;
}

  
.animated-icon-shape{
    /* position: relative; */
    top: 20%;
}
.small-circle-animation4{
    position: absolute;
    top: 50%;
    right: 10%;
}
.small-circle-animation1{
    position: absolute;
    top: 20%;
    left: 0%;
}

.lab-section {
      background-color: #0c4982; /* dark blue */
     margin-bottom: 100px; /* dark blue */

      color: white;
      padding: 20px 0 240px; /* extra bottom padding */
      position: relative;
      overflow: visible;
    }



    .lab-section h6 {
      color: #e1b35b;
      font-weight: 700;
    }
    .lab-section h2 {
        color: white;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .lab-section p {
        text-align: justify;
      color: #dcdcdc;
    }
      .swiper-slide1 {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }
    /* slider wrapper sits partly outside */
    .slider-wrapper {
       
      position: absolute;
      right: 0;
      bottom: -150px; /* pushes half outside */
      width: 80%;
         transition: transform 0.3s ease;
    }

    .swiper-slide1 img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
    }

    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 10px 15px;
      font-size: 0.9rem;
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.3s ease;
    }
    .swiper-slide:hover .slide-overlay {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 991px) {
      .slider-wrapper {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
      }
    }

    .facilits-section {
        margin-top: 200px;
      text-align: center;
      padding: 60px 20px;
      position: relative;
    }

    .facilits-title {
      margin-bottom: 60px;
    }

    /* Hexagon Shape */
    .hexagon {
      position: relative;
      width: 140px;
      height: 80px;
      background: #fff;
      margin: auto;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      z-index: 1; /* facilits above line */
    }


    .hexagon:before {
      top: -49.5px;
    }

    .hexagon:after {
      bottom: -49.5px;
    }

    .hexagon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .facilit-text {
      font-weight: 600;
      margin-top: 15px;
    }

    /* Wrapper */
    .facilits-wrapper {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      position: relative;
      flex-wrap: nowrap;
      z-index: 1; /* keep wrapper above line */
    }

    .facilit-item {
      flex: 1;
      min-width: 180px;
      position: relative;
      margin-top: 40px; /* keep closer to line */
    }

    /* Offset so items follow wave pattern */
    .facilit-item:nth-child(1) { top: 40px; }
    .facilit-item:nth-child(2) { top: 0px; }
    .facilit-item:nth-child(3) { top: 40px; }
    .facilit-item:nth-child(4) { top: 0px; }
    .facilit-item:nth-child(5) { top: 40px; }

    /* Connector Line */
    svg.connector {
      position: absolute;
      top: 120px; /* lowered line closer to items */
      left: 0;
      width: 100%;
      height: 150px;
      z-index: 0; /* line behind */
    }

    @media(max-width: 768px) {
      .facilits-wrapper {
        flex-direction: column;
        align-items: center;
      }
      .facilit-item {
        margin-top: 40px;
        top: 0 !important;
      }
      svg.connector {
        display: none;
      }
    }


      .half-hex-wrapper {
      border-radius: 28px; /* smooth outer rounding */
      box-shadow: 0 10px 28px rgba(0,0,0,0.25); /* soft shadow */
      overflow: hidden; /* clip child properly */
      height: 100%;
    }

    .half-hex {
      width: 100%;
      height: 100%;
      clip-path: polygon(
        0 0, 78% 0, 100% 50%, 78% 100%, 0 100%
      ); /* half hex shape */
      overflow: hidden;
    }

    .half-hex img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease-in-out;
    }
    .half-hex img:hover {
      transform: scale(1.05);
    }

    .definition-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px;
      background: #f8fafc;
      border-radius: 24px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .definition-col h2 {
      color: #0c4982;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .definition-col p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #374151;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .half-hex {
        clip-path: polygon(
          0 0, 100% 0, 100% 50%, 100% 100%, 0 100%
        ); /* rectangle fallback */
      }
      .half-hex-wrapper {
        border-radius: 16px;
        height: 250px;
      }
      .definition-col {
        padding: 24px;
        border-radius: 16px;
      }
    }



    .why-choose-one {
       margin-top: 50px;
    position: relative;
    display: block;
    background:#0c4982;
    padding: 80px 0px 80px;
    overflow: hidden;
    z-index: 1;
}

.why-choose-one .shape3 {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.15;
    z-index: -1;
}

.why-choose-one .shape4 {
    position: absolute;
    top: 50px;
    right: 350px;
    opacity: 0.15;
    z-index: -1;
}

.why-choose-one .shape5 {
    position: absolute;
    top: 320px;
    right: 20px;
    opacity: 0.15;
    z-index: -1;
}

.why-choose-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 540px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    z-index: -1;
}

.why-choose-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--cleanin-black);
    opacity: 0.3;
    content: "";
    z-index: -1;
}

.why-choose-one .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 645px;
    clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    background: var(--cleanin-base);
    z-index: -2;
}

.why-choose-one .shape2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 650px;
    clip-path: polygon(0 0, 100% 0%, 87% 100%, 0% 100%);
    background: var(--cleanin-white);
    z-index: -3;
}

.why-choose-one__inner {
    position: relative;
    display: block;
    padding-left: 410px;
    margin-right: -100px;
}

.why-choose-one__inner .sec-title__tagline .text h4 {
    color: white;
}

.why-choose-one__inner .sec-title__tagline .icon-box span::before {
    color: white;
}

.why-choose-one__inner .sec-title__title {
    color: white;
}

.why-choose-one__tab .tabs-button-box {
    padding-left:0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*margin-bottom: 40px;*/
}

.why-choose-one__tab .tabs-button-box li+li {
    margin-left: 1px;
}

.why-choose-one__tab .tabs-button-box li:last-child {
    margin-right: 0px;
}

.why-choose-one__tab .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    background: white;
    border-radius: 0px;
    width: 100%;
    padding: 15px 20px 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: pointer;
}
@media (max-width: 1200px) {
    .why-choose-one__tab .tabs-button-box .tab-btn-item {
        width: 100%;
    }
}
.tab-btn-item h4{
    margin-bottom:0;
}
.why-choose-one__tab .tabs-button-box .tab-btn-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 0%;
    background-color: var(--cleanin-white);
    transition: all 0.3s ease;
    z-index: -1;
}

.why-choose-one__tab .tabs-button-box .tab-btn-item.active-btn:before {
    height: 100%;
}

.why-choose-one__tab .tabs-button-box .tab-btn-item h3 {
    color: var(--cleanin-white);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.why-choose-one__tab .tabs-button-box .tab-btn-item.active-btn h4 {
    color: #e1b35b;
}
.text h4{
    font-size:18px;
}
.why-choose-one__tab .tabs-button-box .tab-btn-item h3 span::before {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    margin-right: 3px;
}

.why-choose-one .tabs-content {
    position: relative;
    display: block;
}

.why-choose-one .tabs-content .tab {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.why-choose-one .tabs-content .tab.tab-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.why-choose-one__single-tab {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.why-choose-one .tabs-content .tab.tab-active .why-choose-one__single-tab {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.why-choose-one__single-tab-inner {
    position: relative;
    display: block;
    background: var(--cleanin-white);
}

.why-choose-one__single-tab-inner .row {
    align-items: center;
    --bs-gutter-x: 0px;
}

.why-choose-one__single-tab-img {
    position: relative;
    display: block;
}

.why-choose-one__single-tab-img::before {
    position: absolute;
    top: 0;
    right: -3px;
    bottom: 0;
    width: 3px;
    background: var(--cleanin-base);
    content: "";
}
.why-choose-one__single-tab-content p {
  position: relative;
  padding-left: 28px;       /* space for arrow */
  margin-bottom: 12px;
  line-height: 1.6;
}

.why-choose-one__single-tab-content p::before {
  content: "➤";             /* arrow symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: white;           /* your theme color */
  font-size: 18px;
  line-height: 1.6;
}
.why-choose-one__single-tab-img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.why-choose-one__single-tab-img img {
    width: 100%;
}

.why-choose-one__single-tab-content {
    position: relative;
    display: block;
    /*padding: 5px 35px 5px;*/
}

.why-choose-one__single-tab-content h2 {
    position: relative;
    display: block;
    color: white;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 18px;
}

.why-choose-one__single-tab-content h2::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--cleanin-base);
    content: "";
}

.why-choose-one__single-tab-content p {
    margin: 0;
    color:white;
}

.why-choose-one__single-tab-content .btn-box {
    position: relative;
    display: block;
    margin-top: 33px;
    line-height: 0px;
}


@media (min-width: 900px) and (max-width: 1400px) {
 .why-choose-one__tab {
     width:80%;
 }
}
/* @media only screen and (min-width: 1550px) and (max-width: 1850px) {
    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one__bg {
        width: 500px;
    }

    .why-choose-one .shape1 {
        width: 505px;
    }

    .why-choose-one .shape2 {
        width: 510px;
    }



}


    

@media only screen and (min-width: 1320px) and (max-width: 1700px) {
   

    .why-choose-two .big-title {
        display: none;
    }





}


@media only screen and (min-width: 1200px) and (max-width: 1549px) {
    .why-choose-one__bg {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one__inner {
        padding-left: 0px;
        margin-right: 0px;
    }

    .why-choose-one .shape5 {
        display: none;
    }



} */
 @media only screen and (min-width: 900px) and (max-width: 1600px) {
    
.why-choose-one__bg{
    width: 440px;
}
} 





/***
=============================================
Medium screen
=============================================
***/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
   

    .why-choose-one__bg {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one__inner {
        padding-left: 0px;
        margin-right: 0px;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one__single-tab-content h2 {
        font-size: 22px;
        line-height: 32px;
    }

}






/***
=============================================
Tablet Layout: 768px
=============================================
***/
@media only screen and (min-width: 768px) and (max-width: 991px) {
 

    .why-choose-one__bg {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one__inner {
        padding-left: 0px;
        margin-right: 0px;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one__single-tab-content {
        padding: 30px 40px 35px;
    }

    .why-choose-one__single-tab-img::before {
        display: none;
    }

   

}









/***
=============================================
Mobile Layout: 320px
=============================================
***/
@media only screen and (max-width: 767px) {
    
    .why-choose-one__bg {
        display: none;
    }

    .why-choose-one .shape1 {
        display: none;
    }

    .why-choose-one .shape2 {
        display: none;
    }

    .why-choose-one__inner {
        padding-left: 0px;
        margin-right: 0px;
    }

    .why-choose-one .shape5 {
        display: none;
    }

    .why-choose-one__single-tab-content {
        padding: 30px 20px 35px;
    }

    .why-choose-one__single-tab-img::before {
        display: none;
    }

    .why-choose-one .shape3 {
        display: none;
    }

    .why-choose-one .shape4 {
        display: none;
    }

    .why-choose-one__tab .tabs-button-box {
        display: flex;
    }

    .why-choose-one__tab ul li+li {
        border-top: 1px solid rgba(var(--cleanin-white-rgb), 0.1);
    }

    .why-choose-one__single-tab-content .btn-box .thm-btn {
        padding: 0px 30px 0px;
    }

   

}


/***
=============================================
Cta One
=============================================
***/
.cta-one {
    position: relative;
    display: block;
    background: #0c4982;
    border-bottom: 1px solid rgba(var(--cleanin-white-rgb), 0.2);
    padding: 81px 0px 78px;
    z-index: 1;
}

.cta-one .shape1 {
    position: absolute;
    top: -40px;
    left: 680px;
    border-bottom: 40px solid #03376b;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    content: "";
}

.cta-one__bg {
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    width: 700px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
}

.cta-one__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: black;
    content: "";
    opacity: 0.75;
}

.cta-one__inner {
    position: relative;
    display: block;
}

.cta-one__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 780px;
    width: 100%;
    float: right;
}

.cta-one__content .text-box {
    position: relative;
    display: block;
}

.cta-one__content .text-box p {
    color: white;
    letter-spacing: 0.2em;
}

.cta-one__content .text-box h2 {
    color: white;
    font-size: 30px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 4px;
}

.cta-one__content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.cta-one__content .btn-box .thm-btn:hover {
    color: var(--cleanin-black);
}

.cta-one__content .btn-box .hover-btn {
    background-color: var(--cleanin-white);
}
@media (min-width: 900px) and (max-width: 1400px) {
 .cta-one__content .text-box {
    padding-left:50px;
}
}



/*======================================================| 
=====| 6.32 Working Process 1 */
.facilities1 {
  position: relative;
}
.facilities1__shape {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 425px;
  z-index: -10;
}
@media only screen and (max-width: 991px) {
  .facilities1__shape {
    display: none;
  }
}
.facilities1__item {
  padding: 0px 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1699px) {
  .facilities1__item {
    padding: 0px 0px;
  }
}
.facilities1__item_thumb {
  width: 240px;
  height: 240px;
  padding: 10px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  position: relative;
  margin-bottom: 42px;
}
.facilities1__item_thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  border-radius: 100% !important;
}
.facilities1__item_thumb:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 93, 232, 0.2);
  transition: 0.3s;
  border-radius: 100%;
  left: 0px;
  top: -10px;
  z-index: -1;
}
.facilities1__item_thumb:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 93, 232, 0.2);
  transition: 0.3s;
  border-radius: 100%;
  left: 0px;
  bottom: -10px;
  z-index: -1;
}
.facilities1__item:hover .facilities1__item_thumb:before {
  background-color: #036db4;;
}
.facilities1__item:hover .facilities1__item_thumb:after {
  background-color: #036db4;;
}
.facilities1__item_content h5 {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #036db4;;
  text-transform: capitalize;
  margin-bottom: 0px;
}
@media only screen and (max-width: 400px) {
  .facilities1__item_content h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
.facilities1__item_content p {
  font-size: 16px;
  line-height: 26px;
  color: #6e7276;
}

.section_caption {
  display: inline-block;
  max-width: 720px;
  border-radius: 10px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  padding: 30px 100px;
}
@media only screen and (max-width: 767px) {
  .section_caption {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 479px) {
  .section_caption {
    padding: 20px;
  }
}
.section_caption p {
  font-size: 17px;
  line-height: 27px;
  color: #6e7276;
  margin-bottom: 0px;
}
.section_caption p a {
  color: #00bde0;
}
.section_caption p a:hover {
  color: #00bde0;
}



 .services-section {
    background-image: url(http://127.0.0.1:5501/images/homepage-1/bg/dot-row-bg-2.png);
      /* background: #f9f9f9; */
      background-size: cover;
      /* padding: 80px 0; */
      position: relative;
      overflow: hidden;
    }

    /* Service Cards */
  .service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
  overflow: hidden; /* ensure background doesnâ€™t spill */
}

/* background image with opacity */
.service-card::before {
/*border: 1px solid grey;*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  /* background-image: url("../images/chemistry1.png"); */
  background-size: cover;
  background-position: bottom;
  /* opacity: 0.2;   */
  z-index: 0;
}
.news-container{
    max-width: 1200px;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
/* .services-section h2{
    color:#0c4982;
} */
    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card .icon {
      width: 55px;
      height: 55px;
      background: #0c4982;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px;
      font-size: 22px;
      margin-bottom: 15px;
    }

    .service-card h5 {
      font-weight: 500;
      color: black;
      margin-bottom: 10px;
    }

    .service-card p {
        min-height:20px;
        max-height: 60px;
      font-size: 15px;
      color: white;
      margin-bottom: 40px;
    }

    .service-card .arrow {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #0c4982;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    /* Image Shape */
        .image-shape {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }
    

        .image-shape img {
      width: 100%;
          transition: transform 0.4s ease-in-out;
      height: 100%;
      object-fit: cover;
      /* Custom cut shape (arc + diagonal) */
      clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0% 50%);
    }
.image-shape img:hover {
      transform: scale(1.05);
    }
    @media (max-width: 991px) {
      .image-shape {
        border-radius: 20px;
        margin-top: 30px;
      }
    }


    p.c
{
    font-family: 'Over the Rainbow', serif;
    font-size: 32px;
    color:#ffaa17;
}
.glass{
  fill: lightgray;
}
.solution1{
  fill: cornflowerblue;
}
.solution2{
  fill: #ffaa17;
}
.bubble{
  fill: lightgray;
  stroke: gray;
  stroke-width: .2;
  animation-name: up;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.bubble:nth-child(n), .compound1>.bubble:nth-child(6){
  animation-delay: -.1s;
  animation-duration: 1.2s;
}
.bubble:nth-child(2n), .compound1>.bubble:nth-child(5){
  animation-delay: -.4s;
  animation-duration: 1s;
}
.bubble:nth-child(3n), .compound1>.bubble:nth-child(4){
  animation-delay: -.8s;
  animation-duration: .8s;
}
.compound1{
  transform: translateX(-10px);
}
.compound2{
  transform: translateX(0px);
}
.compound2 .eyes{
  transform: translateY(2px);
}
.pluss{
  transform: translateX(-27px) translateY(-5px);
}
.equal{
  transform: scale(1, 1.5) translate(-2px, -0.5px);
}
.H2{
  transform: scale(.7, .7) translate(10px, -35px);
}
.atom{
  fill: rgba(240, 240, 240, 1);
}
.H{
  fill: rgba(20, 20, 20, .8);
}
.atom:nth-child(3), .H:nth-child(4){
  transform: translate(9px, 0px);
}

@keyframes up{
  0%{
    transform: translate(0px, 2px);
    opacity: 1;
  }
  100%{
    transform: translate(0px, -10px);
    opacity: .0;
  }
}
.fixed-svg {
  position: absolute;
  top:30%;
  left: -10%;
  /* z-index: 999; */
  opacity: 0.5;
    z-index:1;

}


.team-section {
      background: #f6f8ff;
      padding: 50px 0;

    }
    .team-title-box {
      background: #e1b35b;
      padding: 50px 30px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .team-title-box h6 {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: #333;
    }
    .team-title-box h2 {
      font-size: 32px;
      font-weight: 700;
      color: #222;
      margin: 0;
    }
    .team-card {
      background: #fff;
      border: none;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0px 4px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .team-card:hover {
      transform: translateY(-10px);
    }
    .team-card img {
      width: 100%;
      /* height: 300px; */
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .team-card:hover img {
      transform: scale(1.1);
    }
    .team-info {
      background: #0c4981;
      color: #fff;
      padding: 15px;
      text-align: center;
    }
    .team-info h5 {
        color: white;
      margin: 0;
      font-size: 18px;
      font-weight: 600;
    }
    .team-info p {
      margin: 0;
      font-size: 14px;
      color: #ffffff;
    }
    /* Swiper controls */
    .swiper-button-next,
    .swiper-button-prev {
      color: #222;
    }




.testimonial-section_one {
    /*padding-top: 290px;*/
}

.testimonial_counter {
    text-align: end;
}

.testimonial-section_one .pbmit-col-stretched-left {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: auto;
    right: 0;
    background-color: #054875;;
    z-index: -1;
}

.testimonial-section_one .pbmit-testimonial-style-2 {
    /* padding-top: 100px; */
    /*margin: 0 80px 0 0px;*/
    
}

.testimonial-section_one .pbmit-nav button.pbmit-prev {
    color: var(--pbmit-white-color);
    background-color: black;
    width: 70px;
    height: 70px;
    line-height: 70px;
    left: 10px;
    transform: rotate(180deg);
    border: none;
}

.testimonial-section_one .pbmit-nav button.pbmit-prev::after {
    font-family: "pbminfotech-base-icons";
    content: '\e81c';
    font-size: 22px;
}

.testimonial-section_one .pbmit-nav button.pbmit-prev span {
    display: none;
}

.testimonial-section_one .pbmit-nav button.pbmit-prev:hover {
    background-color: black;
    color: var(--pbmit-secondary-color);
    -webkit-transition: all .6s;
}

.testimonial-section_one .pbmit-nav button.pbmit-next {
    color: var(--pbmit-white-color);
    background-color:black;
    width: 70px;
    height: 70px;
    line-height: 70px;
    left: 10px;
    border: none;
}

.testimonial-section_one .pbmit-nav button.pbmit-next::after {
    font-family: "pbminfotech-base-icons";
    content: '\e81c';
    font-size: 22px;
}

.testimonial-section_one .pbmit-nav button.pbmit-next span {
    display: none;
}

.testimonial-section_one .pbmit-nav button.pbmit-next:hover {
    background-color: var(--pbmit-white-color);
    color: var(--pbmit-secondary-color);
    -webkit-transition: all .6s;
}

.testimonial-section_one .testimonial-width {
    padding:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    position: relative;
}

.testimonial-section_one .testimonial-right-img {
    position: relative;
}

.testimonial-section_one .testimonial-one-arrow {
    position: absolute;
    content: '';
    right: 70px;
    bottom: 100px;
}

.testimonial-section_one .testimonial-right-img .spacer-inner {
    height: 175px;
}

.testimonial-section_one .testimonial-right_bg {
    padding: 155px 0px 155px 0px;
    background-color: #e1b35b;
}

.testimonial-section_one .testimonial_img {
    position: absolute;
    left: 4%;
    bottom: 0;
    width: auto;
    animation-name: fadeInUp;
    animation-duration: 2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.testimonial-section_one .single_image-wrapper {
    position: relative;
    object-fit: cover;
    bottom: 0;
}

.testimonial-section_one .pbmit-nav {
    position: absolute;
    content: '';
    width: 100%;
    bottom: 45px;
    left: -72px;
}

.testimonial-section_one .swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}


.service-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
padding-bottom: 20px;

}


.service-card .card-img {
position: relative;
}


.service-card img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 15px;
}


.service-card .circle {
width: 70px;
height: 70px;
background: #036db4;
border-radius: 50%;
position: absolute;
bottom: -35px;
left: 50%;
transform: translateX(-50%);
border: 5px solid #fff;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: 600;
font-size: 14px;
}


.service-card .circle span {
display: block;
text-align: center;
line-height: 1.2;
}


.service-card .card-body {
   
margin-top: 45px;
padding: 0 20px;
}
.card-body h5{
   
    font-size:20px;
}

.service-card .read-more {
color: #ffffff;
font-weight: 600;
text-decoration: none;
}


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


/* Pagination as lines */
.swiper-pagination-bullet {
  
width: 25px;
height: 4px;
border-radius: 2px;
background: #ccc;
}
.swiper-pagination {
  margin-top: 80px;
  position: relative;
}

/* .service-card:hover {
  background: #729fc9;;  
  color: #fff;          
  border-radius: 12px 12px;
  transition: 0.3s ease;
}


.service-card:hover .card-body h5,
.service-card:hover .card-body p,
.service-card:hover .card-body .read-more {
  color: #fff;
}
 */

.service-card:hover .circle {
  background: #e1b35b;   /* Dark blue or any color you like */
  transition: 0.3s ease;
}
.service-card:hover .btn-readmore{}
.btn-readmore {
    padding-bottom: 40px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background: #036db4;        /* default background */
  color: #1b1b1b;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.service-card:hover .btn-readmore{
      background: #e1b35b;   /* Dark blue or any color you like */
  transition: 0.3s ease;
}
/* Hover effect */
.btn-readmore:hover {
  background: #e1b35b;       /* hover background */
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transform: translateY(-3px);  /* lift effect */
  color: #fff;
}
.swiper {
  padding-bottom: 160px;  /* give space for pagination */
}

.swiper-pagination {
  position: absolute;
  bottom: 150px;          /* place it below cards */
  left: 0;
  right: 0;
  margin-top: 0;         /* remove margin pushing it inside */
}
.testimonials-two {
   
  
  padding: 105px 0px 120px 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .testimonials-two {
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0px;
  }
}
.testimonials-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}
.testimonials-two__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(var(--laboix-base-rgb, 2, 25, 54), 0.81);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
 
}
.testimonials-two__thumb {
  position: relative;
  z-index: 1;
  
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 414.000000"> <g transform="translate(0.000000,414.000000) scale(0.050000,-0.050000)"> <path d="M2150 7888 c-132 -61 -289 -134 -350 -162 -60 -28 -155 -72 -210 -96 -55 -25 -235 -108 -400 -185 -307 -143 -337 -157 -770 -355 -137 -63 -261 -124 -275 -135 -20 -16 -24 -561 -20 -2651 l5 -2632 430 -248 c237 -136 520 -299 630 -363 110 -64 434 -250 720 -415 286 -165 648 -374 805 -464 l286 -164 1434 827 1435 828 5 2631 c4 2090 0 2635 -20 2651 -14 11 -526 250 -1138 532 l-1112 513 -608 0 -607 -1 -240 -111z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 414.000000"> <g transform="translate(0.000000,414.000000) scale(0.050000,-0.050000)"> <path d="M2150 7888 c-132 -61 -289 -134 -350 -162 -60 -28 -155 -72 -210 -96 -55 -25 -235 -108 -400 -185 -307 -143 -337 -157 -770 -355 -137 -63 -261 -124 -275 -135 -20 -16 -24 -561 -20 -2651 l5 -2632 430 -248 c237 -136 520 -299 630 -363 110 -64 434 -250 720 -415 286 -165 648 -374 805 -464 l286 -164 1434 827 1435 828 5 2631 c4 2090 0 2635 -20 2651 -14 11 -526 250 -1138 532 l-1112 513 -608 0 -607 -1 -240 -111z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 373px;
  height: 500px;
}
@media (max-width: 1199px) and (min-width: 991px) {
  .testimonials-two__thumb {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .testimonials-two__thumb {
    margin-bottom: 30px;
  }
}
.testimonials-two__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.testimonials-two__content {
  margin-left: 40px;
  margin-right: -20px;
}
@media (max-width: 991px) {
  .testimonials-two__content {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.testimonials-two__star {
  font-size: 22px;
  color: var(--laboix-secondary, #0EBD66);
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.testimonials-two__text {
  color: var(--laboix-white, #fff);
  font-size: 30px;
  font-weight: 500;
  line-height: 166.667%;
  padding-bottom: 37px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .testimonials-two__text {
    font-size: 22px;
  }
}
.testimonials-two__author {
  display: flex;
  align-items: center;
  margin-left: 160px;
  gap: 21px;
}
.testimonials-two__author__thumb {
  display: flex;
  align-items: center;
}
.testimonials-two__author__thumb:hover .testimonials-two__author__thumb__item:not(:first-of-type) {
  margin-left: -5px;
}
.testimonials-two__author__title {
  color: var(--laboix-white, #fff);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 0;
  margin-bottom: -2px;
}
.testimonials-two__author__deg {
  display: block;
  color: var(--laboix-border-color, #DBDBDB);
  font-size: 14px;
  font-weight: 500;
  line-height: 178.529%;
  padding-bottom: 0;
  margin-bottom: 0;
}
.testimonials-two::after {
  content: "";
  width: 388px;
  height: 650px;
  background-color: rgba(var(--laboix-secondary-rgb, 14, 189, 102), 1);
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  top: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 991px) {
  .testimonials-two::after {
    display: none;
  }
}
.testimonials-two::before {
  content: "";
  width: 430px;
  height: 100%;
  background-color: rgba(var(--laboix-white-rgb, 255, 255, 255), 1);
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .testimonials-two::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .testimonials-two__carousel .owl-nav {
    display: none;
  }
}
.testimonials-two__carousel .owl-nav .owl-prev, .testimonials-two__carousel .owl-nav .owl-next {
  bottom: 60px;
  position: absolute;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39 45"><path d="M19.5 44.9995L9.83506e-07 33.7495L2.95052e-06 11.2495L19.5 -0.000489986L39 11.2495L39 33.7495L19.5 44.9995Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 39 45"><path d="M19.5 44.9995L9.83506e-07 33.7495L2.95052e-06 11.2495L19.5 -0.000489986L39 11.2495L39 33.7495L19.5 44.9995Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 40px;
  height: 49px;
  background: #324B64 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  .testimonials-two__carousel .owl-nav .owl-prev, .testimonials-two__carousel .owl-nav .owl-next {
    bottom: 0;
  }
}
.testimonials-two__carousel .owl-nav .owl-prev span, .testimonials-two__carousel .owl-nav .owl-next span {
  font-size: 12px;
  color: var(--laboix-white, #fff);
  transition: all 0.5s ease-in-out;
}
.testimonials-two__carousel .owl-nav .owl-prev:hover, .testimonials-two__carousel .owl-nav .owl-next:hover {
  background: var(--laboix-secondary, #0EBD66) !important;
}
.testimonials-two__carousel .owl-nav .owl-prev:hover span, .testimonials-two__carousel .owl-nav .owl-next:hover span {
  color: var(--laboix-white, #fff);
}
.testimonials-two__carousel .owl-nav .owl-prev {
  right: 60px;
}
.testimonials-two__carousel .owl-nav .owl-next {
  right: 0px;
}
.testimonials-two__meta-thumb {
  position: relative;
  z-index: 1;
}
.testimonials-two .carousel-thumb__two {
  position: absolute;
  left: 44%;
  bottom: 22%;
  max-width: 150px;
  width: 100%;
}
@media (max-width: 991px) {
  .testimonials-two .carousel-thumb__two {
    left: 22%;
    bottom: 9%;
  }
}
@media (max-width: 575px) {
  .testimonials-two .carousel-thumb__two {
    left: 10%;
    bottom: 7%;
  }
}
.testimonials-two .carousel-thumb__two .owl-item:not(:first-of-type) {
  margin-left: -10px;
}
.testimonials-two .carousel-thumb__two .active.center .item__thumb {
  position: relative;
  z-index: 1;
  display: block;
}
.testimonials-two .carousel-thumb__two .active.center .item__thumb::after {
  position: absolute;
  top: -3px;
  left: -2.5px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.000000 65.000000"> <g transform="translate(0.000000,65.000000) scale(0.050000,-0.050000)"> <path d="M280 1122 l-270 -158 0 -324 0 -324 272 -159 272 -158 272 156 273 155 0 330 0 330 -264 150 c-146 83 -269 152 -275 155 -5 2 -131 -66 -280 -153z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.000000 65.000000"> <g transform="translate(0.000000,65.000000) scale(0.050000,-0.050000)"> <path d="M280 1122 l-270 -158 0 -324 0 -324 272 -159 272 -158 272 156 273 155 0 330 0 330 -264 150 c-146 83 -269 152 -275 155 -5 2 -131 -66 -280 -153z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 60px;
  height: 70px;
  background: var(--laboix-secondary, #0EBD66);
  content: "";
  z-index: 0;
}
.testimonials-two__meta-thumb {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.000000 65.000000"> <g transform="translate(0.000000,65.000000) scale(0.050000,-0.050000)"> <path d="M280 1122 l-270 -158 0 -324 0 -324 272 -159 272 -158 272 156 273 155 0 330 0 330 -264 150 c-146 83 -269 152 -275 155 -5 2 -131 -66 -280 -153z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56.000000 65.000000"> <g transform="translate(0.000000,65.000000) scale(0.050000,-0.050000)"> <path d="M280 1122 l-270 -158 0 -324 0 -324 272 -159 272 -158 272 156 273 155 0 330 0 330 -264 150 c-146 83 -269 152 -275 155 -5 2 -131 -66 -280 -153z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
  width: 55px;
  height: 64px;
}
.testimonials-two__meta-thumb img {
  position: relative;
  z-index: 1;
}


.faq-section {
      padding: 60px 0;
      background: #f9f9f9;
    }
    .faq-title {
      font-weight: 500;
      
      margin-bottom: 10px;
    }
    .faq-right{
        background-image: url(../images/front-view-young-female-doctor-white-medical-suit-white-cap-with-blue-stethoscope-holding-pills-potions\ 1\ \(1\).png);
         background-size: contain; 
        background-repeat: no-repeat;
        background-position-y: bottom;
    }
    .accordion-button {
        font-size:18px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-radius: 6px !important;
      font-weight: 500;
    }
    .accordion-button::after {
      display: none; /* remove default arrow */
    }
    .accordion-button.collapsed .icon {
      content: "+";
    }
    .accordion-button .icon {
      margin-left: auto;
      font-size: 18px;
      transition: transform 0.3s;
    }
    .accordion-button:not(.collapsed) .icon {
      transform: rotate(180deg);
    }
    .accordion-body {
        font-size:14px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-top: 5px;
      border-radius: 6px;
    }


     .custom-gallery-section {
        /* margin-top:100px; */
      padding-top: 60px ;
      padding-bottom: 190px;
      background: #f9f9f9;
    }

    .custom-swiper-slide {
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .custom-swiper-slide img {
      width: 100%;
      height: 310px;
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.3s ease;
    }

    .custom-swiper-slide:hover img {
      transform: scale(1.1);
      filter: brightness(80%);
    }

    /* Arrows */
    .custom-swiper-button-next, 
    .custom-swiper-button-prev {
      color: #0c4982;
      transition: 0.3s;
    }
    .custom-swiper-button-next:hover, 
    .custom-swiper-button-prev:hover {
      color: #066399;
    }

    /* Pagination */
    .custom-swiper-pagination .swiper-pagination-bullet {
      width: 30px;
      height: 4px;
      border-radius: 2px;
      background: #0c4982;
      opacity: 0.5;
      transition: opacity 0.3s, background 0.3s;
    }
    .custom-swiper-pagination .swiper-pagination-bullet-active {
      opacity: 1;
      background: #03579c;
    }
    .custom-swiper-pagination {
  text-align: center;
  margin-top: 20px; /* adjust spacing below the slider */
}
.about-banner{
    /* background-image: url(./assets/images/pngwing.com\(22\)\ 1\ \(1\).png);   */
    background-image: url(../images/pngwing.com\(22\)\ 1\ \(1\).png);
    background-repeat: no-repeat; 
}
.img-fluid {
  max-width: 100%;
  height: auto;
}


/* Mobile (â‰¤ 900px) */
@media (max-width: 900px) {
  /* Show only logo + side menu inline */
  .nav-logo-section {
    display: inline-block;
    width: auto;
 
  }

  .header-side-menu {
    display: inline-block;   /* now it's visible */
    /* vertical-align: middle; */
    /* margin-right: auto;        */
    cursor: pointer;
  }
.main-menu-logo img{
    max-width: 250px;
}
  /* Hide other desktop-only sections */
  .nav-menu-section,
  .admn-btn {
    display: none;
  }

  /* Align logo + menu in one row */
  .menu-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
  }
  .banner-hexagon{
    display: none;
  }
  .about-banner{
    background-image: none;
  }
}


@media (max-width: 776px) {
.testimonial-section_one {
    padding-top: 20px;
}
.testimonial-section_one .testimonial-right-img .spacer-inner{
    height:0px;
}
.cta-one .shape1{
    left:0px;
}
.cta-one__bg{
width:400px;
top:0px;
}
}

@media (max-width: 1400px) {
p.lead{
    font-size:14px;
}
ul.footer-menu-one li a{
    font-size:14px;
}


}


.feature-two {
  position: relative;
  display: block;
  z-index: 3;
  margin-top: -110px;
}

.feature-two .container {
  max-width: 1530px;
}

.feature-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.feature-two__img {
  position: relative;
  display: block;
  max-width: 340px;
  width: 100%;
}

.feature-two__img img {
  width: 100%;
  border-bottom-left-radius: 95px;
}

.feature-two__right {
  position: relative;
  display: block;
  width: 100%;
}

.feature-two__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:#0c4982;
  border-top-right-radius: 95px;
  padding: 48px 70px 26px;
}

.feature-two__list li {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.feature-two__icon-and-arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 68px;
}

.feature-two__icon-and-arrow .icon {
  position: relative;
  display: inline-block;
}

.feature-two__icon-and-arrow .icon span {
  position: relative;
  display: inline-block;
  font-size: 56px;
  color: var(--vibnt-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-two__list li:hover .feature-two__icon-and-arrow .icon span {
  transform: scale(0.9);
}

.feature-two__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--vibnt-white);
  border-bottom-left-radius: 10px;
}

.feature-two__arrow:hover {
  background-color: var(--vibnt-white);
  color: var(--vibnt-primary);
}

.feature-two__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(28, 27, 31, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(28, 27, 31, 0) 100%);
  opacity: 0.102;
  border-bottom-left-radius: 10px;
}

.feature-two__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 26px;
}

.feature-two__title a {
  color: var(--vibnt-white);
}

.feature-two__title a:hover {
  color: var(--vibnt-base);
}


 .side-buttons {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 1000;
    }

    /* Each Button */
    .side-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: #02356b;
      color: #fff;
      margin: 6px 0;
      text-decoration: none;
      font-size: 24px;
      border-radius: 10px 0 0 10px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    /* Hover effects for button */
    .side-buttons a:hover {
      background: #014286;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transform: scale(1.05);
    }

    /* Icon hover effect */
    .side-buttons a i {
      transition: transform 0.3s ease;
    }

    .side-buttons a:hover i {
      transform: rotate(10deg) scale(1.2);
    }

    /* Sliding Text */
    .side-buttons a span {
      position: absolute;
      right: 55px;
      background: #013063;
      color: #fff;
      padding: 12px 18px;
      white-space: nowrap;
      border-radius: 8px 0 0 8px;
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.3s ease;
      font-size: 15px;
    }
.fa-phone{
    font-size:14px;
}
    .side-buttons a:hover span {
      opacity: 1;
      transform: translateX(0);
      background: #0056b3;
    }






    /* Hidden template list */
    .notification-list {
      display: none;
    }
    /* Notification container fixed at right */
    .notification-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    /* Each notification */
    .notification {
      background: #1e1e1e;
      border-left: 4px solid #0af;
      padding: 12px 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      width: 220px;
      opacity: 0;
      transform: translateX(50px);
      animation: slideIn 0.5s forwards;
    }

    .notification h4 {
      margin: 0 0 5px;
      color: #0af;
      font-size: 16px;
    }

    .notification p {
      margin: 0;
      font-size: 14px;
      color: #ccc;
    }

    /* Slide-in animation */
    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Slide-out animation */
    @keyframes slideOut {
      to {
        opacity: 0;
        transform: translateX(50px);
      }
    }

    @media (max-width: 776px) {
     .patner-slide-item-one img {
    object-fit: cover;
    height: 64px;
    transition: all 0.5s;
}
.patner-slide-item-one{
    height:70px;
}

    }


    .custom-notif-wrapper {
  position: fixed;
  bottom: 20px;
  right: 0px;
  width: 270px;
  /* background: #111; */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.4); */
  overflow: hidden;
  z-index: 9999;

  color: #ddd;
}

/* Header */
.custom-notif-header {
  background: #1a1a1a;
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.custom-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/* Container */
.custom-notif-container {
  height: 140px; /* 2 items at once */
  overflow: hidden;
  position: relative;
}

/* List */
.custom-notif-list {
  display: flex;
  flex-direction: column;
  animation: customSlideUp 12s linear infinite;
}

/* Items */
.custom-notif-item {
  padding: 10px;
  background: #1a1a1a;
  margin: 5px 10px;
  border-radius: 10px;
  border-left: 4px solid #0af;
}
.custom-notif-item h4 {
  margin: 0;
  color: #00aaff;
  font-size: 16px;
}
.custom-notif-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #ccc;
}

/* Animation */
@keyframes customSlideUp {
  0% { transform: translateY(0); }
  20% { transform: translateY(0); }
  25% { transform: translateY(-70px); }   /* one item height */
  45% { transform: translateY(-70px); }
  50% { transform: translateY(-140px); }
  70% { transform: translateY(-140px); }
  75% { transform: translateY(-210px); }
  95% { transform: translateY(-210px); }
  100% { transform: translateY(0); }  /* Loop back */
}



.sk-edu-section {
position: relative;
overflow: hidden;
padding-block: clamp(2rem, 5vw, 5rem);
}


/* Background abstract shape */
.sk-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c4982; /* fallback color */
  clip-path: polygon(0 0, 60% 0, 50% 100%, 0 100%);
  z-index: 0;
  overflow: hidden; /* optional */
}

.sk-bg-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://5.imimg.com/data5/SELLER/Default/2023/11/358171308/AU/YW/QI/65567988/medicine-drop-copy-copy-500x500.jpg') center/cover no-repeat;
  opacity: 0.2; /* adjust for less opacity */
  z-index: -1; /* behind the main shape */
}
.sk-title{
    color: #002035;
}
/* keep content above shapes */
.sk-edu-card {
position: relative;
z-index: 2;
background: #fff;
border-radius: var(--sk-radius);
box-shadow: 0 12px 30px rgba(10, 30, 66, 0.12);
padding: clamp(1rem, 1.2rem + 1vw, 1.75rem);
}


/* --- Ensure equal height --- */
.sk-edu-card .row {
display: flex;
align-items: stretch;
}


.sk-edu-card .col-lg-5,
.sk-edu-card .col-lg-7 {
display: flex;
flex-direction: column;
}


.sk-visual,
.sk-edu-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}


/* --- LEFT: IMAGE PANEL --- */
.sk-visual {
position: relative;
border-radius: calc(var(--sk-radius) * 0.9);
overflow: hidden;
}


.sk-visual img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .7s cubic-bezier(.2,.75,.2,1), filter .7s ease;
}


.sk-visual:hover img {
transform: scale(1.06);
filter: brightness(1.1);
}

/* awards and achievements */
.sk-awards-section {
    background: #fafafa;
    padding: clamp(2rem, 5vw, 4rem) 0;
  }
  .sk-awards-title .sk-eyebrow {
    color: #0d2b5b;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .sk-awards-title .sk-title {
    font-weight: 800;
  }
  .sk-copy {
    color: #4f5b6b;
    text-align:justify;
  }
  .sk-awards-icons {
    display: flex;
    flex-wrap: wrap;
    /* gap: 1rem; */
    justify-content: center;
  }
  .sk-award-item {
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
  }
  .sk-award-badge {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
  }
  .sk-award-badge .wreath {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .sk-award-badge img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .4s ease;
  }
  .sk-award-item:hover img {
    transform: translate(-50%, -50%) scale(1.15);
  }
  .sk-award-item h6 {
    font-weight: 500;
    margin-top: .75rem;
    color: #0b1e3a;
  }
  .sk-award-badge:hover .wreath {
  animation: spin 3s linear infinite;
}

/* Spin animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



  .const_services_wrapper {
	float: left;
	width: 100%;
	padding-top: 100px;
	padding-bottom: 50px;
}

.const_service_image {
	text-align: center;
}

.const_service_box_wrapper {
	padding: 35px;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.const_service_box_wrapper:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.const_service_box_wrapper h1 a {
	font-size: 26px;
	text-transform: capitalize;
	font-weight: 500;
	padding: 15px 0;
	display: block;
}

.const_service_box_wrapper h1 a:hover {
	color: #ff6666;
}

.const_service_shape {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.const_service_shape svg {
	width: 100%;
}

.const_service_box_wrapper img {
	margin-bottom: 5px;
}

/* programs */

.programs-section{
    /*background-color: var(--e-global-color-very-light-gray-mostly-white);*/
    background-image: url('../images/imgbg.jpg');
    position: relative;
    padding: 50px 0;
}
.programs-section .programs-toplayer{
    position: absolute;
    left: -24px;
    top: 0;
}
.programs-section .programs-bottomlayer{
    position: absolute;
    right: 0;
    bottom: 0;
}
.programs-section .programs-circleimage{
    position: absolute;
    left: -146px;
    bottom: 70px;
}
.programs-section .programs_boxcontent{
    box-shadow: 1px 1px 50px rgb(0 0 0 / 10%);
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    background: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}
.programs-section .programs_boxcontent:hover{
    background: #ffffff;
}
.programs-section .programs_boxcontent:hover h4{
    color: var(--e-global-color-white);
}
.programs-section .programs_content{
    text-align: center;
}
.programs-section .programs_content h2{
    margin-bottom: 18px;
}
.programs-section .programs_content p{
    margin-bottom: 42px;
    padding: 0 135px;
}
.programs-section .programs_boxcontent .upper_portion{
    position: relative;
}
.programs-section .programs_boxcontent .upper_portion figure img{
    /* min-height: 220px; */
    border-radius: 10px 10px 0 0;
}
.programs-section .programs_boxcontent .upper_portion .image_content {
    background:#000219;
    box-shadow: 8px 2px 20px rgb(0 0 0 / 10%);
    border-radius: 100px;
    height: 105px;
    width: 105px;
    line-height: 105px;
    text-align: center;
    left: 104px;
    bottom: -50px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}
.programs-section .programs_boxcontent .upper_portion .image_content:hover {
background-image: linear-gradient(
  to right,
    #0c4982,  /* base navy */
  #155d9a,  /* ocean blue */
  #1d72b3,  /* bright blue */
  #3498db  
);
 transform: translateY(-5px);
}
.programs-section .programs_boxcontent .lower_portion_wrapper {
    text-align: center;
    padding:20px;
    /*padding: 70px 45px 36px;*/
    border-radius: 0 0 10px 10px;
    border-top: none;
}
.lower_portion a{
    color: #002035;
}
.progrm-img img{
    /*min-height:220px;*/
}

.box{
   overflow:hidden;
 	background: transparent;
 	position: relative;
 	-webkit-transition: all .35s ease;
 	transition: all .35s ease;
    border:1px solid grey;
    padding: 10px;
 }
 .box:after,
 .box:before {
 	content: "";
 	width: 100%;
 	height: 100%;
 	position: absolute;
 	top: 0;
 	left: 0;
 	background: #69696961;
 	border-left: 3px solid #fff;
 	border-right: 3px solid #fff;
 	opacity: .9;
 	z-index: 1;
 	-webkit-transition: all .35s ease;
 	transition: all .35s ease
 }
 .box img {
    height:300px;
    width: 700px;
 	/* height: auto;
 	width: 100%; */
 }
 .box:before {
 	-webkit-transform: skew(45deg) translateX(-155%);
 	transform: skew(45deg) translateX(-155%)
 }
 /*.box:hover:before {*/
 /*	-webkit-transform: skew(45deg) translateX(-55%);*/
 /*	transform: skew(45deg) translateX(-55%)*/
 /*}*/
 .box:after {
 	-webkit-transform: skew(45deg) translateX(155%);
 	transform: skew(45deg) translateX(155%)
 }
 /*.box:hover:after {*/
 /*	-webkit-transform: skew(45deg) translateX(55%);*/
 /*	transform: skew(45deg) translateX(55%)*/
 /*}*/
 .box img {
 	-webkit-transition: all .35s ease;
 	transition: all .35s ease
 }
 .box:hover img {
 	opacity: .5
 }
 .box .box-content {
 	position: absolute;
 	top: 50%;
 	left: 50%; 	
 	opacity: 0;
 	z-index: 2;
 	-webkit-transform: translate(-50%, -50%) scale(.5);
 	transform: translate(-50%, -50%) scale(.5);
 	-webkit-transition: all .35s ease;
 	transition: all .35s ease
 }
 
 .box:hover .box-content {
 	-webkit-transform: translate(-50%, -50%) scale(1);
 	transform: translate(-50%, -50%) scale(1);
 	opacity: 1
 }
 .box .post,
 .box .title {
   text-align:center;
 	font-size: 18px;
 	font-weight: 600;
 	letter-spacing: 1px;
 	text-transform: uppercase;
 	background: #3c3c3c;
 	border: 2px solid #fff;
 	color: #fff;
 	padding: 15px 20px;
 	margin: 0
 }
 .box .post{
 	text-transform: capitalize
 }
 .box .post {
 	display: block;
 	font-size: 14px;
 	font-weight: 400;
 	padding: 5px 10px;
 	margin-top: 15px
 }
 @media (max-width: 1400px) {
 .box img{
    height: auto;
    width: auto;
}
 }



 



.news-ticker {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    /* background: rgba(0,0,0,0.6);  */
    color: white;
    border-radius: 0  8px 8px 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Title on Top Right */
.news-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.6);
    color: #fff;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Title with Icon */
.news-title {
    background: #036db4;
    color:white;
    padding: 8px 20px;
    font-weight: bold;
    /*border-radius: 50px;*/
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-left: 10px;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-title i {
    font-size: 16px;
}

/* Bell Animation */
.bell-icon {
    animation: ring 2s infinite;
    transform-origin: top center;
}

@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    70% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

.notification-box {
    z-index:999;
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 230px;
    /* background: #111; */
    color: #fff;
    border-radius: 8px;
    /* box-shadow: -2px 0 8px rgba(0,0,0,0.4); */
    overflow: hidden;
    transition: height 0.5s ease; /* smooth height change */
}

/* Header */
.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 1px solid #333;
}

.close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Content */
.notif-content {
    /* padding: 10px; */
    position: relative;
}

/* Each Notification Item */
.notif-item {
    display: none;
    background: #1e1e1e;
    border-left: 3px solid #00aaff;
    padding: 10px;
    border-radius: 6px;
}

.notif-item.active {
    display: block;
}

.notif-item h4 {
    font-size:18px;
    margin: 0 0 4px;
    color: #00aaff;
}

.notif-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.contct-btn
{
      display:flex;
    justify-content:left;
    align-items:center;
}



/* Service */

.service-section {
    background-image: url('../images/offer-toplayer.png');
    background-repeat: no-repeat;
    position: relative;
    padding: 130px 0 150px;
    overflow: hidden;
}
.service-section .service-leftlayer{
    position: absolute;
    top: 0;
    left: 116px;
}
.service-section .service-rightlayer{
    position: absolute;
    bottom: -20px;
    right: 112px;
}
.service-section .service-dotimage{
    position: absolute;
    left: 334px;
    bottom: 102px;
}
.service-section .service-box h4{
    padding-right: 65px;
}
.service-section .service-box p{
    margin-bottom: 10px;
    color: var(--e-global-color-text);
}
.service-section .service_contentbox .box-top {
    padding-top: 37px;
}
.service-section .service_contentbox .service-box {
    background: var(--e-global-color-white);
    border-radius: 10px;
    padding: 38px 24px 28px 30px;
    margin-bottom: -12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    box-shadow: 1px 21px 46px rgb(0 0 0 / 4%);
}
.service-section .service_contentbox .service-box:hover {
    /* background:#0c4982; */
    transform: translateY(-5px);
}
.service-section .service-box:hover h4{
    color: var(--e-global-color-white);
} 
.service-section .service-box:hover p{
    color: var(--e-global-color-white);
} 
.service-section .service_contentbox .service-box figure {
    /* background: #30aa9d2e; */
    background: #001123;
    border-radius: 100px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    margin-left: 4px;
    transition: all 0.3s ease-in-out;
}

.service-marketicon img{
    height:40px;
    width:40px;
    transition: all 0.3s ease-in-out;
}
.service-section .service_contentbox .service-box figure:hover {
    transform: translateY(-5px);
}
.service-section .service-box:hover figure{
   background: linear-gradient(
  to right,
    #0c4982,  /* base navy */
  #155d9a,  /* ocean blue */
  #1d72b3,  /* bright blue */
  #3498db  
);
}
.service-section .service-box:hover img{
    filter: brightness(0) invert(1);
}
.service-section .service-box .circle {
    background: #d9d9d9;
    border-radius: 100px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    margin-left: -2px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service-box .circle:hover {
    transform: translateY(-5px);
}
.service-section .service-box:hover .circle {
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 51%, #ffffff 100%);
}
.service-section .service-box .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: #001623;
}
.service-section .service-box:hover .circle:before {
    color: #30aa9d;
}
.service-section .service_content .service-rightcircle{
    position: absolute;
    right: -38px;
    top: 162px;
}
.service-section .service_content{
    padding-left: 48px;
    padding-top: 194px;
}
.service-section .service_content h2{
    margin-bottom: 18px;
    padding-right: 10px;
}
.service-section .service_content p{
    margin-bottom: 12px;
}
.service-section .service_content .text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--e-global-color-primary);
}
.service-section .service_content .text:hover{
    color: #30aa9d;
}
.service-section .service_content ul li .circle {
    background: linear-gradient(90deg, rgb(114 193 137) 0%, rgb(58 172 155) 100%);
    border-radius: 100px;
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    margin-right: 12px;
    margin-left: 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_content ul li .circle:before {
    font-size: 12px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.service-section .service_content .text1 {
    margin-bottom: 36px;
}
.service-section .service_content .get_started{
    background-image: linear-gradient(to right, #7bc685, #67c08c, #55b993, #43b299, #35ab9d);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 30px;
    padding: 15px 25px 15px 43px; 
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_content .get_started figure {
    display: inline-block;
    margin-left: 16px;
}
.service-section .service_content .get_started:hover{
    background-image: linear-gradient(to right, var(--e-global-color-desaturated-blue) 0%, var(--e-global-color-desaturated-blue) 100%);
}


@media (max-width: 776px) {
.testi-caption{
    margin-top: 20px;
    margin-bottom: 10px;
}
}


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

.programs-section{padding: 65px 0 70px;}
.programs-section.offer-toplayer img {width: 600px;}
.programs-section.offer-bottomlayer img {width: 600px;}
.programs-section.offer_content h2 {margin-bottom: 10px;}
.programs-section.offer_content p {margin-bottom: 25px; padding: 0 50px;}
.programs-section.offer_boxcontent .upper_portion figure img {width: 210px;}
.programs-section.offer_boxcontent .upper_portion .image_content {height: 75px; width: 75px; line-height: 75px; left: 68px; bottom: -34px;}
.programs-section.offer_boxcontent .upper_portion .image_content figure img {width: 40px;}
.programs-section.offer_boxcontent .upper_portion .image_content .offer-icon2 img {width: 30px;}
.programs-section.offer_boxcontent .lower_portion_wrapper {padding: 50px 6px 25px;}

}


 .why-program-section {
      padding: 60px 0;
    }
    .why-program-box {
      background-color: #0b3c5d; /* Dark Blue */
      color: #fff;
      padding: 40px;
      border-radius: 0;
    }
    .why-program-box h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .why-program-box h3 {
      font-weight: 600;
      margin-top: 25px;
      margin-bottom: 15px;
    }
    .why-program-highlight {
      background-color: #e7b54b; /* Golden */
      border-radius: 0;
      padding: 20px;
      text-align: center;
    }
    .why-program-img img {
      max-width: 100%;
      height: auto;
    }

.programs-section:hover .programs-section .programs_boxcontent .lower_portion_wrapper .lower_portion .lower_portion_wrapper .lower_portion h5 a{
    background-color:red;
    
    scale: 1.1;

}

.upper_portion img {
  transition: transform 0.5s ease;
}

.upper_portion:hover img {
  transform: scale(1.05); /* zoom image slightly */
}

.lower_portion_wrapper {
  transition: background-color 0.4s ease;
}

.lower_portion_wrapper h5 a {
  color: #222;
  text-decoration: none;
  transition: color 0.4s ease;
}

.lower_portion_wrapper:hover {
  background-color: #036db4; /* red background on hover */
}

.lower_portion_wrapper:hover h5 a {
  color: #fff; /* white text on hover */
}

/* moving effect for whole card */
.upper_portion,
.lower_portion_wrapper {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.upper_portion:hover,
.lower_portion_wrapper:hover {
  transform: translateY(-8px); /* lift up on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

    .custom-card {
  position: relative;
  background: #0c4982;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

/* pseudo-element for background image */
.custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://static.vecteezy.com/system/resources/thumbnails/008/139/371/small/asian-woman-scientist-researcher-technician-or-student-conducted-research-in-laboratory-photo.jpg') center/cover no-repeat;
  opacity: 0; /* hidden initially */
  transition: opacity 0.4s ease;
  z-index: 0;
}

.custom-card:hover::before {
  opacity: 0.2; /* show with less opacity on hover */
}
    .custom-card h3 {
        color: white;
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
    }
    .custom-card p {
        color:white;
      font-size: 14px;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }
    .custom-card .btn {
      position: relative;
      z-index: 2;
    }
    .card-number {
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 80px;
      font-weight: 800;
      color: rgba(255,255,255,0.05);
      z-index: 1;
      user-select: none;
    }

    /* InnerPages */
    
/* Academics */

     .page-header-section {
    padding-top: 136px;
    background-image: url(https://media.istockphoto.com/id/1225143466/photo/medical-worker-take-test-tube.jpg?s=612x612&w=0&k=20&c=8JvpHSjLlGPiuiS9QvQNMw3wGgHTOkOjsFvhFEBolEM=);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-color: rgb(0 0 0 / 90%);
    background-blend-mode: overlay;
}
.page-header-section::after{
    content: "";
    position: absolute;
    bottom: 118px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #E0E0E02B;
}
.page-header-heading {
    margin-bottom: 57px;
    color:  #036db4;
    padding-left: 28px;
    border-left: 1px solid #E0E0E02B;
}
.page-header-heading h2{
    font-size: 63px;
    margin-bottom: 38px;
    color: var(--uniqo-light);
}
.page-header-heading p {
    text-align: justify;
    max-width: 70%;
    margin-bottom: 0;
}
ul.breadcrumb {
    column-gap: 10px;
    padding: 45px 0;
    font-size: 18px;
    margin-bottom: 0;
}
ul.breadcrumb li a, ul.breadcrumb li span{
    color:white;
}
ul.breadcrumb li a:hover{
    color: #036db4;
}
.about-lower {
    max-width: 1780px;
    margin: auto;
    overflow: hidden;
}
.about-why-choose{
    border-radius: 35px;
    margin: 0 60px;
    margin-top: 150px;
}
.about-team{
    padding-top: 660px;
    margin-top: -550px;
}
.about-why-choose-two{
    border-top: 1px solid #D7D7D7;
}
.about-why-choose-three{
    background-color: transparent;
}
.cta-section-three {
    text-align: center;
    padding: 100px 0;
    background-image: url(https://www.shutterstock.com/image-photo/young-scientists-conducting-research-investigations-260nw-2149947783.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.cta-section-three .heading-title {
    color: var(--uniqo-light);
    margin-bottom: 36px;
}
.cta-section-three::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #333939 15.26%, #131414 50.68%, #333939 85.55%);
    opacity: 0.9;
}
.depts, .facilities1{
    background-image: url(../images/offer-toplayer.png);
    background-repeat:no-repeat;
}


.dept-innerr-section{
    background-image: url('../images/offer-toplayer.png');
    background-repeat: no-repeat;
}
.dept-container{
    width:90%;
}

/* Inner-side-Menu */

 .inner-nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
      max-width: 260px;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
@media (max-width: 991px) {
  .inner-nav ul {
    max-width: 100%;
  }
    
}
    .inner-item {
      position: relative;
      background: #ccc;
      width: 100%;
      height: 70px;
      margin-bottom: 2px;
      overflow: hidden;
      border-radius: 5px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Pink background block */
    .inner-bg {
      width: 70px;
      height: 70px;
      position: absolute;
      background: #0c4982;
      color: #fff;
      z-index: 2;
      transition: all 0.4s ease-in-out;
    }

    /* Title container */
    .inner-title {
      position: absolute;
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      z-index: 3;
    }

    /* Icon */
    .inner-icon {
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: transform 0.6s ease;
      z-index: 3;
    }
  
    /* Icon rotation on hover */
    .inner-item:hover .inner-icon {
      transform: rotate(360deg);
    }

    /* Hover background expansion */
    .inner-item:hover .inner-bg {
      width: 100%;
    }

    /* Text */
    .inner-title a {
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 50px;
      font-size: 17px;
      font-weight: 600;
      color: #0c4982;
      text-decoration: none;
      height: 70px;
      transition: all 0.4s ease;
    }
    @media (min-width: 1000px) and (max-width: 1300px) {
        .inner-title a {
            font-size: 15px;
            padding-left: 20px;
            height: 70px;
        }
    }

    .inner-item:hover a {
      font-weight: bold;
      color: #fff;
    }

    /* ACTIVE STATE */
    .inner-item.inner-active .inner-bg {
      width: 100%;
      background: #0c4982;
    }

    .inner-item.inner-active a {
        color:white;
      font-weight: bold;
    }
    /* Responsive adjustments */
    @media (max-width: 576px) {
      .inner-item {
        height: 60px;
      }
      .inner-bg,
      .inner-icon {
        width: 60px;
        height: 60px;
      }
      .inner-title a {
        font-size: 14px;
        padding-left: 75px;
        height: 60px;
      }
    }
    .sidemenu-left{
        margin-top:10px;
    }
 .dept-right{
        padding: 50px 0;
 }
    .dept-content{
        padding: 25px;
        background-color: #f9f9f9;
    }
    .equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment-list li {
  font-size: 15px;
  font-weight: 500;
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
}

.equipment-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #0c4982; /* blue icon */
  font-size: 16px;
}

.team-area {
    position: relative;
    overflow: hidden;
}

.team-item {
    position: relative;
    background-color: grey;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 60px 60px 60px 0;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-item:hover {
    transform: translateY(-10px);
}

.team-img img {
    border-radius: 50px 50px 50px 0;
}

.team-content {
    margin-top: 15px;
    position: relative;
}

.team-bio h5 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.team-bio h5 a {
    color: var(--kmct-dark-text);
    transition: var(--transition);
}

.team-bio span {
    font-size: 13px;
    font-weight: 500;
    color: var(--kmct-black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-bio h5 a:hover {
    color: var(--theme-color);
}

.team-social-btn {
    position: absolute;
    right: -5px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding-left: 12px;
    border-radius: 50px 50px 0 50px;
    cursor: pointer;
    background: var(--theme-color);
    color: var(--color-white);
    transition: var(--transition);
}

.team-item:hover .team-social-btn {
    background: #0c4982;
}

.team-social {
    position: absolute;
    margin-bottom: 10px;
    text-align: center;
    top: 50px;
    right: 0px;
    bottom: 0;
    opacity: 0;
    transition: var(--transition);
}

.team-item:hover .team-social {
    opacity: 1;
    right: 30px;
}

.team-social a {
    display: block;
    color: #0c4982;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 10px;
    border-radius: 50px 50px 50px 0;
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-social a:hover {
    background: #0c4982;
    color: var(--color-white);
}

.team-area2 .team-item {
    padding: 0px 30px 30px 30px;
    background:#ececec61;
    box-shadow: none;
    overflow: unset;
}

.team-area2 .team-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    border-radius: 15px;
    background: var(--color-white);
    box-shadow: var(--box-shadow) !important;
    z-index: -1;
}

.team-area2 .team-img img {
    border-radius: 50px 50px 50px 0;
}

.team-area2 .team-content {
    margin-top: 30px;
}

.team-area2 .team-social-btn {
    bottom: 39px;
}

.team-area2 .team-social-btn {
    right: 0;
}
.team-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.team-item:hover {
  transform: translateY(-10px); /* moves the whole card up */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-item .team-img img {
  transition: transform 0.5s ease;
}

.team-item:hover .team-img img {
  transform: scale(1.1); /* zoom-in effect on image */
}


.team-single-img img {
    border-radius: 50px 50px 50px 0;
}

.team-details {
    padding: 45px;
    background: #ececec61;
    border-radius: 50px 50px 50px 0;
}

.team-details strong {
    color: var(--theme-color2);
}

.team-details-info {
    margin: 20px 0;
}

.team-details-info li {
    margin-bottom: 10px;
}

.team-details-info a:hover {
    color: var(--theme-color2);
}

.team-details-info a i {
    margin-right: 10px;
    color: var(--theme-color2);
}

.team-details-social a {
    margin-right: 15px;
    font-size: 20px;
    color: var(--theme-color2);
    display: inline-block;
    transition: all .5s ease-in-out;
}

.team-details-social a:hover {
    color: var(--theme-color);
}

.biography {
    padding-right: 20px;
    margin-bottom: 30px;
}

.team-skill .progress-box h5 {
    color: var(--color-dark)
}

.team-skill .pull-right {
    color: var(--theme-color2);
}

.team-skill .progress-box .progress {
    background: var(--theme-bg-light);
}



/* Gallery */
    .gallery-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }
    .gallery-item {
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.6s ease-in-out;
    }
    .gallery-item.show {
      opacity: 1;
      transform: scale(1);
    }
    /* Tabs Styling */
    .nav-pills .nav-link {
      border: 1px solid #000;
      border-radius: 0;
      margin: 0 5px;
      font-weight: 600;
      margin-bottom:10px;
      color: #000;
    }
    .nav-pills .nav-link.active {
      background-color: #0c4982;
      color: #fff !important;
    }
    .gallery-item img{
          border-radius: 50px 50px 50px 0;
           box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
              0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
      .gallery-item:hover .gallery-img {
      transform: scale(1.05);
    }


    /* .contct-container{
        width: 60%;
    }
    .contact-info {
      background: #fff;
      border-radius: 50px 50px 50px 0;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .contact-info i {
      font-size: 2rem;
      color: #036db4;
      margin-bottom: 15px;
    }
    .contact-info:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .form-control:focus {
      border-color: #0d6efd;
      box-shadow: none;
    }
    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .captcha-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1rem;
    }
    .captcha-text {
      background: #e9ecef;
      padding: 10px 20px;
      font-weight: bold;
      font-size: 20px;
      letter-spacing: 3px;
      border-radius: 6px;
      user-select: none;
      font-family: monospace;
    }
    .refresh-btn {
      border: none;
      background: transparent;
      color: #0d6efd;
      font-size: 20px;
      cursor: pointer;
    } */

    .contact-page-sec{
        background-image: url('../images/offer-toplayer.png');
        background-repeat: no-repeat;
    }
    .contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
      margin-bottom: 10px;
       box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border-radius: 50px 50px 50px 0;
}
  .contact-info:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
    border-radius: 50px 50px 50px 0;    
  background: #071c34;
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}  
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #036db4;
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
 
  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: #ededed none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
  background: #ededed none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #ededed none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
    padding: 20px 15px 0;
}
.captcha-text {
  /* background: #f1f1f1; */
  padding: 8px 16px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 3px;
  border-radius: 6px;
  user-select: none;
  font-family: monospace;
}
.refresh-btn {
  border: none;
  background: transparent;
  color: #0d6efd;
  font-size: 18px;
  cursor: pointer;
}









.about-section {
  background: #f9fafc; /* Light academic tone */
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0c4982;
  border-bottom: 3px solid #0c4982;
  display: inline-block;
  padding-bottom: 6px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-image img {
  border: 4px solid #0c4982;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}
/* Card wrapper */
.director-card {
    background: #f8f9fa; /* light background */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .director-card:hover {
    transform: translateY(-5px);
  }
  
  /* Profile Image wrapper */
  .director-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid navy;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Profile Image */
  .director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Name */
  .director-name {
    color: navy;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  /* Position */
  .director-position {
    display: block;
    color: #0d3b66; /* lighter navy */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  /* Description */
  .director-description {
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
    text-align: justify;
    margin-top: 10px;
  }
  
  .intro-img {
  width: 128px;
  height: 128px;
  object-fit: cover;      /* keeps image cropped nicely */
  border-radius: 50%;     /* makes it circular — remove if not needed */
  display: block;
  margin: 0 auto 10px;    /* centers and adds space below */
}

/* Overlay with Blue Gradient */
body.popup-open,
html.popup-open {
  overflow: hidden !important;
  height: 100%;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, rgba(3, 109, 180, 0.9), rgba(0, 20, 50, 0.95));*/
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(5px);
  transition: all 0.7s ease;
}

/* Show Popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 100, 255, 0.4);
  animation: popupIn 0.8s ease forwards;
  transform: scale(0.7) rotateX(40deg);
  max-width: 90%;
  width: 450px;
}

/* Popup Image */
.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.8s ease;
}
.popup-content:hover img {
  transform: scale(1.03);
}

/* Always Visible Blue Close Button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  /*background: linear-gradient(135deg, #007bff,  #036db4);*/
  background:#0c4982;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  cursor: pointer;
  /*box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);*/
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  z-index: 10; /* ensures it stays above the image */
}

/* Hover Animation: Smooth rotation + glow */
/*.popup-close:hover {*/
/*  transform: rotate(360deg) scale(1.1);*/
/*  box-shadow: 0 0 25px rgba(0, 200, 255, 1);*/
  /*background: linear-gradient(135deg, #00bfff, #007bff);*/
/*  background:black;*/
/*}*/

/* Popup Entrance Animation */
@keyframes popupIn {
  0% {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .popup-content {
    width: 90%;
  }
}
