/* The Logistics Industry Has a Quality Problem */

.kg-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.kg-section{
    padding: 100px 8%;
}

/* kg-left */
.kg-section .left{
    width: 50%;
}

.kg-section .left{
    font-size: 30px;
}

.kg-section .left p{
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;


}

.kg-section .left button{
    padding: 15px 20px;
    border-radius: 30px;
    background: #3291B6;
    color: white;
    border: none;
    font-weight: 600;
    margin-top: 20px;
}



/* kg-right */


.kg-section .right{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    justify-items: center;
}
.kg-section .right p{
    color: black;
}
.kg-section .card{
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 24px;
    padding: 90px 28px 28px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kg-section .card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3291B6, #00c2ff);
    border-radius: 24px 24px 0 0;
}
.icon i{
    color: #ffffff;
}

.kg-section .card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(50, 145, 182, 0.16);
}
.kg-section .card h4{
    color: #12344a;
    margin-bottom: 10px;
}
.kg-section .card p{
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}


/* ICON */

.icon{
    position: absolute;
    top: 24px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3291B6, #00c2ff);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(50, 145, 182, 0.3);

}



/* ecosystem section */

.eco-section{
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.eco-section::before{
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(50, 145, 182, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.eco-section::after{
    content: "";
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(16, 196, 127, 0.14), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.eco-heading{
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.eco-badge{
    display: inline-block;
    background: #3291B6;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 100px 10px 100px 10px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.eco-heading h2{
    font-size: 2.4rem;
    font-weight: 700;
    color: #12344a;
    margin: 0;
}
.eco-heading h2 span{
    color: #3291B6;
}

.all-item{
    position: relative;
    z-index: 1;
}
.eco-img img{
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(50, 145, 182, 0.15);
}
.footer-top{
    background: #eef6fb;
    border: 1px solid #e3eef5;
    border-radius: 30px;
    padding: 40px 44px;
    box-shadow: 0 12px 32px rgba(50, 145, 182, 0.1);
    line-height: 1.8;
    font-weight: 600;
    color: #333333;
    font-size: 1.15rem;
    text-align: center;
}
.footer-top p{
    margin: 0;
}
.footer-top span{
    color: #3291B6;
    font-weight: 700;
}
.eco-points{
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.eco-points div{
    background: #ffffff;
    border: 1px solid #e3eef5;
    padding: 10px 18px;
    border-radius: 40px;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(50, 145, 182, 0.1);
}
.eco-points i{
    color: #16c47f;
}

/* footer section */

.footer-section{
    background: #F6F1F1;
    padding: 40px 0 40px;
}

.col a{
    text-decoration: none;
    display: block;
    line-height: 2;
    color: #3291B6;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}
.col a:hover{
    color: #0a1e3c;
    background: transparent;
    transform: translateX(4px);
}

.footer-columns{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(18, 52, 74, 0.15);
}
.footer-columns h4{
    color: #12344a;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copy-right{
    background: #8d7d7d;
    padding: 18px 0;
}
.copy-right p{
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.right-image1 img{
    width: 400px;
    margin-top: 0;
    border-radius: 60px 5px;
    max-width: 100%;
}
.all-item{
     display: flex;
     gap: 30px;
     flex-direction: row-reverse;
     align-items: center;
}
.left-image1 img{
    width: 350px;
    margin-bottom: 0;
    max-width: 100%;
}
.footer-top{
    line-height: 1.7;
    font-weight: 600;
    color: #333333;
    font-size: 1.15rem;
}
.footer-top span{
    color: #3291B6;
    font-weight: 700;
}

/* ===== Responsive Layout ===== */

@media (max-width: 1024px) {
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .platform { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ai-grid { grid-template-columns: 1fr; }
    .about-sec-stats { gap: 30px; flex-wrap: wrap; justify-content: center; }
    .hero-left h2 { font-size: 46px; }
    .hero { padding: 30px 6%; }

    .kg-container { flex-direction: column; gap: 40px; }
    .kg-section .left { width: 100%; }

    .all-item { flex-wrap: wrap; justify-content: center; }
    .right-image1 img, .left-image1 img { max-width: 45%; }

    .eco-heading h2 { font-size: 2rem; }
    .footer-top { font-size: 1.05rem; }
}

@media (max-width: 768px) {
    header { flex-direction: column; padding: 10px 16px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; }
    nav a { margin: 6px 10px; font-size: 15px; }
    .logo { justify-content: center; font-size: 26px; }

    .hero { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; gap: 24px; }
    .hero-left h2 { font-size: 34px; text-align: center; }
    .hero-left pre { font-size: 13px; }
    .hero-right img { position: static; width: 85%; max-width: 380px; transform: none; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-buttons a { margin-right: 0; }
    .features { flex-direction: column; align-items: center; gap: 18px; }

    .roles-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .role-card h3 { font-size: 1.2rem; }
    .platform { grid-template-columns: 1fr; }
    .platform-section { padding: 50px 16px; }
    .main-titel h1 { font-size: 26px; }
    .item { text-align: center; }

    .kg-section { padding: 60px 16px; }
    .kg-container { flex-direction: column; gap: 36px; }
    .kg-section .left { width: 100%; }
    .kg-section .right { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .kg-section .card { width: 100%; padding: 40px 18px 24px; }

    .ai-core { padding: 50px 0; }
    .ai-features { grid-template-columns: 1fr; }
    .industry-learning { padding: 24px; }

    .inside-all { flex-direction: column; gap: 24px; }
    .left-image img, .right-image img { width: 90%; max-width: 320px; margin: 0; }
    .right-image img { margin-top: 0; }
    .about-sec-stats { margin-bottom: 30px; gap: 24px; }

    .eco-section { padding: 60px 0; }
    .eco-heading { margin-bottom: 40px; }
    .eco-heading h2 { font-size: 1.6rem; }
    .footer-top { padding: 28px 22px; font-size: 1rem; text-align: center; }

    .footer-section { padding: 40px 0 30px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .all-item { flex-direction: column; gap: 20px; }
    .right-image1 img, .left-image1 img { width: 90%; max-width: 320px; margin: 0 auto; }

    .container { padding: 0 20px; }
}

@media (max-width: 640px) {
    .roles-grid { grid-template-columns: 1fr; }
    .kg-section .right { grid-template-columns: 1fr; }
    .hero-left h2 { font-size: 30px; }
    .nav a { margin: 5px 8px; font-size: 14px; }
}

@media (max-width: 480px) {
    .hero-left h2 { font-size: 28px; }
    .hero-right img { width: 90%; max-width: 300px; }
    .footer-columns { grid-template-columns: 1fr; text-align: center; }
    .roles-grid { gap: 16px; }
    .kg-section .card { padding: 36px 16px 22px; }
    .main-titel h1 { font-size: 22px; }
    .ai-features { gap: 16px; }
    .eco-points div { padding: 8px 14px; font-size: 13px; }
    .eco-heading h2 { font-size: 1.4rem; }
    .footer-top { padding: 24px 18px; }
}

/* ===== Bright Color Accents ===== */

nav a:hover{
    color: #3291B6;
}

.titel h2{
    background: #3291B6;
}

.about-sec-btn{
    background: #3291B6;
}

.kg-section .left button{
    background: #3291B6;
}

.step-li i{
    color: #16c47f;
}

.how-title h3{
    color: #1e9fff !important;
}

/* ===== No Horizontal Scroll ===== */

html, body {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}
section, header, footer, img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #F6F1F1;
}
::-webkit-scrollbar-thumb {
    background: #3291B6;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2a7d9e;
}
