/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.logo-img {
    max-width: 131px;
    height: auto;
    display: block;
   
}


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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;
}

div {
    margin: 0;
    padding: 0;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}


.fixed-section {
    background-image: url('../img/fixed.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50px;
}

.fixed-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.fixed-section .container {
    z-index: 2;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 10px;
    min-width: 220px;
    padding: 10px 0;
    background: #ffffff;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary);
    padding-left: 25px;
}

@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 15px;
    }

    .navbar .dropdown.show .dropdown-menu {
        display: block;
    }
}

.belief-item {
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.belief-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.belief-icon i {
    transition: 0.3s;
}

.belief-item:hover .belief-icon i {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .belief-item {
        padding: 30px 20px;
    }
}

/* Full Section */
.container-xxl.py-5.bg-light.position-relative.overflow-hidden {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent !important;
}

/* Cards */
.vm-card {
    background: #fff;
    border: 1px solid rgba(16, 31, 58, 0.08);
    transition: all 0.4s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 50px 35px;
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(16, 31, 58, 0.15) !important;
}

/* Headings */
.vm-card h3 {
    color: #101F3A;
    min-height: 60px;
}

/* Paragraph / Content */
.vm-card p,
.core-value-item {
    color: #5f6673;
    line-height: 1.8;
}

.vm-card p {
    min-height: 140px;
}

/* Icon Circle */
.icon-circle {
    width: 95px;
    height: 95px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(43, 167, 222, 0.1);
    animation: pulseIcon 3s infinite;
    transition: all 0.4s ease;
}

.icon-circle i {
    color: #2BA7DE !important;
    transition: all 0.4s ease;
}

.vm-card:hover .icon-circle {
    background: #101F3A;
    transform: rotateY(180deg);
}

.vm-card:hover .icon-circle i {
    color: #fff !important;
    transform: rotateY(180deg);
}

/* Decorative Shape */
.card-shape {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    background: rgba(43, 167, 222, 0.08);
    z-index: -1;
    transition: all 0.5s ease;
}

.vm-card:hover .card-shape {
    transform: scale(1.3);
    background: rgba(16, 31, 58, 0.08);
}

/* Core Values */
.core-value-item {
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px dashed rgba(16, 31, 58, 0.1);
    transition: all 0.3s ease;
}

.core-value-item:last-child {
    border-bottom: none;
}

.core-value-item:hover {
    color: #2BA7DE;
    padding-left: 8px;
}

/* Animation */
@keyframes pulseIcon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 167, 222, 0.35);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(43, 167, 222, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 167, 222, 0);
    }
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/fixed.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}



/* Intro Section */
.strategy-intro-section {
    padding-bottom: 30px;
}

.strategy-subtitle {
    color: #2BA7DE;
    font-weight: 700;
    letter-spacing: 2px;
}

.strategy-title {
    color: #101F3A;
    font-weight: 700;
}

.strategy-text {
    color: #5f6673;
    line-height: 1.9;
}

.strategy-image-box {
    position: relative;
}

.strategy-image {
    width: 100%;
    border-radius: 30px;
    transition: all 0.5s ease;
}

.strategy-image:hover {
    transform: scale(1.03);
}

/* Floating Icons Around Image */
.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    color: #2BA7DE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(16, 31, 58, 0.12);
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-one {
    top: 20px;
    left: -20px;
}

.icon-two {
    bottom: 30px;
    left: 30px;
    animation-delay: 1s;
}

.icon-three {
    top: 50%;
    right: -20px;
    animation-delay: 2s;
}

/* Step Cards */
.step-modal-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 12px 35px rgba(16, 31, 58, 0.08);
    border: 1px solid rgba(16, 31, 58, 0.06);
    transition: all 0.4s ease;
}

.step-modal-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(16, 31, 58, 0.15);
}

.step-modal-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(43, 167, 222, 0.08);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    transition: all 0.5s ease;
}

.step-modal-card:hover::before {
    transform: scale(1.3);
}

/* Icon */
.step-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(43, 167, 222, 0.1);
    color: #2BA7DE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: all 0.5s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.step-modal-card:hover .step-icon-wrap {
    background: #101F3A;
    color: #fff;
    transform: rotateY(180deg) scale(1.08);
}

/* Step Number */
.step-count {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 38px;
    font-weight: 800;
    color: rgba(16, 31, 58, 0.07);
}

/* Card Content */
.step-modal-card h4 {
    color: #101F3A;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-modal-card p {
    color: #5f6673;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Floating Animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .strategy-intro-content {
        margin-top: 20px;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .step-modal-card {
        padding: 30px 22px;
    }

    .step-icon-wrap {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .step-count {
        font-size: 30px;
    }

    .floating-icon {
        display: none;
    }
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
}

.blog-image img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.blog-date span {
    font-size: 24px;
    line-height: 1;
}

.blog-date small {
    font-size: 13px;
    text-transform: uppercase;
}

.blog-content h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h5 {
    color: var(--primary);
}

.blog-meta {
    font-size: 14px;
    color: #6c757d;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content .btn-link {
    text-decoration: none;
    font-weight: 600;
}

.blog-content .btn-link:hover {
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 25px 20px;
    }

    .blog-content h5 {
        font-size: 18px;
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


.footer {
    background-image: linear-gradient(to bottom right, #18213d, #3774a6);
}

.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    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: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}