﻿:root {
    --blue-hex: #004aad;
    --footer-link-page: #555;
}

html {
    scroll-behavior: smooth;
}

body {
}


/*Navbar Header*/
@media(min-width: 992px) {
    .navbar-header {
        position: relative;
        overflow: hidden;
        background: linear-gradient( 135deg, #0077b6, #00b4d8 );
        height: 7rem;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .navbar-header {
        position: relative;
        overflow: hidden;
        background: linear-gradient( 135deg, #0077b6, #00b4d8 );
        height: 5rem;
    }
}

@media(min-width: 0px) and (max-width: 767px) {
    .navbar-header {
        position: relative;
        overflow: hidden;
        background: linear-gradient( 135deg, #0077b6, #00b4d8 );
        height: 6.5rem;
    }
}

.navbar-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from {
        transform: translateX(0) translateY(0);
    }

    to {
        transform: translateX(40px) translateY(40px);
    }
}

.navbar-header .facebook-bg {
    background: #1877F2;
    font-size: 18px;
    color: white;
    padding: 4px 7px 5px 7px;
    border-radius: 10px;
}

.navbar-header .instagram-bg {
    background: linear-gradient( 135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100% );
    font-size: 18px;
    color: white;
    padding: 4px 7px 5px 6px;
    border-radius: 10px;
}

.navbar-header .youtube-bg {
    background: #FF0000;
    font-size: 18px;
    color: white;
    padding: 4px 7px 5px 7px;
    border-radius: 10px;
}


/*Navbar*/
@media(min-width: 992px) {
    .navbar {
        width: 95%;
        margin: auto;
        border-radius: 10rem;
        top: -2rem;
        transition: all .3s ease;
    }
}

.sticky-top {
    transition: all .3s ease;
}

/* When scrolling */
.sticky-active .navbar {
    top: 0;
}

/*@media(max-width:991px) {

    .footer-card {
        padding: 40px 30px 180px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-illustration {
        width: 220px;
    }

    .footer-description {
        max-width: 100%;
    }
}
*/





















/*Footer*/
/*.footer {
    background: url('../assets/others/footer-bg.gif') center/cover no-repeat;
    height: 30rem;
    background-attachment: fixed;
    min-width: 100%;
}*/
.footer {
    /*background: #f4f6fb;*/
    background: url('../assets/others/footer-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    .footer .footer-card {
        position: relative;
        background: #fff;
        border-radius: 30px;
        /*padding: 50px;*/
        overflow: hidden;
        box-shadow: 0 30px 80px rgba(0,0,0,.12);
    }

        .footer .footer-card .ttl-page {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: .5rem;
        }

        .footer .footer-card .link-page {
            color: var(--footer-link-page);
            text-decoration: none;
            transition: .3s;
        }

            .footer .footer-card .link-page:hover {
                color: var(--blue-hex);
                padding-left: 8px;
            }









.footer-logo {
    max-width: 240px;
}

.footer-description {
    color: #666;
    line-height: 1.2;
}

.footer hr {
    margin: 50px 0 25px;
}

@media(min-width: 992px) {
    .footer-description {
        max-width: 23.5rem;
        /*border: 1px solid black;*/
    }
}
/*
@media(min-width: 0px) and (max-width: 991px) {
    .footer-description {
        max-width: 32rem;
        border: 1px solid black;
    }
}*/




.footer-bottom {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f4f6fb;
        color: var(--blue-hex);
        transition: .3s;
    }

        .footer-social a:hover {
            background: var(--blue-hex);
            color: #fff;
            transform: translateY(-4px);
        }

/*.footer-illustration {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 340px;
    pointer-events: none;
}*/


/*Page title*/
.text-main {
    color: var(--blue-hex);
}

@media(min-width: 992px) {
    ttlHead {
        font-size: 3.5em;
        font-weight: bold;
    }

    .ttlHeadPage {
        font-size: 3.5em;
        font-weight: bold;
    }
}

@media(max-width: 991px) {
    ttlHead {
        font-size: 2.5em;
        font-weight: bold;
    }

    .ttlHeadPage {
        font-size: 2.5em;
        font-weight: bold;
    }
}












/*Scroll stop top*/
/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, .85);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 2rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s ease;
}

    #scrollTopBtn:hover {
        background: rgba(13, 110, 253, 1);
        color: #fff;
    }

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }


/* Others*/
.border-ttl {
    border: 2px solid;
    max-width: 60px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.text-justify {
    text-align: justify;
}

.cursor-pointer {
    cursor: pointer;
}

/*---------------------------------------------------------------------------*/
/*Home.razor*/
/*---------------------------------------------------------------------------*/

/*Header*/
.home-head-bg .ttlHomeHead {
    line-height: 1;
}

.home-head-bg .txtCap {
    line-height: 1.2;
}

@media(min-width: 1200px) {
    .home-head-bg {
        position: relative;
        background: url('../assets/others/bg-home-head.png') center/cover no-repeat;
        min-height: 40rem;
        margin-top: -4rem;
        overflow: hidden;
    }

        .home-head-bg .ttlHomeHead {
            font-size: 3.8em;
            width: 40rem;
        }

        .home-head-bg .txtCap {
            font-size: 3.8em;
        }
}

@media(min-width: 992px) and (max-width: 1199px) {
    .home-head-bg {
        background: url('../assets/others/bg-home-head2.png') center center no-repeat;
        min-height: 40rem;
        margin-top: -4rem;
    }

        .home-head-bg .ttlHomeHead {
            font-size: 3.5rem;
            width: 57rem;
        }

        .home-head-bg .txtCap {
            font-size: 3.8em;
            width: 40rem;
        }
}

@media(min-width: 768px) and (max-width: 991px) {
    .home-head-bg {
        background: url('../assets/others/bg-home-head2.png') center center no-repeat;
        min-height: 30rem;
        background-size: cover;
    }

        .home-head-bg .ttlHomeHead {
            font-size: 2.7em;
            width: 43rem;
        }

        .home-head-bg .txtCap {
            font-size: 2.7em;
            width: 36rem;
        }
}

@media(min-width: 0px) and (max-width: 767px) {
    .home-head-bg {
        background: url('../assets/others/bg-home-head2.png') center center no-repeat;
        min-height: 30rem;
        background-size: cover;
    }

        .home-head-bg .ttlHomeHead {
            font-size: 2.5em;
        }

        .home-head-bg .txtCap {
            font-size: 1rem;
        }
}

/*About us*/
.home-about-us .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

/* Large image */
.home-about-us .gallery-large {
    height: 420px;
}

/* Small images */
.home-about-us .gallery-small {
    height: 202px;
}

/* Make every image fill its container */
.home-about-us .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* Smooth Zoom */
.home-about-us .gallery-item:hover img {
    transform: scale(1.12);
}

/*Auto scrolling text*/
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    /*background: transparent;*/
    padding: 1rem 0;
    position: relative;
    background: var(--blue-hex);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 25s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    font-size: 1.3rem;
    font-weight: 670;
    color: #74a9f7;
    user-select: none;
    transition: color .3s ease;
}

    .marquee-content span:hover {
        color: white;
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/*Solutions*/
.home-solutions .row {
    margin: 0;
}

/* Card */
.solution-card {
    position: relative;
    height: 650px;
    overflow: hidden;
    cursor: pointer;
}

    /* Image */
    .solution-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .solution-card:hover img {
        transform: scale(1.12);
    }

/* Overlay */
.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.25) 65%, rgba(0,0,0,.08) 100% );
    transition: .35s;
}

.solution-card:hover .solution-overlay {
    background: linear-gradient( to top, rgba(0,0,0,.95), rgba(0,0,0,.60), rgba(0,0,0,.30), rgba(0,0,0,.08) );
}

/*Content*/
.solution-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    height: 250px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

    /* Title */

    .solution-content h2 {
        color: #fff;
        font-size: 2.3rem;
        font-weight: 700;
        margin-bottom: 20px;
        min-height: 60px;
        display: flex;
        align-items: flex-end;
    }

/* Description */
.solution-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
    flex: 1;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /*border: 1px solid white;*/
}

/* Buttons */
.solution-buttons {
    margin-top: auto;
}

    .solution-buttons .btn {
        font-weight: 600;
        transition: .35s;
    }

        .solution-buttons .btn:hover {
            transform: translateY(-4px);
        }

/*Responsive*/
/*@media(max-width:992px) {*/
/*    .solution-card {
        height: 500px;
    }

    .solution-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
        height: 220px;
    }

        .solution-content h2 {
            font-size: 1.8rem;
            min-height: 50px;
        }

    .solution-description {
        font-size: .95rem;
        line-height: 1.5;
        -webkit-line-clamp: 4;
        border: 1px solid white;
    }*/
/*}*/

/*Contact*/

.crd-contact {
    background-color: rgba(108,117,125,.1) !important;
    transition: all 0.5s ease
}

.content-contact {
    background-color: var(--blue-hex) !important;
    color: white !important;
    transition: all 0.5s ease
}

.col-md-6:hover .content-contact {
    background-color: white !important;
    color: var(--blue-hex) !important;
    transition: all 0.5s ease
}

.col-md-6:hover .crd-contact {
    background-color: var(--blue-hex) !important;
    color: white !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    transition: all 0.5s ease
}


/*---------------------------------------------------------------------------*/
/*About.razor*/
/*---------------------------------------------------------------------------*/
/*Sub-company*/
/*Background*/
/*.subcompany-section {
    background: linear-gradient(180deg,#f8fbff,#eef5ff);
    position: relative;
    overflow: hidden;
}

    .subcompany-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top,#ffffff 20%,transparent 70%);
    }*/

/*Heading*/
/*.section-header {
    position: relative;
    z-index: 2;
}

    .section-header h2 {
        font-size: 3rem;
        font-weight: 800;
        color: #1658d6;
    }*/

/*    .section-header p {
        max-width: 650px;
        margin: auto;
        color: #66758d;
        font-size: 1.05rem;
    }*/

/*.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}

    .divider span {
        width: 70px;
        height: 4px;
        background: #1f57c5;
        border-radius: 30px;
    }

    .divider i {
        color: #29b6f6;
        font-size: 8px;
    }*/

/*Card*/
/*.company-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(18,55,120,.08);
    transition: .35s;
    height: 100%;
    position: relative;
}

    .company-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(18,55,120,.15);
    }*/

/*Banner*/
/*.card-banner {
    height: 240px;
    background: linear-gradient(135deg,#edf5ff,#dfeeff);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .card-banner::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(66,133,244,.10), transparent 70%);
        border-radius: 50%;
        top: -260px;
        left: -180px;
    }

    .card-banner::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -10%;
        width: 120%;
        height: 140px;
        background: white;
        border-radius: 100% 100% 0 0;
    }

.company-logo {
    max-width: 240px;
    width: 70%;
    z-index: 2;
}*/

/*Floating Icon*/
/*.company-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #1f57c5;
    position: absolute;
    top: 195px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
    z-index: 5;
}*/

/*Body*/
/*.card-body-custom {
    padding: 70px 35px 35px;
}

    .card-body-custom h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1d2d55;
    }

    .card-body-custom p {
        margin-top: 20px;
        color: #66758d;
        line-height: 1.8;
    }

.badge-company {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #1f7cf2;
    color: white;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
}

    .badge-company.green {
        background: #18b79d;
    }*/

/*Features*/
.sub-comp .feature-list {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(90px,1fr));
    border-radius: 18px;
    overflow: hidden;
    background: #f4f8ff;
}

    .sub-comp .feature-list .feature {
        padding: 22px 10px;
        text-align: center;
        border-right: 1px solid #dde8ff;
    }

        .sub-comp .feature-list .feature:last-child {
            border-right: none;
        }

        .sub-comp .feature-list .feature i {
            font-size: 30px;
            color: #1f57c5;
        }

    .sub-comp .feature-list .feature-list.feature span {
        display: block;
        margin-top: 10px;
        font-size: .9rem;
        font-weight: 600;
        color: #38527d;
    }

/*Responsive*/
/*@media (max-width:991px) {

    .section-header h2 {
        font-size: 2.4rem;
    }

    .card-banner {
        height: 210px;
    }

    .company-icon {
        top: 170px;
    }
}*/

@media (max-width:767px) {

    /*    .section-header h2 {
        font-size: 2rem;
    }

    .company-logo {
        width: 60%;
    }

    .company-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
        top: 175px;
    }

    .card-body-custom {
        padding: 60px 25px 25px;
    }

        .card-body-custom h3 {
            font-size: 1.45rem;
        }*/

    .sub-comp .feature-list {
        grid-template-columns: repeat(2,1fr);
    }

        .sub-comp .feature-list .feature {
            border-right: none;
            border-bottom: 1px solid #dde8ff;
        }

            .sub-comp .feature-list .feature:nth-last-child(-n+2) {
                border-bottom: none;
            }
}














/*ideology*/
/*Background*/
.ideology-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#f9fbff,#eef4ff);
}

    .ideology-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top,#ffffff 20%,transparent 60%), linear-gradient(180deg,transparent 55%,rgba(52,94,185,.06));
        z-index: 0;
    }

    .ideology-section .container {
        position: relative;
        z-index: 1;
    }


/*Heading*/
.ideology-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0e2d67;
    letter-spacing: 1px;
}

.ideology-desc {
    max-width: 650px;
    margin: auto;
    color: #65758d;
    font-size: 1.1rem;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

    .title-divider span {
        width: 70px;
        height: 4px;
        background: #1b4aa0;
        border-radius: 20px;
    }

    .title-divider i {
        color: #ffb300;
        font-size: .6rem;
    }

/*Card*/
.idea-card {
    position: relative;
    background: #fff;
    border-radius: 26px;
    padding: 70px 35px 35px;
    overflow: hidden;
    text-align: center;
    min-height: 340px;
    box-shadow: 0 15px 35px rgba(18,42,84,.08);
    transition: .35s;
}

    .idea-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 45px rgba(18,42,84,.15);
    }


    /*Corner Accent*/
    .idea-card.blue::after,
    .idea-card.gold::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 120px;
        height: 120px;
        border-bottom-left-radius: 120px;
    }

    .idea-card.blue::after {
        background: #2455b3;
    }

    .idea-card.gold::after {
        background: #ffb300;
    }

/*Number Badge*/
.number {
    position: absolute;
    left: 22px;
    top: 22px;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.blue-bg {
    background: #18479c;
    color: #fff;
}

.gold-bg {
    background: #ffb300;
    color: #000;
}

/*Icon*/
.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #1b4aa0;
    font-size: 52px;
}

.gold-icon {
    background: #fff6df;
    color: #ffb300;
}

/*Text*/
.idea-card h4 {
    margin-top: 25px;
    color: #0e2d67;
    font-size: 1.65rem;
    font-weight: 700;
}

.small-divider {
    width: 70px;
    height: 4px;
    background: #1b4aa0;
    border-radius: 20px;
    margin: 20px auto;
}

.gold-line {
    background: #ffb300;
}


/*Responsive*/
@media(max-width:992px) {

    .ideology-title {
        font-size: 2.5rem;
    }

    .idea-card {
        min-height: auto;
    }
}

@media(max-width:576px) {

    .ideology-title {
        font-size: 2rem;
    }

    .idea-card {
        padding: 65px 25px 30px;
    }

        .idea-card h4 {
            font-size: 1.35rem;
        }

    .icon-circle {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }
}


/*Vision and mission*/
.vm-section {
    /*background: #f7f9fc;*/
}

/*Heading*/
.vm-title {
    /*font-size: 3rem;*/
    /*font-weight: 800;*/
    /*color: var(--blue-hex);*/
    /*margin-bottom: .75rem;*/
}

    .vm-title span {
        color: #ffc107;
    }

/*.vm-title-line {
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right,var(--blue-hex),#4d8dff);
    margin-bottom: 1.25rem;
}*/

/*.vm-subtitle {
    max-width: 760px;
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
}*/

/*Main Card*/
.vm-card {
    background: #fff;
    border-radius: 30px;
    padding: 55px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

    .vm-card::before {
        content: "";
        position: absolute;
        top: -180px;
        right: -180px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(13,110,253,.05);
    }

    .vm-card::after {
        content: "";
        position: absolute;
        bottom: -180px;
        left: -180px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
    }

/*Left / Right Column*/
.vm-content {
    position: relative;
    z-index: 2;
    height: 100%;
}

/*Section Heading*/
.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.section-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 135deg, var(--blue-hex), #4d8dff);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.section-heading small {
    color: #9ca3af;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.section-heading h3 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
    font-size: 2rem;
}

/*Vision Cards*/
.vision-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vision-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 18px 0 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf2f7;
    transition: .35s;
}

    .vision-item:hover {
        transform: translateY(-5px);
        border-color: var(--blue-hex);
        box-shadow: 0 12px 30px rgba(13,110,253,.12);
    }

.vision-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eef5ff;
    color: var(--blue-hex);
    font-size: 24px;
}

/*.vision-item h6 {
    margin-bottom: 6px;
    font-weight: 700;
    color: #1e293b;
}

.vision-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}*/

/*Images*/
.vision-image,
.mission-image {
    margin-top: 35px;
    text-align: center;
}

    .vision-image img,
    .mission-image img {
        width: 100%;
        max-width: 430px;
        border-radius: 22px;
        transition: .35s;
    }

        .vision-image img:hover,
        .mission-image img:hover {
            transform: scale(1.03);
        }

/*Mission*/
.mission-intro {
    /*margin-bottom: 30px;*/
}

    .mission-intro p {
        /*color: #6b7280;*/
        line-height: 1.9;
        /*font-size: 1rem;*/
    }

/*Mission Features*/
.mission-feature {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s;
    height: 100%;
}

    .mission-feature:hover {
        transform: translateY(-6px);
        border-color: var(--blue-hex);
        box-shadow: 0 12px 30px rgba(13,110,253,.12);
    }

    .mission-feature i {
        width: 65px;
        height: 65px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto auto 15px;
        border-radius: 50%;
        background: #eef5ff;
        color: var(--blue-hex);
        font-size: 28px;
    }

    /*.mission-feature h6 {*/
        /*font-weight: 700;*/
        /*margin-bottom: 5px;*/
        /*color: #1e293b;*/
    /*}*/

    /*.mission-feature small {
        color: #6b7280;
        font-size: .9rem;
    }*/

/*Divider*/
.vm-card .col-lg-6:first-child {
    border-right: 1px solid #eef2f7;
    padding-right: 40px;
}

.vm-card .col-lg-6:last-child {
    padding-left: 40px;
}

/*Responsive*/
@media(max-width:992px) {

    .vm-card {
        padding: 35px;
    }

        .vm-card .col-lg-6:first-child {
            border-right: none;
            padding-right: 12px;
        }

        .vm-card .col-lg-6:last-child {
            padding-left: 12px;
        }

    .section-heading h3 {
        font-size: 1.7rem;
    }
}

@media(max-width:768px) {

    .vm-title {
        font-size: 2.3rem;
    }

    .vm-card {
        padding: 25px;
    }

    .section-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .vision-item {
        padding: 15px;
    }
}

@media(max-width:576px) {

    .vm-title {
        font-size: 2rem;
    }

    .section-heading {
        margin-bottom: 25px;
    }

        .section-heading h3 {
            font-size: 1.4rem;
        }

    .vision-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .mission-feature {
        padding: 18px 12px;
    }

        .mission-feature i {
            width: 50px;
            height: 50px;
            font-size: 22px;
        }
}



/*---------------------------------------------------------------------------*/
/*Certificate.razor*/
/*---------------------------------------------------------------------------*/

/*==================================================
    Company Certificate & Recognition
==================================================*/

.certificate-section,
.recognition-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( to bottom, #ffffff, #f8fbff 15%, #f8fbff 85%, #ffffff );
}

    .certificate-section::before,
    .recognition-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -120px;
        right: -120px;
        background: radial-gradient( circle, rgba(13,110,253,.08), transparent 70% );
        pointer-events: none;
    }

/*==================================================
    Section Title
==================================================*/

/*.section-title h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--blue-hex);
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--blue-hex);
    border-radius: 50px;
    margin: 15px auto 20px;
    position: relative;
}

    .title-divider::after {
        content: "";
        position: absolute;
        right: -10px;
        top: -2px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ffc107;
    }

.section-title p {
    max-width: 720px;
    margin: auto;
    color: #6b7280;
    line-height: 1.8;
}*/

/*==================================================
    Certificate Card
==================================================*/

.certificate-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

    .certificate-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.certificate-image {
    padding: 25px;
    background: #fff;
    text-align: center;
}

    .certificate-image img {
        max-height: 380px;
        object-fit: contain;
        transition: .4s;
    }

.certificate-card:hover img {
    transform: scale(1.04);
}

.certificate-content {
    padding: 20px;
    border-top: 1px solid #eef2f7;
    text-align: center;
}

    /*.certificate-content h5 {
        font-weight: 700;
        margin-bottom: 8px;
        color: #1e293b;
    }*/

    /*.certificate-content small {
        color: #6b7280;
    }*/

/*==================================================
    Recognition Card
==================================================*/

.recognition-card {
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
}

    .recognition-card::after {
        content: "";
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
    }

/*==================================================
    Header
==================================================*/

.recognition-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.recognition-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-hex), #4f8dff);
    color: white;
    font-size: 30px;
    box-shadow: 0 15px 30px rgba(13,110,253,.20);
}

    .recognition-icon.gold {
        background: linear-gradient(135deg, #ffc107, #d89a00);
    }

.recognition-header small {
    display: block;
    color: #9ca3af;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.recognition-header h3 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}

/*==================================================
    Description
==================================================*/

.recognition-description {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 25px;
}

/*==================================================
    Tags
==================================================*/

.recognition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .recognition-tags span {
        background: #eef5ff;
        color: var(--blue-hex);
        padding: 8px 18px;
        border-radius: 30px;
        font-weight: 600;
        font-size: .9rem;
    }

/*==================================================
    Logo
==================================================*/

.recognition-logo {
    max-width: 320px;
    transition: .4s;
}

    .recognition-logo:hover {
        transform: scale(1.05);
    }

/*==================================================
    Timeline
==================================================*/

.achievement-list {
    margin-bottom: 30px;
}

    .achievement-list > div {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
    }

    .achievement-list i {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: #eef5ff;
        color: var(--blue-hex);
        font-size: 18px;
        flex-shrink: 0;
    }

    .achievement-list span {
        color: #475569;
        line-height: 1.7;
    }

/*==================================================
    Carousel
==================================================*/

.carousel {
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    border-radius: 20px;
    transition: .35s;
}

    .carousel-item img:hover {
        transform: scale(1.03);
    }

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/*==================================================
    Responsive
==================================================*/

@media(max-width:992px) {

    .recognition-card {
        padding: 30px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 1.9rem;
    }

    .recognition-card {
        padding: 25px;
    }

    .recognition-header {
        gap: 15px;
    }

    .recognition-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .recognition-header h3 {
        font-size: 1.45rem;
    }

    .certificate-image img {
        max-height: 300px;
    }
}

@media(max-width:576px) {

    .section-title h2 {
        font-size: 1.75rem;
    }

    .recognition-tags {
        justify-content: center;
    }

    .recognition-header {
        align-items: flex-start;
    }

    .recognition-card {
        border-radius: 20px;
    }
}


/*---------------------------------------------------------------------------*/
/*IndustryPartners.razor*/
/*---------------------------------------------------------------------------*/

/*==================================================
    Partner Section
==================================================*/

.partner-section {
    position: relative;
    overflow: hidden;
    background: #f5f9ff;
    -webkit-mask-image: linear-gradient( to bottom, transparent 0%, #000 8%, #000 92%, transparent 100% );
    mask-image: linear-gradient( to bottom, transparent 0%, #000 8%, #000 92%, transparent 100% );
}

    .partner-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(13,110,253,.06), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.04), transparent 40%);
        pointer-events: none;
    }

/*==================================================
    Card
==================================================*/

.partner-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 50px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 35px rgba(20,40,90,.08);
    transition: .35s;
}

    .partner-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 45px rgba(20,40,90,.12);
    }

/*==================================================
    Decorative Pattern
==================================================*/

.partner-pattern {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    width: 110px;
    height: 170px;
    opacity: .1;
    background-image: radial-gradient(var(--blue-hex) 1.8px,transparent 1.8px);
    background-size: 12px 12px;
    pointer-events: none;
}

.partner-card.reverse .partner-pattern {
    right: auto;
    left: 35px;
}

/*==================================================
    Side Icon
==================================================*/

.partner-side-icon {
    width: 70px;
    height: 70px;
    margin-right: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 135deg, var(--blue-hex), #2d7eff);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(13,110,253,.30);
}

/*==================================================
    Logo
==================================================*/

.partner-logo-box {
    background: #ffffff;
    border-radius: 22px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #edf2f7;
    /*box-shadow: 0 10px 25px rgba(0,0,0,.05);*/
    position: relative;
    overflow: hidden;
}

    .partner-logo-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(13,110,253,.04), transparent 70%);
    }

    .partner-logo-box img {
        max-width: 70%;
        max-height: 140px;
        object-fit: contain;
        transition: .4s;
        position: relative;
        z-index: 2;
    }

.partner-card:hover .partner-logo-box img {
    transform: scale(1.05);
}

/*==================================================
    Content
==================================================*/

.partner-content {
    padding-left: 45px;
}

.partner-card.reverse .partner-content {
    padding-left: 0;
    padding-right: 45px;
}

/*.partner-content h2 {*/
    /*color: #0f2b6b;*/
    /*font-size: 2rem;*/
    /*font-weight: 800;*/
    /*margin-bottom: 15px;*/
/*}

    .partner-content h2 small {
        display: block;
        margin-top: 5px;
        font-size: .95rem;
        color: #6b7280;
        font-weight: 600;
    }*/

.partner-divider {
    width: 70px;
    height: 4px;
    background: var(--blue-hex);
    border-radius: 50px;
    margin-bottom: 25px;
}

/*.partner-content p {
    color: #5f6d82;
    line-height: 1.9;
    margin-bottom: 30px;
}*/

/*==================================================
    Button
==================================================*/

.partner-content .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: .3s;
}

    .partner-content .btn i {
        transition: .3s;
    }

    .partner-content .btn:hover i {
        transform: translateX(4px);
    }

/*==================================================
    Divider
==================================================*/

.partner-card .row {
    position: relative;
}

    .partner-card .row::after {
        content: "";
        position: absolute;
        top: 10%;
        bottom: 10%;
        left: 33.333%;
        width: 1px;
        background: #edf2f7;
    }

.partner-card.reverse .row::after {
    left: 66.666%;
}

/*==================================================
    Responsive
==================================================*/

@media (max-width:991px) {

    .partner-card {
        padding: 30px;
    }

        .partner-content,
        .partner-card.reverse .partner-content {
            padding: 35px 0 0;
        }

    .partner-logo-box {
        height: 180px;
    }

    .partner-card .row::after {
        display: none;
    }

    .partner-pattern {
        display: none;
    }
}

@media (max-width:768px) {

    .partner-card {
        border-radius: 22px;
        padding: 22px;
    }

    .partner-logo-box {
        height: 160px;
    }

        .partner-logo-box img {
            max-height: 110px;
        }

    .partner-content h2 {
        font-size: 1.55rem;
    }

    .partner-content p {
        font-size: .95rem;
    }
}

@media (max-width:576px) {

    .partner-card {
        text-align: center;
    }

    .partner-content {
        padding-top: 25px;
    }

    .partner-divider {
        margin: 0 auto 25px;
    }

    .partner-logo-box {
        height: 150px;
    }
}

/*---------------------------------------------------------------------------*/
/*Expertise.razor*/
/*---------------------------------------------------------------------------*/

/*==================================================
    Service Section
==================================================*/

/*.service-section {
    position: relative;
    overflow: hidden;
    background: #f8fbff;
}

    .service-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(13,110,253,.05), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.04), transparent 45%);
        pointer-events: none;
    }*/


.service-section {
    position: relative;
    overflow: hidden;
    background: #f5f9ff;
    isolation: isolate;
}

    /* Decorative blue gradients */
    .service-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: radial-gradient(circle at top right, rgba(13,110,253,.06), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.04), transparent 40%);
    }

    /* White fade at top & bottom */
    .service-section::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 12%, rgba(255,255,255,0) 88%, rgba(255,255,255,1) 100% );
    }

    /* Keep all content above the fades */
    .service-section > .container {
        position: relative;
        z-index: 2;
    }


.service-heading {
    font-size: 2.8rem;
    color: var(--blue-hex);
    font-weight: 800;
}

.service-divider {
    width: 80px;
    height: 4px;
    background: var(--blue-hex);
    border-radius: 50px;
    margin: 18px auto;
}

.service-subtitle {
    max-width: 700px;
    margin: auto;
    color: #6c757d;
    line-height: 1.8;
}

/*==================================================
    Card
==================================================*/

.service-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(13,110,253,.15);
        border-color: rgba(13,110,253,.2);
    }

/*==================================================
    Image
==================================================*/

.service-image {
    padding: 35px 35px 10px;
    text-align: center;
}

    .service-image img {
        max-height: 230px;
        object-fit: contain;
        transition: .4s;
    }

.service-card:hover .service-image img {
    transform: scale(1.06);
}

/*==================================================
    Content
==================================================*/

.service-body {
    padding: 10px 30px 30px;
    text-align: center;
}

.service-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #16213e;
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/*==================================================
    Blue Underline
==================================================*/

.service-line {
    width: 55px;
    height: 4px;
    border-radius: 50px;
    background: var(--blue-hex);
    margin: auto auto 20px;
    transition: .35s;
}

.service-card:hover .service-line {
    width: 90px;
}

/*==================================================
    Description
==================================================*/

/*.service-description {
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}*/

/*==================================================
    Link
==================================================*/

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--blue-hex);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .service-link i {
        transition: .3s;
    }

    .service-link:hover {
        color: #0b5ed7;
    }

        .service-link:hover i {
            transform: translateX(6px);
        }

/*==================================================
    Decorative Shape
==================================================*/

/* Top Right */
.service-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -150px;
    right: -150px;
    border-radius: 50%;
    background: rgba(13,110,253,.5);
    transition: .35s;
}

/* Bottom Left */
.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: -70px;
    left: -70px;
    border-radius: 50%;
    background: rgba(13,110,253,.1);
    transition: .35s;
}

/*==================================================
    Responsive
==================================================*/

@media (max-width:991px) {

    .service-heading {
        font-size: 2.3rem;
    }

    .service-image img {
        max-height: 190px;
    }
}

@media (max-width:768px) {

    .service-heading {
        font-size: 2rem;
    }

    .service-card {
        border-radius: 20px;
    }

    .service-image {
        padding: 25px 25px 10px;
    }

        .service-image img {
            max-height: 170px;
        }

    .service-title {
        font-size: 1.25rem;
    }
}

@media (max-width:576px) {

    .service-body {
        padding: 10px 22px 25px;
    }

    .service-image img {
        max-height: 150px;
    }

    /*.service-description {
        font-size: .9rem;
    }*/
}


/*---------------------------------------------------------------------------*/
/*Products.razor*/
/*---------------------------------------------------------------------------*/
/*==================================================
    Product Section
==================================================*/

/*.product-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#ffffff 0%,#f8fbff 15%,#f8fbff 85%,#ffffff 100%);
}

    .product-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(13,110,253,.06), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.05), transparent 40%);
        pointer-events: none;
    }*/

.product-section {
    position: relative;
    overflow: hidden;
    background: #f5f9ff;
    isolation: isolate;
}

    /* Decorative blue gradients */
    .product-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: radial-gradient(circle at top right, rgba(13,110,253,.06), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.04), transparent 40%);
    }

    /* White fade at top & bottom */
    .product-section::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient( to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 12%, rgba(255,255,255,0) 88%, rgba(255,255,255,1) 100% );
    }

    /* Keep all content above the fades */
    .product-section > .container {
        position: relative;
        z-index: 2;
    }

/*==================================================
    Product Card
==================================================*/

.product-card {
    position: relative;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(13,110,253,.12);
    }

    /* Decorative */

    .product-card::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        top: -140px;
        right: -140px;
        background: rgba(13,110,253,.08);
        transition: .4s;
    }

    .product-card::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        bottom: -80px;
        left: -80px;
        background: rgba(13,110,253,.05);
        transition: .4s;
    }

    .product-card:hover::before {
        background: rgba(13,110,253,.12);
    }

    .product-card:hover::after {
        background: rgba(13,110,253,.08);
    }

/*==================================================
    Image
==================================================*/

.product-image {
    position: relative;
    z-index: 2;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

    .product-image img {
        max-width: 100%;
        max-height: 190px;
        object-fit: contain;
        transition: .35s;
    }

.product-card:hover img {
    transform: scale(1.06);
}

/*==================================================
    Body
==================================================*/

.product-body {
    position: relative;
    z-index: 2;
    padding: 10px 30px 30px;
}

.product-title {
    color: #16396b;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-subtitle {
    display: block;
    color: var(--blue-hex);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/*==================================================
    Tags
==================================================*/

.product-tags {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

    .product-tags span {
        background: #eef5ff;
        color: var(--blue-hex);
        padding: 6px 14px;
        border-radius: 30px;
        font-size: .82rem;
        font-weight: 600;
        transition: .3s;
    }

.product-card:hover .product-tags span {
    background: var(--blue-hex);
    color: #fff;
}

/*==================================================
    Description
==================================================*/

.product-description {
    color: #6c757d;
    line-height: 1.8;
    font-size: .95rem;
    flex-grow: 1;
}

/*==================================================
    Buttons
==================================================*/

.product-action {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

    .product-action .btn {
        flex: 1;
        padding: 11px;
        font-weight: 600;
        border-radius: 40px;
    }

.btn-primary {
    background: var(--blue-hex);
    border: none;
}

    .btn-primary:hover {
        background: #0b5ed7;
    }

.btn-outline-primary {
    border: 2px solid var(--blue-hex);
    color: var(--blue-hex);
}

    .btn-outline-primary:hover {
        background: var(--blue-hex);
        color: #fff;
    }

/*==================================================
    Responsive
==================================================*/

@media(max-width:991px) {

    .product-image {
        height: 220px;
    }

        .product-image img {
            max-height: 170px;
        }
}

@media(max-width:768px) {

    .product-body {
        padding: 10px 22px 25px;
    }

    .product-image {
        height: 200px;
    }

        .product-image img {
            max-height: 150px;
        }

    .product-title {
        font-size: 1.35rem;
    }
}

@media(max-width:576px) {

    .product-action {
        flex-direction: column;
    }

        .product-action .btn {
            width: 100%;
        }
}


/*---------------------------------------------------------------------------*/
/*Projects.razor*/
/*---------------------------------------------------------------------------*/

/*==================================================
    Project Portfolio Section
==================================================*/

.project-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fbff 18%, #f8fbff 82%, #ffffff 100% );
}

    .project-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(13,110,253,.06), transparent 35%), radial-gradient(circle at bottom left, rgba(13,110,253,.05), transparent 40%);
        pointer-events: none;
    }

    /*==================================================
    Container
==================================================*/

    .project-section .container {
        position: relative;
        z-index: 2;
    }

/*==================================================
    Card
==================================================*/

.project-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 45px rgba(15,40,90,.07);
    transition: .35s;
}

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(13,110,253,.15);
    }

    /*==================================================
    Decorative Background
==================================================*/

    .project-card::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        top: -170px;
        right: -170px;
        border-radius: 50%;
        background: rgba(13,110,253,.05);
        transition: .4s;
    }

    .project-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        bottom: -110px;
        left: -110px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        transition: .4s;
    }

    .project-card:hover::before {
        background: rgba(13,110,253,.08);
    }

    .project-card:hover::after {
        background: rgba(13,110,253,.05);
    }

/*==================================================
    Number Badge
==================================================*/

.project-number {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient( 135deg, var(--blue-hex), #4d92ff );
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(13,110,253,.30);
    z-index: 5;
}

/*==================================================
    Reverse Layout
==================================================*/

.project-card.reverse .project-number {
    left: 35px;
    right: auto;
}

/*==================================================
    Image Area
==================================================*/

.project-image {
    position: relative;
    z-index: 2;
    background: linear-gradient( 180deg, #ffffff, #f8fbff );
    border-radius: 24px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
    border: 1px solid #eef2f7;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

    /* Decorative glow */

    .project-image::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(13,110,253,.05);
        z-index: 0;
    }

    /* Image */

    .project-image img {
        position: relative;
        z-index: 2;
        max-height: 320px;
        max-width: 100%;
        object-fit: contain;
        transition: .35s;
    }

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/*==================================================
    Row Alignment
==================================================*/

.project-card .row {
    position: relative;
    z-index: 2;
    align-items: center;
}

/*==================================================
    Responsive (Layout Only)
==================================================*/

@media (max-width:991px) {

    .project-card {
        padding: 35px;
    }

    .project-image {
        min-height: 260px;
        margin-top: 30px;
    }

        .project-image img {
            max-height: 240px;
        }
}

@media (max-width:768px) {

    .project-card {
        padding: 25px;
        border-radius: 22px;
    }

    .project-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        top: 20px;
        right: 20px;
    }

    .project-card.reverse .project-number {
        left: 20px;
    }

    .project-image {
        min-height: 220px;
        padding: 20px;
    }
}

/*==================================================
    Content
==================================================*/

.project-content {
    position: relative;
    z-index: 2;
}

.project-category {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #eef5ff;
    color: var(--blue-hex);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.project-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #173B6C;
    margin-bottom: 18px;
    line-height: 1.25;
}

.project-content p {
    /*color: #64748b;*/
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 30px;
}

/*==================================================
    Tags
==================================================*/

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

    .project-tags span {
        padding: 8px 16px;
        background: #f5f9ff;
        border: 1px solid #dce9ff;
        border-radius: 30px;
        color: var(--blue-hex);
        font-size: .82rem;
        font-weight: 600;
        transition: .3s;
    }

.project-card:hover .project-tags span {
    background: var(--blue-hex);
    color: #fff;
    border-color: var(--blue-hex);
}

/*==================================================
    Buttons
==================================================*/

.project-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .project-buttons .btn {
        border-radius: 50px;
        padding: 12px 26px;
        font-weight: 600;
        transition: .35s;
    }

    .project-buttons .btn-primary {
        background: linear-gradient( 135deg, var(--blue-hex), #4d92ff);
        border: none;
        box-shadow: 0 12px 25px rgba(13,110,253,.20);
    }

        .project-buttons .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(13,110,253,.30);
        }

    .project-buttons .btn-outline-primary {
        border: 2px solid var(--blue-hex);
        color: var(--blue-hex);
        background: #fff;
    }

        .project-buttons .btn-outline-primary:hover {
            background: var(--blue-hex);
            color: #fff;
        }

/*==================================================
    Intro Section
==================================================*/

.project-subheading {
    display: inline-block;
    padding: 8px 18px;
    background: #eef5ff;
    color: var(--blue-hex);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .8rem;
    margin-bottom: 15px;
}

.project-heading {
    font-size: 2.9rem;
    font-weight: 800;
    color: #173B6C;
    margin-bottom: 20px;
}

.project-intro {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    line-height: 1.9;
    font-size: 1.05rem;
}

/*==================================================
    Hover
==================================================*/

.project-card:hover {
    border-color: rgba(13,110,253,.15);
}

    .project-card:hover .project-category {
        background: var(--blue-hex);
        color: #fff;
    }

/*==================================================
    Responsive
==================================================*/

@media(max-width:991px) {

    .project-heading {
        font-size: 2.3rem;
    }

    .project-content {
        text-align: center;
    }

    .project-tags {
        justify-content: center;
    }

    .project-buttons {
        justify-content: center;
    }
}

@media(max-width:768px) {

    .project-heading {
        font-size: 2rem;
    }

    .project-content h2 {
        font-size: 1.7rem;
    }

    .project-content p {
        font-size: .95rem;
    }

    .project-image {
        margin-top: 25px;
    }
}

@media(max-width:576px) {

    .project-heading {
        font-size: 1.8rem;
    }

    .project-content h2 {
        font-size: 1.45rem;
    }

    .project-buttons {
        flex-direction: column;
    }

        .project-buttons .btn {
            width: 100%;
        }

    .project-tags {
        gap: 8px;
    }

        .project-tags span {
            font-size: .75rem;
            padding: 7px 14px;
        }
}