/********** Template CSS **********/
:root {
    --primary: #0d6efd;
    --secondary: #525368;
    --light: #E8F0FE;
    --dark: #0D2135;
}

/*** Reveal on scroll — smooth CSS transitions replacing WOW ***/
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/*** Display sizing — standardized ***/
.display-1 {
    font-size: 3rem;
}
.display-3 {
    font-size: 2.5rem;
}
.display-4 {
    font-size: 2.25rem;
}
.display-5 {
    font-size: 1.75rem;
}
.carousel-caption h1.display-1 {
    font-size: 2.5rem;
}
.page-header h1.display-3 {
    font-size: 2.25rem;
}
.facts h1.display-4 {
    font-size: 2.5rem;
}
.about-section h1.display-1 {
    font-size: 4rem;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2rem;
    }
    .display-3 {
        font-size: 1.75rem;
    }
    .display-4 {
        font-size: 1.5rem;
    }
    .display-5 {
        font-size: 1.35rem;
    }
    .carousel-caption h1.display-1 {
        font-size: 1.5rem;
    }
    .page-header h1.display-3 {
        font-size: 1.5rem;
    }
    .facts h1.display-4 {
        font-size: 1.75rem;
    }
    .carousel-caption {
        padding: 1rem;
    }
    .navbar-brand h1 {
        font-size: 1.25rem;
    }
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .page-header.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .service-text.p-5 {
        padding: 1.5rem !important;
    }
    .service-text h4 {
        font-size: 1.1rem;
    }
    .team-text {
        width: calc(100% - 20px);
        bottom: 20px;
        padding: 1rem;
    }
    .team-text h4 {
        font-size: 1rem;
    }
    .quote .p-sm-5 {
        padding: 1.5rem !important;
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand,
    .navbar a.btn {
        height: 60px;
    }
    .navbar-brand h1 {
        font-size: 1.25rem;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.back-to-top,
.back-to-top:focus,
.back-to-top:active {
    background: #ffffff !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

.back-to-top:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Page Transition ***/
#page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility 0s linear .35s;
}

#page-transition.active {
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility 0s linear 0s;
}


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

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar — Glassmorphism ***/
.navbar.sticky-top {
    top: -100px;
    transition: top .5s, background .4s, box-shadow .4s, backdrop-filter .4s;
    background: rgba(255,255,255,.98);
}

.navbar.sticky-top.shadow-sm {
    top: 0 !important;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(13, 33, 53, .08) !important;
    border-bottom: 1px solid rgba(13,110,253,.06);
}

.navbar .navbar-brand {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand i {
    font-size: 1.4rem;
    transition: transform .3s;
}

.navbar .navbar-brand:hover i {
    transform: rotate(-15deg) scale(1.1);
}

.navbar .navbar-brand h1 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #4a9eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.5px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 4px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: color .3s, transform .3s;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link.active {
    font-weight: 600;
}

.navbar .navbar-nav .nav-link:not(.active):hover {
    transform: translateY(-1px);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 6px;
    transition: transform .3s;
}

.navbar .nav-item:hover .dropdown-toggle::after {
    transform: rotate(-180deg);
}

.navbar .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 12px 28px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(13,110,253,.25);
}

.navbar .btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    box-shadow: 0 6px 24px rgba(13,110,253,.4);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .navbar.sticky-top {
        background: rgba(255,255,255,.98);
    }

    .navbar.sticky-top.shadow-sm {
        background: rgba(255,255,255,.98);
        backdrop-filter: none;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
        background: var(--light);
        border-radius: 8px;
        font-weight: 600;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        padding: 10px 0;
    }

    .navbar .dropdown-menu {
        border: none;
        padding-left: 20px;
        background: transparent;
    }

    .navbar .dropdown-item {
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 15px;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        background: var(--light);
        color: var(--primary);
    }

    .navbar .btn-primary {
        margin: 12px 20px;
        text-align: center;
        border-radius: 8px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        border-radius: 12px;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
        box-shadow: 0 10px 40px rgba(13, 33, 53, .12);
        padding: 8px;
        min-width: 190px;
        background: rgba(255,255,255,.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(13,110,253,.06);
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: calc(100% + 4px);
        visibility: visible;
        opacity: 1;
    }

    .navbar .dropdown-item {
        padding: 10px 16px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        transition: all .2s;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        background: var(--light);
        color: var(--primary);
        transform: translateX(4px);
    }
}


/*** Header ***/
#header-carousel {
    position: relative;
}

#header-carousel .carousel-item {
    position: relative;
    min-height: 100vh;
    max-height: 700px;
    overflow: hidden;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 12s ease-in-out infinite alternate;
    transform-origin: center;
}

#header-carousel .carousel-item:nth-child(2) img {
    animation-delay: -6s;
    transform-origin: 20% 30%;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 33, 53, .85) 0%, rgba(13, 33, 53, .3) 50%, rgba(13, 33, 53, .85) 100%);
    z-index: 1;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
    position: relative;
}

.carousel-caption h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: pulseWidth 2s ease-in-out infinite;
}

.carousel-caption .btn {
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .9rem;
    transition: all .3s;
    box-shadow: 0 0 20px rgba(13, 110, 253, .4);
    position: relative;
    overflow: hidden;
}

.carousel-caption .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

.carousel-caption .btn:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
    box-shadow: 0 0 30px rgba(13, 110, 253, .6);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity .35s ease;
}

#header-carousel.show-controls .carousel-control-prev,
#header-carousel.show-controls .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, .2);
    border: 2px solid rgba(255,255,255,.4);
    background-size: 50%;
    transition: all .3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Scroll-down indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 13px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ken Burns keyframes */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

/* Shine animation for button */
@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

/* Pulse width for heading underline */
@keyframes pulseWidth {
    0%, 100% { width: 60px; }
    50% { width: 90px; }
}

/* Scroll wheel animation */
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        min-height: 450px;
        max-height: 450px;
    }

    .carousel-caption h1 {
        font-size: 1.6rem;
    }

    .carousel-caption h1::after {
        width: 40px;
        margin: 14px auto 0;
    }

    .carousel-caption p {
        font-size: .9rem !important;
    }

    .carousel-caption .btn {
        padding: 12px 28px;
        font-size: .8rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-width: 1.5px;
    }

    .scroll-indicator {
        display: none;
    }

    .top-feature-wave {
        display: none;
    }

    .top-feature {
        padding-top: 1rem !important;
        padding-bottom: .75rem !important;
    }

    .top-feature .row {
        margin: 0;
        background: rgba(13,110,253,.04);
        border-radius: 16px;
        padding: .6rem 0;
    }

    .top-feature .row > [class*="col-"] {
        padding: 0;
        position: relative;
    }

    .top-feature .row > [class*="col-"] + [class*="col-"]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 24px;
        background: rgba(13,110,253,.12);
    }

    .top-feature-card {
        background: none;
        padding: 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: auto;
        cursor: pointer;
        position: relative;
    }

    .top-feature-card::before,
    .top-feature-card::after {
        display: none !important;
    }

    .top-feature-card h4 {
        display: block;
        font-size: .55rem;
        font-weight: 600;
        color: #4a5568;
        margin: .25rem 0 0;
        line-height: 1.15;
        text-align: center;
    }

    .top-feature-card p {
        display: none;
    }

    .top-feature-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d6efd, #4a9eff);
        color: #fff;
        font-size: .7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(13,110,253,.25);
    }

    .service-text p {
        font-size: .85rem;
    }

    .service-item .service-text .btn {
        max-width: 31px;
    }
}

.page-header {
    background: linear-gradient(rgba(13, 33, 53, .6), rgba(13, 33, 53, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

.top-feature-wave {
    display: none;
}

.top-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all .35s ease;
    position: relative;
    border: none;
    box-shadow: 0 2px 20px rgba(13,33,53,.05);
    width: 100%;
}

.top-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(13,33,53,.1);
}

.top-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e8f0fe, #d0e2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    color: var(--primary);
    transition: all .35s ease;
}

.top-feature-card:hover .top-feature-icon {
    background: var(--primary);
    color: #fff;
    border-radius: 16px;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(13,110,253,.3);
}

.top-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--dark);
}

.top-feature-card p {
    font-size: .85rem;
    color: #6c757d;
    line-height: 1.55;
    margin: 0;
}

.top-feature-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: #fff;
    border-radius: 10px;
    padding: .8rem 1rem;
    box-shadow: 0 4px 20px rgba(13,33,53,.15);
    border: 1px solid rgba(13,110,253,.12);
    width: 180px;
    text-align: center;
}

@media (max-width: 768px) {
    .top-feature-popup {
        width: 140px;
        padding: .5rem .6rem;
        border-radius: 10px;
        bottom: calc(100% + 8px);
        box-shadow: 0 4px 16px rgba(13,33,53,.12);
    }

    .top-feature-popup h5 {
        font-size: .7rem;
        margin-bottom: .2rem;
    }

    .top-feature-popup p {
        font-size: .6rem;
        line-height: 1.3;
    }

    .popup-close {
        top: 3px;
        right: 6px;
        font-size: .75rem;
        color: #adb5bd;
    }
}

.top-feature-popup.show {
    display: block;
    animation: popupPop .25s ease;
}

.top-feature-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #fff;
    filter: drop-shadow(0 1px 1px rgba(13,33,53,.08));
}

.top-feature-popup h5 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .35rem;
    line-height: 1.3;
}

.top-feature-popup p {
    display: block !important;
    font-size: .75rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 1.1rem;
    color: #adb5bd;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover {
    color: #495057;
}

@keyframes popupPop {
    from { opacity: 0; transform: translateX(-50%) scale(.92) translateY(6px); }
    to { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}




/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(13, 33, 53, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color .3s;
}

.service-item:hover {
    border-bottom-color: var(--primary);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(13, 33, 53, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    color: var(--dark);
    background: var(--light);
    border-radius: 50px !important;
    white-space: nowrap;
    overflow: hidden;
    max-width: 31px;
    transition: all .35s ease;
}

.service-item:hover .service-text .btn {
    max-width: 200px;
    padding: 6px 16px 6px 6px;
    background: var(--primary);
    color: #fff;
}

.service-item:hover .service-text .btn i {
    color: #fff !important;
}

.service-item .service-text .btn i {
    transition: transform .3s;
}

.service-item:hover .service-text .btn i {
    transform: rotate(45deg);
    color: #fff !important;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(13, 33, 53, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #6c757d;
    background: #ffffff;
    border-top: 1px solid #dee2e6;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--dark);
}

@media (max-width: 768px) {
    .top-feature .row {
        background: rgba(13,110,253,.04) !important;
        border-radius: 16px !important;
        padding: .6rem 0 !important;
    }
    .top-feature .row > [class*="col-"] + [class*="col-"]::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 1px !important;
        height: 24px !important;
        background: rgba(13,110,253,.12) !important;
    }
    .top-feature-card {
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        min-height: auto !important;
    }
    .top-feature-card::before,
    .top-feature-card::after {
        display: none !important;
    }
    .top-feature-card h4 {
        display: block !important;
        font-size: .55rem !important;
        font-weight: 600 !important;
        color: #4a5568 !important;
        margin: .25rem 0 0 !important;
        line-height: 1.15 !important;
    }
    .top-feature-card p {
        display: none !important;
    }
    .top-feature-icon {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, #0d6efd, #4a9eff) !important;
        color: #fff !important;
        font-size: .7rem !important;
        margin: 0 !important;
        box-shadow: 0 2px 8px rgba(13,110,253,.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
}
