* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

#root {
    --orange: #115ddc !important;
}

.--orange {
    color: var(--orange) !important;
}

/* .--green {
    color: var(--green) !important;
} */

a {
    text-decoration: none;
}

/* NAVBAR */
.custom-navbar {
    background: white;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: black;
}

.nav-link {
    color: black !important;
    margin-left: 40px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
}

/* .nav-link:hover { */
/* color:#fff !important; */
/* } */

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #05316d;
    left: 0;
    bottom: -1px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-theme {
    background: #082c4f;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.btn-theme:hover {
    transform: translateY(-2px);
    color: #fff;
    background: #082c4f;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}




/* slider */
.fade-gallery-wrapper {
    width: 100%;
    overflow: hidden;
}

.fade-gallery-img {
    width: 100%;
    height: 500px;

}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fade-gallery-img {
        height: 250px;
        width: 100%;
        /* margin-top: 50px; */
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
        width: 12%;
    }
}

/* end slider */
/* about us */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.left-box {
    position: relative;

}

.left-box img {
    width: 100%;
    border: 5px solid #082c4f;
    border-radius: 40px;
}

.badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge h2 {
    color: #1d2452;
}

.badge p {
    font-size: 10px;
    text-align: center;
}


.right-box h4 {
    color: #1d2452;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.right-box h3 {
    color: #1d2452;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

.right-box h1 {
    font-size: 42px;
    color: #1d2452;
    margin-bottom: 20px;
}

.desc {
    color: gray;
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature span {
    width: 35px;
    height: 35px;
    background: #00d4c7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 18px;
}

.feature h3 {
    color: #1d2452;
    margin-bottom: 5px;
}

/* end about us  */
/* gallery */

.gallery_item {
    overflow: hidden;
    margin-top: 20px;
}

.popup-gallery a {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 250px;
    max-height: 250px;
    border: 2px solid #dadada;
    border-radius: 10px;
    transition: 0.3s ease;
}

@media (max-width: 1000px) {
    .popup-gallery img {
        min-height: 150px;
        max-height: 150px;
    }
}

.singicon_btn_nlf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 2;
}

.singicon_btn_nlf svg {
    color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
}

.popup-gallery a:hover img {
    opacity: 0.5;
}

/* Close Button */
.mfp-close {
    color: white !important;
    font-size: 40px !important;
    right: 20px;
    top: 10px;
}

.rounded-3 {
    border: 4px solid #1b0969;
    border-radius: var(--bs-border-radius-lg) !important;
}

/* end gallery */

/*====================
41. Testimonial css 
======================*/

.testimonial-area {
    /* background-image: linear-gradient(90deg, rgb(0 0 0 / 43%) 0%, rgb(0 0 0 / 51%) 100%),
        url(./assets/img/about3.); */
    background: #082c4f;
    padding: 60px 0;
}

.site-title {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-item {
    position: relative;
    background: #fff;
    padding: 30px;
    border-bottom: 5px solid #15A90E;
    border-radius: 30px 30px 0 30px;
    /* min-height: 250px; */
    margin: 10px;
}

.testimonial-rate {
    color: #FB9902;
    margin-bottom: 15px;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
    text-align: justify;
}

.testimonial-quote-icon {
    position: absolute;
    top: 22%;
    left: 95%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    font-size: 60px;
}

.testimonial-content {
    border-left: 4px solid #15A90E;
    padding-left: 15px;
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: 20px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
}

.owl-dot.active span {
    background: #000 !important;
}

/* SECTION */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    color: #fff;
    font-size: 18px;
}

.section-text {
    color: #ffffff !important;
    line-height: 1.8;
    font-size: 15px;
}

/* TECH BACKGROUND */
.tech-bg::before {
    content: '';
    position: absolute;
    /* width:500px; */

    height: 500px;
    background: rgba(0, 123, 255, 0.068);
    filter: blur(120px);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: -1;
}

.tech-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    filter: blur(100px);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: -1;
}

/* FOOTER */
footer {
    background: rgb(0, 0, 0);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 20px;
}

.footer-brand {
    color: #ffffff;
    font-size: 30px;
    font-weight: 750;
    margin-bottom: 20px;
}

.footer-brand span {
    color: rgb(255, 255, 255);
}

.footer-title {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    width: 55%;
    object-fit: contain;
    transition: 0.3s ease;
    background: white;
    padding: 7px;
    border-radius: 5px;
}

.footer-links a {
    display: block;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    /* color: black; */
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgb(48, 47, 47);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #15a90e;
    border-radius: 50px;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

@media(max-width:991px) {
    .navbar-nav {
        margin-top: 20px;
    }

    .nav-link {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* hero */

/* =========================
GLOBAL
========================= */

section {
    position: relative;
    /* padding: 100px 0; */
}

a {
    text-decoration: none;
}

.theme-btn {
    background: #15a90e;
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: .4s;
    display: inline-block;
}

.theme-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

.theme-btn-outline {
    border: 1px solid black;
    color: rgb(85, 85, 85);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: .4s;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.theme-btn-outline:hover {
    background: #ffffff8c;
    color: rgba(20, 20, 20, 0.781);
}

/* =========================
HERO SECTION
========================= */

.hero-section {
    background: rgba(236, 233, 233, 0.884);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.404);
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgb(85, 85, 85);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =========================
VISUAL
========================= */

.hero-visual {
    position: relative;
    height: 550px;
}

/* .main-circle{
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #1db2db, #32c2b16c);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(30px);
    opacity: .5;
} */

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 30px;
    width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: .4s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.glass-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1489CC;
}

.card-1 {
    top: 40px;
    left: 0;
}

.card-2 {
    top: 180px;
    right: 0;
}

.card-3 {
    bottom: 40px;
    left: 70px;
}

/* =========================
INFO SECTION
========================= */

.info-section {
    background: #cccbcb40;
}

.info-card {
    background: #ffffffbe;
    border-radius: 22px;
    padding: 40px 30px;
    height: 100%;
    transition: .4s;
    border: 1px solid rgba(0, 0, 0, 0.507);
}

.info-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(91, 91, 94, 0.116);

}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1489CC, #0D2A52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 32px;
    color: #fff;
}

.info-card h4 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
}

.info-card p {
    color: rgb(85, 85, 85);
    line-height: 1.8;
}

/* =========================
CTA SECTION
========================= */

.cta-section {
    background: #eeecec;
}

.cta-wrapper {

    margin: auto;
}

.cta-wrapper h2 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-wrapper p {
    color: rgb(85, 85, 85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px) {

    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        margin-top: 80px;
        height: 500px;
    }

    .glass-card {
        width: 190px;
        padding: 24px;
    }

    .cta-wrapper h2 {
        font-size: 40px;
    }
}

@media(max-width:767px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .glass-card {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .main-circle {
        display: none;
    }

    .cta-wrapper h2 {
        font-size: 32px;
    }
}

/* about */
/* =========================
ABOUT PAGE CSS
========================= */

.about-hero-section {
    background: #eeecec;
    /* padding: 120px 0; */
}

.about-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: black;
}

.about-subtitle {
    color: rgb(85, 85, 85);
    line-height: 1.9;
    font-size: 18px;
}

.about-image-wrapper {
    position: relative;
    height: 550px;
}

.about-image-box {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
}

.image-2 {
    width: 240px;
    height: 300px;
    right: 0;
    top: 80px;
}

.image-3 {
    width: 320px;
    height: 220px;
    bottom: 0;
    left: 120px;
}

.about-company-section,
.core-values-section,
.group-company-section {
    /* padding: 100px 0; */
    background: #f8f8f8;
}

.section-content h2,
.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: black;
}

.section-content p,
.section-title p {
    color: rgb(85, 85, 85);
    line-height: 1.9;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0D2A52, #1489CC);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: #fff;
}

.vision-mission-section {
    background: #dfdede;
    /* padding: 100px 0; */
}

.vision-card,
.value-card,
.company-card,
.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.274);
    border-radius: 24px;
    padding: 25px;
    height: 100%;
    transition: .4s;
}

.vision-card:hover,
.value-card:hover,
.company-card:hover {
    transform: translateY(-10px);
}

.vision-card h3,
.value-card h4,
.company-card h4 {
    color: black;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.vision-card p,
.value-card p,
.company-card p {
    color: rgb(85, 85, 85);
    line-height: 1.8;
}

@media(max-width:991px) {

    .about-title {
        font-size: 48px;
    }

    .section-content h2,
    .section-title h2 {
        font-size: 38px;
    }

    .about-image-wrapper {
        margin-top: 60px;
    }
}

@media(max-width:767px) {

    .about-title {
        font-size: 36px;
    }

    .section-content h2,
    .section-title h2 {
        font-size: 30px;
    }

    .about-image-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-image-box {
        position: relative;
        width: 100%;
        height: 300px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* MEDIA QUERY OF INDEX PAGE  */
/* =========================
MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 767px) {


    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Navbar */
    .navbar-brand {
        font-size: 24px;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        margin: 8px 0;
    }

    .btn-theme {
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .hero-section {
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        height: auto;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .glass-card {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        padding: 25px;
        text-align: center;
    }

    .main-circle {
        display: none;
    }

    /* Info Cards */
    .info-card {
        padding: 25px;
        text-align: center;
    }

    .info-card h4 {
        font-size: 22px;
    }

    .icon-box {
        margin: 0 auto 20px;
    }

    /* CTA */
    .cta-wrapper {
        text-align: center;
    }

    .cta-wrapper h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-wrapper p {
        font-size: 15px;
    }

    /* Footer */
    footer {
        text-align: center;
    }

    .footer-brand {
        font-size: 26px;
    }

    .footer-title {
        margin-top: 25px;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icons a {
        margin-right: 0;
    }

    .footer-bottom {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* Tablet Fix */
@media (min-width: 768px) and (max-width: 991px) {

    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .cta-wrapper h2 {
        font-size: 40px;
    }

    footer {
        text-align: center;
    }
}

/* logo */
.logo {
    height: 43px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

/* industry we serve */

/* =========================
INDUSTRIES SECTION
========================= */

.industries-section {
    background: #f8fbff;
}

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(20, 137, 204, .1);
    color: #1489CC;
    font-weight: 600;
    font-size: 14px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0D2A52;
}

.section-description {
    max-width: 850px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.industry-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    border: 1px solid rgba(20, 137, 204, .08);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 137, 204, .15);
}

.industry-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #1489CC, #0D2A52);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.industry-icon i {
    color: #fff;
    font-size: 30px;
}

.industry-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0D2A52;
    margin-bottom: 15px;
}

.industry-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media(max-width:768px) {

    .section-title {
        font-size: 34px;
    }

    .industry-card {
        padding: 25px;
    }

}

/* =========================
SOLUTIONS SECTION
========================= */

.solutions-section {
    background: linear-gradient(180deg,
            #f8fbff 0%,
            #ffffff 100%);
}

/* .section-tag {
    background: rgba(20, 137, 204, 0.1);
    color: #1489CC;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
} */

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0D2A52;
}

.section-desc {
    max-width: 850px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

.solution-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all .4s ease;
    border: 1px solid rgba(20, 137, 204, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #1489CC,
            #0D2A52);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 137, 204, 0.15);
}

.solution-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg,
            #1489CC,
            #0D2A52);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-icon i {
    color: #fff;
    font-size: 30px;
}

.solution-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0D2A52;
}

.solution-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

@media(max-width:768px) {

    .section-title {
        font-size: 34px;
    }

    .solution-card {
        padding: 25px;
    }

}

.industries-banner {
    position: relative;
    min-height: 349px;

    background: url('assets/img/industry.png') center center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.industries-banner .overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgb(0 0 0 / 43%) 0%, rgb(0 0 0 / 51%) 100%), url('../img/industry.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment:fixed; */
}

.content-box {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    color: #fff;
}

.content-box h2 {
    font-size: 56px;
    font-weight: 800;
    margin: 20px 0;
}

.content-box p {
    font-size: 18px;
    line-height: 1.8;
    opacity: .95;
}

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;

    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);

    color: #fff;
    backdrop-filter: blur(10px);
}

@media(max-width:768px) {

    .industries-banner {
        min-height: 300px;
    }

    .content-box h2 {
        font-size: 34px;
    }

}

/* solution page */
/* HERO */

.solutions-hero {
    background:
        linear-gradient(90deg, rgb(0 0 0 / 43%) 0%, rgb(0 0 0 / 51%) 100%),
        url('../img/industry.png');

    padding: 110px 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgb(15, 15, 15);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    /* color:#fff; */
    margin-bottom: 25px;
}

/* GRID */

.solutions-grid {
    background: #f8fbff;
}

.solution-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: .4s;
    border: 1px solid rgba(20, 137, 204, .08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(20, 137, 204, .15);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 47px;
    background: #15A90E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.icon-box i {
    color: #fff;
    font-size: 30px;
}

.solution-card h3 {
    color: #0D2A52;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .solution-card {
        padding: 25px;
    }

}

/* TECHNOLOGY & SECURITY */
/* ==================================
TECHNOLOGY & SECURITY HERO
================================== */

.tech-security-hero {
    background:
        linear-gradient(rgba(20, 137, 204, .85),
            rgba(13, 42, 82, .90)),
        url('../img/technology-security-banner.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 0;
    color: #fff;
}

.hero-content {
    max-width: 950px;
    margin: auto;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    opacity: .95;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(3, 3, 3, 0.418);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

/* ==================================
RELIABILITY CARD
================================== */

.reliability-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    border: 1px solid rgba(20, 137, 204, .08);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.reliability-card h2 {
    color: #0D2A52;
    font-weight: 700;
    margin-bottom: 15px;
}

.reliability-card p {
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* ==================================
FOCUS SECTION
================================== */

.focus-section {
    background: #f8fbff;
}

.section-title {
    font-size: 45px;
    font-weight: 800;
    color: #0D2A52;
}

.focus-card {
    background: #fff;
    padding: 18px 18px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    border: 1px solid rgba(20, 137, 204, .08);
}

.focus-card img {
    width: 100px;
    margin-bottom: 10px;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 137, 204, .15);
}

.focus-card i {
    font-size: 40px;
    color: #1489CC;
    margin-bottom: 20px;
}

.focus-card h4 {
    font-size: 22px;
    color: #0D2A52;
    font-weight: 700;
    margin: 0;
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 34px;
    }

    .reliability-card {
        padding: 25px;
        margin-top: -40px;
    }

}

/* partner */
/* HERO */

.partner-hero,
.contact-hero {
    background:
        linear-gradient(rgba(20, 137, 204, .85),
            rgba(13, 42, 82, .90)),
        url('../img/contact-banner.jpg');

    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
}

.hero-content {
    max-width: 950px;
    margin: auto;
}

/* CONTACT INFO */

.contact-info-card,
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    text-align: center;
}

.info-box {
    align-items: center;
    /* text-align: center; */
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-direction: column;
}

.info-box i {
    width: 60px;
    height: 60px;
    background: #05316d;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

/* FORM */

.form-control {
    height: 60px;
    border-radius: 12px;
}

textarea.form-control {
    height: auto;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

/* PARTNER CARDS */

.partner-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 24px;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.partner-card:hover {
    transform: translateY(-10px);
}

.partner-card i {
    font-size: 40px;
    color: #1489CC;
    margin-bottom: 20px;
}

.partner-section {
    background: #f8fbff;
}

.partner-content p {
    color: #666;
    line-height: 1.9;
}

.partner-visual {
    position: relative;
}

.partner-visual img {
    width: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    min-width: 220px;
}

.floating-card i {
    color: #1489CC;
    font-size: 30px;
    margin-bottom: 10px;
}

.floating-card h5 {
    margin: 0;
    color: #0D2A52;
    font-weight: 600;
}

.card-one {
    top: 30px;
    left: -30px;
}

.card-two {
    bottom: 30px;
    right: -30px;
}

@media(max-width:991px) {

    .card-one,
    .card-two {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }

}