
    body{
        margin:0;
        font-family: "Segoe UI", sans-serif;
        background:#f5f5f5;
    }

    /* MAIN WRAPPER */
    .g-international-aboutus{
        width:100%;
        padding:40px 0;
        overflow:hidden;
        position:relative;
    }

    .g-international-aboutus h2{
        text-align:center;
        font-size:32px;
        font-weight:700;
        margin-bottom:20px;
        color:#00246B;
    }

    /* Slider container */
    .g-slider-wrapper{
        display:flex;
        gap:20px;
        overflow:hidden;
        scroll-behavior:smooth;
        padding:10px 0;
    }

    /* Single Card */
    .g-card{
        min-width:300px;
        background:#fff;
        border-radius:12px;
        padding:20px;
        box-shadow:0 4px 15px rgba(0,0,0,0.1);
        text-align:center;
        flex-shrink:0;
        transition:0.3s;
    }

    .g-card img{
        width:100%;
        height:180px;
        object-fit:contain;
        border-radius:10px;
        margin-bottom:15px;
    }

    .g-card-title{
        font-size:18px;
        font-weight:700;
        color:#00246B;
    }

    /* Arrows */
    .g-arrow{
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        width:45px;
        height:45px;
        border-radius:50%;
        background:#1e3c72;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:22px;
        cursor:pointer;
        z-index:10;
    }

    .g-arrow:hover{
        background:#162e54;
    }

    .g-left{
        left:20px;
    }
    .g-right{
        right:20px;
    }
    .about-section {
    width: 100%;
    padding: 40px 20px;
    background: #f8f8f8;
    font-family: Arial, sans-serif;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ----------- Image Styling ----------- */
.about-image {
    width: 100%;
    max-height: 980px;
    object-fit: cover;
    border-radius: 12px;

}

/* ----------- Text Styling ----------- */
.about-title {
    color: #b31217;
    text-align: center;
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 10px;
    margin-top:-76px;
    font-size: 17px;
}

.about-subtitle {
    text-align: center;
    font-size: clamp(16px, 3vw, 20px);
    color: #444;
    margin-bottom: 25px;
}

.about-text {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #444;
    line-height: 1.8;
}

/* ----------- Why Choose Us ----------- */
.about-heading {
    font-size: clamp(18px, 3vw, 26px);
    color: #b31217;
    margin-top: 30px;
}

.about-list li {
    font-size: clamp(14px, 2.5vw, 17px);
    color: #444;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ----------- Mobile Optimization ----------- */
@media (max-width: 600px) {
    .about-container {
        padding: 20px;
    }
}

    /* MOBILE VIEW - only ONE card visible */
    /* MOBILE VIEW - only ONE card visible */
@media(max-width:768px){

    .g-international-aboutus{
        padding:20px 0;
    }

    .g-slider-wrapper{
        gap:0 !important;         
    }

    .g-card{
        min-width:100% !important; /* ONE CARD FULL SCREEN */
        margin:0 !important;
        padding:15px;
        box-sizing:border-box;
    }

    /* Arrows move above slider */
    .g-arrow{
        width:35px;
        height:35px;
        top:45%;
        font-size:18px;
    }

    .g-left{ left:10px; }
    .g-right{ right:10px; }
}