/********** Template CSS **********/
:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

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

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;
}


/*** 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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

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

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #fff;
    font-weight: 500;
    outline: none;
}
/* Change text color when navbar gets bg-white on scroll */
.fixed-top.bg-white .navbar-nav .nav-link {
    color: #000 !important;
}

/* Optional: change logo color too */
.fixed-top.bg-white .navbar-brand {
    color: #000 !important;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.fixed-top.bg-white .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar-nav .nav-link.active {
    color: var(--primary);
}
#navbarCollapse{
    color: white;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-item {
    min-height: 760px;
}

#header-carousel .carousel-item img {
    min-height: 760px;
    object-fit: cover;
    filter: saturate(1.05);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(1, 26, 65, .88) 0%, rgba(1, 26, 65, .68) 42%, rgba(1, 26, 65, .18) 72%, rgba(1, 26, 65, .06) 100%),
        linear-gradient(180deg, rgba(1, 26, 65, .18) 0%, rgba(1, 26, 65, .55) 100%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

.hero-panel {
    max-width: 760px;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 70px rgba(1, 26, 65, .25);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(233, 60, 5, .18);
}

.hero-title {
    max-width: 12ch;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 5.25rem);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.hero-description {
    max-width: 58ch;
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions .btn {
    border-radius: 999px;
    font-weight: 600;
}

.hero-actions .btn-outline-light {
    border-width: 2px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .95rem;
}

.hero-highlights i {
    color: #7cf0c5;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 620px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        padding: 120px 0 50px;
        background:
            linear-gradient(180deg, rgba(1, 26, 65, .7) 0%, rgba(1, 26, 65, .55) 30%, rgba(1, 26, 65, .82) 100%);
    }

    .hero-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .hero-kicker {
        font-size: .75rem;
        letter-spacing: .06em;
    }

    .hero-title {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-description {
        font-size: .95rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 18px;
    }

    .page-header {
        padding-top: 9rem;
        padding-bottom: 4rem;
        background:
            linear-gradient(180deg, rgba(1, 26, 65, .76) 0%, rgba(1, 26, 65, .58) 30%, rgba(1, 26, 65, .84) 100%),
            url(../img/pratibha2.webp) center center no-repeat;
        background-size: cover;
    }

    .page-header-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .page-header-description {
        font-size: .95rem;
        line-height: 1.65;
    }
}

.page-header {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 5rem;
    background:
        linear-gradient(90deg, rgba(1, 26, 65, .9) 0%, rgba(1, 26, 65, .72) 42%, rgba(1, 26, 65, .22) 72%, rgba(1, 26, 65, .08) 100%),
        linear-gradient(180deg, rgba(1, 26, 65, .18) 0%, rgba(1, 26, 65, .58) 100%),
        url(../img/pratibha2.webp) center center no-repeat;
    background-size: cover;
}

.page-header-panel {
    max-width: 760px;
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05));
    backdrop-filter: blur(8px);
    box-shadow: 0 24px 70px rgba(1, 26, 65, .25);
}

.page-header .display-3 {
    color: #fff;
}

.page-header-description {
    max-width: 58ch;
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    line-height: 1.8;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .68);
}

.page-header .breadcrumb-item.active {
    color: #fff;
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Career ***/
.career-section {
    background: linear-gradient(135deg, rgba(53, 94, 252, .96), rgba(1, 26, 65, .96)), url(../img/bg.png);
}

.career-card {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 1rem 3rem rgba(1, 26, 65, .18);
}

.career-list {
    display: grid;
    gap: 1rem;
}

.career-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(223, 228, 253, .45);
    border-radius: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.career-list-item i {
    font-size: 1.4rem;
    min-width: 24px;
}


/*** Sessions ***/
.sessions-section {
    background:
        radial-gradient(circle at top left, rgba(233, 60, 5, .08), transparent 34%),
        radial-gradient(circle at bottom right, rgba(53, 94, 252, .10), transparent 30%),
        #f8f9fc;
}

.sessions-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.sessions-header p:last-child {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
}

.session-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(1, 26, 65, .10);
    border: 1px solid rgba(53, 94, 252, .08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.session-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(1, 26, 65, .16);
}

.session-image-wrap {
    height: 240px;
    overflow: hidden;
}

.session-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.session-card:hover .session-image-wrap img {
    transform: scale(1.06);
}

.session-card-body {
    padding: 1.75rem;
}

.session-meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    background: rgba(53, 94, 252, .09);
    color: var(--primary);
    font-size: .9rem;
    font-weight: 600;
}

.session-card h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    line-height: 1.4;
}

.session-card p {
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.8;
}

.session-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
}

.session-link:hover {
    color: var(--primary);
}

.sessions-carousel .owl-stage-outer {
    padding: 12px 0 20px;
}

.sessions-carousel .owl-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.sessions-carousel .owl-nav .owl-prev,
.sessions-carousel .owl-nav .owl-next {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--dark);
    box-shadow: 0 12px 30px rgba(1, 26, 65, .12);
    transition: .3s;
}

.sessions-carousel .owl-nav .owl-prev:hover,
.sessions-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .session-image-wrap {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .session-card-body {
        padding: 1.25rem;
    }

    .session-image-wrap {
        height: 200px;
    }
}


/*** Introduction ***/
.intro-wrapper {
    background: #FFFFFF;
}

.intro-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #7eb1d7;
}

.intro-tab {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    padding: .85rem 1rem;
    color: #ff3d00;
    font-size: 1.1rem;
    font-weight: 600;
}

.intro-tab.active {
    color: #6ca6cd;
    border: 2px solid #7eb1d7;
    border-bottom: 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: #FFFFFF;
    margin-bottom: -2px;
}

.intro-content {
    align-items: start;
}

.intro-image-wrap {
    border: 1px solid rgba(1, 26, 65, .08);
    overflow: hidden;
}

.intro-image {
    display: block;
    min-height: 320px;
    object-fit: cover;
}

.intro-text-block {
    padding: .5rem 0 1rem;
    border-bottom: 1px solid rgba(1, 26, 65, .15);
    color: #4d4d4d;
    font-size: 1.05rem;
    line-height: 1.6;
}

.intro-text-block strong {
    color: #1147b5;
}

@media (max-width: 991.98px) {
    .intro-tab {
        font-size: 1rem;
        padding: .75rem .85rem;
    }

    .intro-image {
        min-height: auto;
    }
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Support ***/
.support-section {
    background: linear-gradient(135deg, rgba(223, 228, 253, .45), rgba(255, 255, 255, .95));
}

.support-card {
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .12);
    box-shadow: 0 1rem 3rem rgba(1, 26, 65, .08);
}

.support-message {
    border-left: 4px solid var(--primary);
    background: rgba(223, 228, 253, .35);
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
}

.support-contact {
    background: linear-gradient(180deg, rgba(53, 94, 252, .06), rgba(233, 60, 5, .06));
    border: 1px solid rgba(53, 94, 252, .12);
    border-radius: 1.5rem;
    padding: 2rem;
}

.support-contact-item+.support-contact-item {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(1, 26, 65, .08);
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.support-note {
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: #FFFFFF;
    color: var(--dark);
    font-weight: 500;
}


/*** Feature ***/
.feature {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(223, 228, 253, .35)),
        url(../img/bg.png);
}

.feature-intro {
    color: black;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 560px;
}

.feature-highlight-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .08);
    border-radius: 1.1rem;
    box-shadow: 0 10px 30px rgba(1, 26, 65, .06);
}

.feature-highlight-icon,
.feature-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(53, 94, 252, .12), rgba(233, 60, 5, .12));
    color: var(--primary);
    font-size: 1.35rem;
}

.feature-highlight-item h5 {
    color: var(--dark);
}

.feature-highlight-item p {
    color: #667085;
    line-height: 1.7;
}

.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-card {
    height: 100%;
    background: #FFFFFF;
    border-color: rgba(53, 94, 252, .10) !important;
    box-shadow: 0 18px 45px rgba(1, 26, 65, .08);
}

.feature .feature-card p {
    color: #667085;
    line-height: 1.75;
}

.feature-card-tall {
    min-height: 100%;
}

.feature-points {
    padding-left: 1.1rem;
    color: #556070;
}

.feature-points li {
    margin-bottom: .75rem;
    line-height: 1.6;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    transform: translateY(-6px);
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}

.feature .feature-box:hover .feature-highlight-icon,
.feature .feature-box:hover .feature-card-icon {
    background: rgba(255, 255, 255, .16);
    color: #FFFFFF;
}

@media (max-width: 575.98px) {
    .feature-highlight-item {
        padding: .95rem;
    }

    .feature-highlight-icon,
    .feature-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.1rem;
    }
}


/*** About Modern ***/
.about-modern {
    background:
        radial-gradient(circle at top right, rgba(53, 94, 252, .08), transparent 30%),
        linear-gradient(180deg, #ffffff, #f8faff);
}

.about-modern-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(1, 26, 65, .14);
}

.about-modern-image img {
    min-height: 520px;
    object-fit: cover;
}

.about-modern-lead {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #5c6675;
}

.about-modern-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.about-modern-badges span {
    display: inline-flex;
    align-items: center;
    padding: .85rem 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .10);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(1, 26, 65, .05);
    color: var(--dark);
    font-weight: 500;
}

.about-story-card {
    padding: 2rem;
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(1, 26, 65, .07);
}

.about-story-icon,
.expertise-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(53, 94, 252, .12), rgba(233, 60, 5, .12));
    color: var(--primary);
    font-size: 1.4rem;
}

.about-story-card p,
.journey-card p,
.expertise-card p,
.association-item span,
.association-panel li {
    color: #667085;
    line-height: 1.8;
}

.journey-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .08);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(1, 26, 65, .06);
}

.journey-year {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .45rem .95rem;
    border-radius: 999px;
    background: rgba(53, 94, 252, .09);
    color: var(--primary);
    font-weight: 700;
}

.about-expertise {
    background:
        linear-gradient(135deg, rgba(53, 94, 252, .94), rgba(1, 26, 65, .96)),
        url(../img/bg.png);
}

.about-expertise h1,
.about-expertise p {
    color: black;
}

.expertise-note {
    padding: 1.5rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.8;
}

.expertise-card {
    padding: 1.75rem;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(1, 26, 65, .14);
}

.association-list {
    display: grid;
    gap: 1rem;
}

.association-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1.15rem 1.2rem;
    background: #FFFFFF;
    border: 1px solid rgba(53, 94, 252, .08);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(1, 26, 65, .05);
}

.association-panel {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(53, 94, 252, .06), rgba(233, 60, 5, .05));
    border: 1px solid rgba(53, 94, 252, .10);
    border-radius: 28px;
}

.about-seminar-list {
    padding-left: 1.1rem;
}

.about-seminar-list li {
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .about-modern-image img {
        min-height: 380px;
    }
}

@media (max-width: 575.98px) {
    .about-story-card,
    .journey-card,
    .expertise-card,
    .association-panel {
        padding: 1.4rem;
    }

    .about-modern-badges span {
        width: 100%;
        justify-content: flex-start;
        border-radius: 18px;
    }

    .about-modern-image img {
        min-height: 280px;
    }
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

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

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


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

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

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

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

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


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

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

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

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

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .footer-about {
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    max-width: 340px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    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;
}

.footer .footer-contact-text {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

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

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