body.index-page,
body.index-page h1,
body.index-page h2,
body.index-page h3,
body.index-page h4,
body.index-page h5,
body.index-page h6,
body.index-page p,
body.index-page a,
body.index-page span,
body.index-page button,
body.index-page input,
body.index-page textarea,
body.index-page select,
body.index-page label,
body.index-page li,
body.index-page small,
body.index-page strong,
body.index-page em,
body.index-page blockquote {
    font-family: "Geist Variable", "Geist", sans-serif !important;
}

html {
    scroll-padding-top: 110px;
}

#home,
#about,
#services,
#projects,
#why-us,
#contact {
    scroll-margin-top: 110px;
}

/*** Hero Section Start ***/
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(30, 10, 60, 0.88) 0%,
            rgba(50, 15, 70, 0.85) 40%,
            rgba(80, 20, 60, 0.80) 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#ee3a55,#2b3073);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-badge-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(239, 55, 81, 0.45);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.hero-title-gradient {
    background: linear-gradient(135deg,#ee3a55,#2b3073);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', serif;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.7;
}

.hero-btn-primary {
    background: linear-gradient(135deg,#ee3a55,#2b3073) !important;
    color: #fff !important;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 55, 81, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/*** Hero Section End ***/

/*** Hero Values Bar Start ***/
.hero-values-bar {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #ffffff;
    padding: 22px 30px;
    z-index: 3;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.hero-value-item {
    text-align: center;
    padding: 5px 10px;
}

.hero-value-title {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
}

.hero-value-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .hero-values-bar {
        padding: 15px 0;
    }

    .hero-value-title {
        font-size: 13px;
    }

    .hero-value-text {
        font-size: 11px;
    }
}

/*** Hero Values Bar End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: linear-gradient(135deg,#ee3a55,#2b3073);
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: linear-gradient(75deg,#ee3a55,#2b3073) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.navbar .navbar-toggler i {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {
        top: -400px;
    }

    50% {
        right: -200px;
    }

    75% {
        top: -200px;
    }

    100% {
        top: -400px;
    }
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0% {
        left: 0px;
    }

    50% {
        left: 70px;
    }

    100% {
        left: 0px;
    }
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0% {
        left: -240px;
    }

    50% {
        left: -300px;
    }

    100% {
        left: -240px;
    }
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }

    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}

/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {
        top: -200px;
    }

    50% {
        right: -100px;
    }

    75% {
        top: -100px;
    }

    100% {
        top: -200px;
    }
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}

.about .about-stats {
    margin-top: 0.5rem;
}

.about .about-stat-card {
    /* min-height: 215px; */
    padding: 2rem 1.5rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(21, 32, 78, 0.08);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
}

.about .about-stat-icon {
    font-size: 2.35rem;
    line-height: 1;
    color: #ff4d67;
}

.about .about-stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #c13b69 0%, #7a4b8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about .about-stat-label {
    color: #6b7280;
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .about .about-stat-card {
        min-height: 190px;
        border-radius: 20px;
    }

    .about .about-stat-value {
        font-size: 2.5rem;
    }
}

/*** About End ***/

/*** Security Services Start ***/
.security-services {
    background: #fff;
}

.security-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.security-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.security-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.security-card-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .security-card {
        padding: 22px 18px;
    }
}

/*** Security Services End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    gap: 12px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-right: 0;
    background: #2b3073;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 40px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: #ef3751;
}

@media (max-width: 767.98px) {
    .project .project-carousel .project-item {
        padding-bottom: 8.5rem;
    }

    .project .project-carousel .project-item .project-img img {
        height: 300px;
        object-fit: cover;
    }

    .project .project-carousel .project-item .project-content {
        width: calc(100% - 44px);
        height: auto;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -32%);
        margin-bottom: 0;
        padding: 1.5rem !important;
        border-radius: 24px !important;
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    }

    .project .project-carousel .project-item .project-content .project-icon {
        margin-bottom: 0.9rem !important;
    }

    .project .project-carousel .project-item .project-content .project-icon i {
        font-size: 2.5rem !important;
    }

    .project .project-carousel .project-item .project-content .project-content-inner p {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 0.85rem !important;
    }

    .project .project-carousel .project-item .project-content .project-content-inner a.h4 {
        display: block;
        font-size: 1rem;
        line-height: 1.55;
    }

    .project .project-carousel .project-item .project-content .btn {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
}

/*** Project End ***/

/*** Why Choose Us Start ***/
.why-choose-us {
    background: #140934;
}

.why-choose-subtitle {
    font-weight: 700;
    color: #ef3751;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
}

.why-choose-card {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

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

.why-choose-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ee3a55,#2b3073);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(107, 47, 160, 0.3);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(107, 47, 160, 0.4);
}

.why-choose-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.why-choose-card-text {
    font-size: 14px;
    color: var(--bs-white);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .why-choose-title {
        font-size: 1.8rem;
    }

    .why-choose-card {
        padding: 20px 15px;
    }

    .why-choose-icon {
        width: 65px;
        height: 65px;
        font-size: 22px;
    }
}

/*** Why Choose Us End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover {
    border: none !important;
}

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before {
    width: 100% !important;
    height: 100% !important;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.2);
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share {
    margin-top: 0 !important;
}

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary) !important;
    transition: 0.5s;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before {
    width: 100% !important;
    height: 50% !important;
}

.team .team-item:hover .team-content .team-content-inner {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p {
    color: var(--bs-white) !important;
}

.team .team-item:hover .team-content .team-content-inner h4 {
    color: var(--bs-dark) !important;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

/*** Testimonial End ***/

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/*** Footer Start ***/
.brand-slider-section {
    background: #f7fafb
}

.brand-slider-subtitle {
    font-weight: 700;
    color: #ee3a55;
    font-size: 14px;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
}

.brand-slider-title {
    color: #121826;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.brand-slider {
    --brand-slide-width: 220px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 26px 0;
}

.brand-slider::before,
.brand-slider::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 110px;
    height: 100%;
    pointer-events: none;
}

.brand-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f6f8fc 0%, rgba(246, 248, 252, 0) 100%);
}

.brand-slider::after {
    right: 0;
    background: linear-gradient(270deg, #f6f8fc 0%, rgba(246, 248, 252, 0) 100%);
}

.brand-slide-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brand-scroll 36s linear infinite;
}

.brand-slider:hover .brand-slide-track {
    animation-play-state: paused;
}

.brand-slide {
    width: var(--brand-slide-width);
    min-width: var(--brand-slide-width);
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.brand-slide img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.brand-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes brand-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 767.98px) {
    .brand-slider {
        --brand-slide-width: 180px;
    }

    .brand-slider-title {
        font-size: 1.7rem;
    }

    .brand-slider::before,
    .brand-slider::after {
        width: 50px;
    }

    .brand-slide {
        height: 90px;
        padding: 0 14px;
    }

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

.footer {
    background: #0b0b0b;
    color: #a5adbb;
    padding-top: 5rem;
}

.footer .footer-main {
    padding-bottom: 3.5rem;
}

.footer .footer-brand {
    max-width: 420px;
}

.footer .footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer .footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer .footer-description {
    color: #a5adbb;
    font-size: 1rem;
    line-height: 1.7;
}

.footer .footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.footer .footer-links,
.footer .footer-contact-list {
    gap: 1rem;
}

.footer .footer-links a,
.footer .footer-contact-item {
    color: #a5adbb;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .footer-links a:hover,
.footer .footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer .footer-contact-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.footer .footer-contact-item span {
    display: block;
}

.footer .footer-contact-item i {
    color: #ffffff;
    font-size: 1.1rem;
    width: 22px;
    flex-shrink: 0;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.footer .footer-bottom p {
    color: #8f96a3;
    font-size: 0.98rem;
}

@media (max-width: 991.98px) {
    .footer {
        padding-top: 4rem;
    }

    .footer .footer-main {
        padding-bottom: 2.5rem;
    }
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: black !important;
}

/*** copyright end ***/
