* {
    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: 15px;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
}

/* .nav-link:hover { */
    /* color:#fff !important; */
/* } */

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #1991ff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-theme {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.btn-theme:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* 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);
}

/* SECTION */
section {
    /* padding:90px 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: #b8c0cc;
    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: white;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 20px;
}

.footer-brand {
    color: #fff;
    font-size: 30px;
    font-weight: 750;
    margin-bottom: 20px;
}

.footer-brand span {
    color: black;
}

.footer-title {
    color: black;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: black;
    margin-bottom: 10px;
    transition: 0.8s;
    position: relative;
}

.footer-links a:hover {
    /* color: black; */
    padding-left: 5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #1991ff;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgb(48, 47, 47);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: black;
    font-size: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #017bee;
    border-radius: 12px;
    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: linear-gradient(135deg, #1489CC, #0D2A52);
    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: #cccbcba1;
}

.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: #eeecec;
}

.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: 40px;
    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;
}

.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: 55px 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:75px;
    height:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#1489CC,#0D2A52);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.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:48px;
    font-weight:800;
    color:#0D2A52;
}

.focus-card{
    background:#fff;
    padding:40px 30px;
    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: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);
}

.info-box{
        display: flex;
    gap: 20px;
    margin-bottom: 1px;
    flex-direction: column;
}

.info-box i{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#1489CC,#0D2A52);
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* 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{
    bottom: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;
    }

}
/* new */
/* ================================
   ECOSYSTEM RIGHT SIDE DESIGN
================================ */


.ecosystem-wrapper-new{

    width:650px;          /* fixed width */

    display:grid;

    grid-template-columns:repeat(2, 280px);

    gap:70px 40px;

    justify-content:center;

    padding:40px 0;

    flex-shrink:0;

}



/* CARD */

.ecosystem-card-box-new{

    width:280px;

    min-height:240px;

    background:#fff;

    border-radius:35px;

    padding:45px 25px 25px;

    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}


/* ICON */

.ecosystem-icon-new{


    position:absolute;

    top:-32px;

    left:50%;


    transform:translateX(-50%);


    width:65px;

    height:65px;


    border-radius:50%;


    background: linear-gradient(135deg, #1489CC, #0D2A52);


    color:white;


    display:flex;

    align-items:center;

    justify-content:center;


    font-size:28px;


    z-index:2;


}




/* TITLE */

.ecosystem-card-box-new h5{

    text-align:center;

    color:#102653;

    font-size:16px;

    line-height:1.3;

    font-weight:700;

    margin-bottom:15px;


}




/* LIST */


.ecosystem-card-box-new ul{

    margin:0;

    padding-left:18px;

}


.ecosystem-card-box-new li{

    font-size:13px;

    line-height:1.8;

    color:#333;

}



/* BORDER COLORS */


.card-green-new{

    border:2px solid #0b80fe;

}


.card-teal-new{

    border:2px solid #0b80fe;

}


.card-purple-new{

    border:2px solid #0b80fe;

}


.card-blue-new{

    border:2px solid #0b80fe;

}




/* RESPONSIVE */


@media(max-width:991px){


.ecosystem-wrapper-new{

    max-width:500px;

    gap:60px 25px;

}


}


@media(max-width:600px){


.ecosystem-wrapper-new{

    grid-template-columns:1fr;

    gap:70px;

}


}
.b2{
    height: 90vh;
}