/* body font stye */
:root{
    --text-blue: #281670;
}
body {
    word-spacing: 2px;
    font-size: 17px !important;
}
p,
h6, button, .btn {
    /* font-family: 'Elviante', serif !important; */
    font-family: 'Poppins', sans-serif !important;    
}

h1,
h2,
h3,
h4,
a,
label,
span  {
    font-family: 'Lora', serif !important;
}

p {
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
button, .btn {
    letter-spacing: 0.5px
}
.text-blue {
    color: var(--text-blue);
}
#topbar {
    background-color: #281670;
}

a {
    text-decoration: none;
}

.DARKBLUE {
    color: #281670;
}

/* overall buttons */
button.btn {
    color: white;
    background-color: #281670;
}

button.btn:hover {
    color: white;
    background-color: #FF8514;
}

.btns.btn {
    color: white;
    background-color: #281670;
}

.btns.btn:hover {
    color: white;
    background-color: #FF8514;
}

/* navbar */

#navbarNav .nav-link {
    font-weight: 500;
    color: #000000;
}

/* header active */
.menu-link {
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #281670 !important;
}

.menu-link {
    position: relative;
}


.menu-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 70%;
    height: 3px;
    background: #281670;
    transform: translateX(-50%) scaleX(0);
    transition: 0.3s ease;
    border-radius: 30px;
}

/* Mobile screen */
@media (max-width: 768px) {
    .menu-link.active-menu {
        color: #281670 !important;
    }
}

@media (min-width: 769px) {
    .menu-link:active {
        color: #281670 !important;
    }

    .menu-link.active-menu::before {
        transform: translateX(-50%) scaleX(1);
    }
}

/* .menu-link.active-menu::before {
    transform: translateX(-50%) scaleX(1);
} */



/* dropdown item hover */
.dropdown-menu .dropdown-item:hover {
    background-color: #281670;
    color: #fff;

}

/* when item is active / clicked */
.dropdown-menu .dropdown-item:active {
    background-color: #281670;
    color: #fff;
}

.dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
}




/* Submenu parent */
.dropdown-submenu {
    position: relative;
}

/* Submenu (inner child) */
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

/* Show submenu on hover */

/* for product page automotive dropdown */
/* wrapper */
.submenu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* icon */
.submenu-icon {
    cursor: pointer;
    padding: 5px;
    font-weight: bold;
    font-size: 12px;
    /* ✅ change this — was 22px */
    padding-right: 10px;
}


/* hide submenu default */
.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
}

/* DESKTOP hover */
@media (min-width: 768px) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block !important;
    }

    .submenu-icon {
        display: none;
        /* hide icon in desktop */
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .dropdown-submenu .dropdown-menu {
        position: static;
    }

    .dropdown-submenu.open>.dropdown-menu {
        display: block;
    }
}

/*======home page======*/
/* .banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.678), rgba(0, 0, 0, 0.178)), url("../img/banner_img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
} */

.banner-item {
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 400px;
    top:0;
    object-fit: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.062), rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0));
}


/* Text on banner */
.banner-content {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);

    color: #fff;
   
}
.banner-content p{
    font-size: medium;
    font-weight: 500;
}
/* Optional dark overlay */
.banner-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}


/* for right and left buttons for home banner slidder */
/* Common button style */
.banner-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border: none;
    padding: 10px 15px;
    font-size: 25px !important;
    border-radius: 50%;
}

/* LEFT button */
.banner-carousel .owl-nav .owl-prev {
    left: 20px;
}

/* RIGHT button */
.banner-carousel .owl-nav .owl-next {
    right: 20px;
}

/* Hover effect */
.banner-carousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

 .banner-carousel .owl-stage {
     margin-top: 0% !important;
     margin-bottom: 0% !important;
     
 }

.btn_active {
    color: white;
    background-color: #FF8514 !important;

}



.btn_active:hover {
    color: white;
    background-color: #281670 !important;

}



/* excellence our passion */

.passion {
    margin-bottom: 5%;
    margin-top: 4%;
}

.passion p {
    text-align: justify;
}


.passion img {

    height: 250px;
    width: 350px;
    padding: 20px 10px;
    border-radius: 20px;
}


.passiontxt h1,
h6 {
    color: #281670;
}


.passiontxt {
    transition: 0.3s;
    border: #33333388 2px solid;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.passiontxt:hover {
    transform: translateY(-5px);
}


/* new */
.passiontxt {
    position: relative;
    padding: 22px;
    border-radius: 12px;
    /* light curve */
    background: #ffffff;
    color: #281670;
    /* dark blue text */
    z-index: 1;
    overflow: hidden;
    transition: 0.3s;
}

/* rotating border */
.passiontxt::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: conic-gradient(from 0deg,
            #281670,
            #1b5fa7,
            #281670);
    animation: rotateBorder 6s linear infinite;
    /* slower professional animation */
    z-index: -1;
}

/* inner card */
.passiontxt::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: 10px;
    z-index: -1;
}

/* animation */
@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* hover effect */
.passiontxt:hover {
    transform: translateY(-6px);
}

/* our product */

.product_banner {
    position: relative;

    background: url("../img/home-img-2.webp");
    background-size: cover;
    background-position: center;

    height: 300px;
    display: flex;
    align-items: start;
    margin-bottom: 4%;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner_content {
    position: relative;
    color: white;
}

/* cards */

.product_cards {
    margin-top: -190px;
    margin-bottom: 4%;
}

@media (min-width: 576px) and (max-width:992px) {
    .product_card img {
        height: 250px;
        width: 54% !important;
        display: block;
        margin: auto;
    }
}

.product_card img {
    height: 250px;
    width: 90%;
    display: block;
    margin: auto;
}


.product_cards {
    margin-top: -180px;
    margin-bottom: 4%;
}

/* Tablet screens only */
@media (max-width: 576px) {
    .product_cards {
        margin-top: -150px;
        /* adjust value if needed */
    }
}

.product_info p{
    font-size: 15px;
    text-align: center;
}
.product_info {
    background: #ffffffe7;
    padding: 20px;
    text-align: center;
    width: 85%;
    margin: auto;
    margin-top: -90px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.39);
    height: 180px;
    width: 250px;
}

.product_info:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

/* enquiry_section */
.enquiry_section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/enquery_banner.webp");
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 4%;
}

.enquiry_box {
    border-radius: 8px;
    overflow: hidden;
}

.enquiry_form {
    background: #281670;
    padding: 40px;
    color: #fff;
}

.enquiry_form input,
.enquiry_form select {
    width: 100%;
    padding: 11px;
    margin-bottom: 20px;
    border: none;
    margin-top: 2%;
}

.send_btn {
    background: #FF8514;
    border: none;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
}

.send_btn:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.our-clients .owl-carousel {
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);
}

.our-clients .owl-carousel .item {
    box-shadow: none;
}

/* =====about  page===== */

.aboutbanner {
    background-image: linear-gradient(rgba(20, 19, 19, 0.46), rgba(0, 0, 0, 0.575)), url("../img/aboutbanner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
}


.about_cnt {
    margin-top: 4%;
    margin-bottom: 5%;
}

/* Default - large screens */
.about_cnt img {
    height: 350px;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .about_cnt img {
        height: 300px;
    }
}

/* Small screens (mobile) */
@media (max-width: 576px) {
    .about_cnt img {
        height: 250px;
    }
}

.text-justify {
    text-align: justify;
}


.mission {
    background-image: linear-gradient(rgba(0, 0, 0, 0.21), rgba(39, 9, 95, 0.5)), url("../img/abt-contract.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 6%;
}

.mission img {
    height: 200px;
    width: 90%;
}

/* chart */
.org-chart {
    position: relative;
    padding: 80px 0;
    text-align: center;
}



/* BOX STYLE */

.org-box {
    background: #f6e3b8;
    border: 3px solid #c40000;
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
    min-width: 180px;
}

/* LEVEL SPACING */

.level {
    margin-top: 80px;
}

/* CONNECTOR LINE */

.connector {
    width: 2px;
    height: 60px;
    background: #c40000;
    margin: 0 auto;
}

/* HORIZONTAL LINE */

.h-line {
    height: 2px;
    background: #c40000;
    margin: 0 auto;
    width: 80%;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .org-box {
        font-size: 13px;
        min-width: 140px;
    }

    .h-line {
        width: 100%;
    }

}


/* milestone */
:root {
    --bg-purple: #d1c4ff;
    --road-black: #1a1a1a;
    --pink: #e91e63;
    --orange: #ff9800;
    --purple: #9c27b0;
    --teal: #00bfa5;
    --indigo: #1e1666;
    /* Added a specific dark blue for mobile bg */
    --mobile-blue: #1e1666;
}

/* Outer Container */
.v-roadmap-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #8271c9 40%, white 100%);
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.v-header {
    background: linear-gradient(135deg, var(--bg-purple), #eadaff);
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 20px;
}

.v-header h1 {
    margin: 0;
    font-size: clamp(18px, 5vw, 32px);
    font-weight: 800;
    color: var(--indigo);
    text-transform: uppercase;
}

/* --- THE TIMELINE BODY --- 
    Vertical by default (Mobile) */
.v-timeline-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 60px;

    /* UPDATED: Dark blue background for mobile */
    background-color: var(--mobile-blue);

    /* Road SVG updated to look cleaner on dark blue */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1000' preserveAspectRatio='none'%3E%3Crect x='35' y='0' width='30' height='1000' fill='%231a1a1a'/%3E%3Cline x1='50' y1='0' x2='50' y2='1000' stroke='white' stroke-width='1' stroke-dasharray='15, 15'/%3E%3C/svg%3E");
    background-size: 80px 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
}

.v-milestone {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.v-pin {
    width: 80px;
    height: 48px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    z-index: 10;
    color: white;
}

.v-content {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* UPDATED: White text for mobile visibility */
.v-content .title {
    font-weight: 1000;
    font-size: 19px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.v-content .desc {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0.9;
}

/* Pin Colors */
.m1 .v-pin {
    background-color: var(--pink);
}

.m2 .v-pin {
    background-color: var(--orange);
}

.m3 .v-pin {
    background-color: var(--purple);
}

.m4 .v-pin {
    background-color: var(--teal);
}

.m5 .v-pin {
    background-color: #3f51b5;
}

.m6 .v-pin {
    background-color: #ff5722;
}

/* --- DESKTOP VIEW --- */
@media (min-width: 768px) {
    .v-timeline-body {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 200px 50px;
        gap: 0;

        /* Reset background for desktop if you want the gradient back */
        background-color: transparent;

        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 400' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M0 200C250 200 350 50 600 50C850 50 950 350 1200 350C1450 350 1550 50 1800 50C2050 50 2150 350 2400 350C2650 350 2750 200 3000 200' stroke='%231a1a1a' stroke-width='35' stroke-linecap='round'/%3E%3Cpath d='M0 200C250 200 350 50 600 50C850 50 950 350 1200 350C1450 350 1550 50 1800 50C2050 50 2150 350 2400 350C2650 350 2750 200 3000 200' stroke='white' stroke-width='3' stroke-dasharray='12 12'/%3E%3C/svg%3E");
        background-size: 3840px 60%;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: local;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Positioning Fixes for Desktop Items */
    .v-milestone:nth-child(2) .v-pin,
    .v-milestone:nth-child(8) .v-pin {
        margin-top: 0 !important;
        margin-bottom: 120px !important;
    }

    .v-milestone:nth-child(2) .v-content,
    .v-milestone:nth-child(8) .v-content {
        bottom: auto !important;
        top: 85px !important;
    }

    .v-milestone:nth-child(3).v-pin {
        top: -50px !important;
        bottom: auto !important;
    }

    .v-milestone:nth-child(3) .v-content {
        top: -150px !important;
    }

    .v-milestone:nth-child(7) .v-pin,
    .v-milestone:nth-child(7) .v-content {
        top: -120px !important;
    }

    .v-milestone:nth-child(6) .v-pin,
    .v-milestone:nth-child(6) .v-content {
        top: 200px !important;
    }

    .v-milestone:nth-child(10) .v-pin,
    .v-milestone:nth-child(10) .v-content {
        bottom: -140px !important;
    }

    .v-milestone {
        flex: 0 0 320px;
        justify-content: center;
    }

    .v-content {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 260px;
    }

    /* Desktop text remains dark for the light gradient background */
    .v-content .title {
        color: var(--indigo);
    }

    .v-content .desc {
        color: #111;
    }

    .v-milestone:nth-child(odd) .v-pin {
        margin-bottom: 120px;
    }

    .v-milestone:nth-child(odd) .v-content {
        top: -85px;
    }

    .v-milestone:nth-child(even) .v-pin {
        margin-top: 120px;
    }

    .v-milestone:nth-child(even) .v-content {
        bottom: -85px;
    }

    .v-timeline-body::-webkit-scrollbar {
        height: 10px;
    }

    .v-timeline-body::-webkit-scrollbar-thumb {
        background: var(--indigo);
        border-radius: 10px;
    }
}
/* =========our team======== */

.ourteam {
    background-image: linear-gradient(rgba(0, 0, 0, 0.623), rgba(0, 0, 0, 0.048)), url("../img/ourteam_banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 350px;
    margin-bottom: 4%;
}



.card-wrapper {
    display: inline-block;
}

/* clients img */

.client-card {
    height: 30px;
    width: 250px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.185);
}

.client-card img {
    height: 280px;
}



.client-card .card-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.client-card .card-text {
    font-size: 14px;
    margin: 0;
}

/* 
/* Main card image */
.main-img {
    border-radius: 10px;
}

/* Common overlay */
.overlay-img {
    position: absolute;
    width: 280px;
    height: 280px;
    /* adjust size */
    border-radius: 150px;
}

/* Position 1 */
.top-left {
    top: 10%;
    left: 22%;
}

/* Position 2 */
.bottom-left {
    top: 10%;
    left: 20%;
}

/* process flow */




/* =========our clients======== */
.owl-carousel .item {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s;
}   

.owl-carousel .item:hover {
    transform: translateY(-6px) scale(1.03);
}

 .owl-carousel .item img {
    height: 150px;
    object-fit: contain;
}



/* OEM customers (deep blue + violet premium) */
.clients-oem {
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);
    padding: 20px 0;
    color: #fff;
}



.section-bg {
    background: linear-gradient(135deg, #281670, #3f2a9a);
}
.ourclients {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.055)), url("../img/clients-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 250px;
    margin-top: 4%;
    margin-bottom: 4%;
}



 .owl-carousel .owl-stage{
    margin-top:2% ;
    margin-bottom:3% ;
    margin-left: 1%;
    margin-right: 1%;
 }
.brand-logo {
        transition: all 0.3s ease;
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
            flex-direction: column;
        border-radius: 10px;
        padding: 10px 20px;
        height: 200px;
}

/* Tablet */
@media (min-width: 768px) {
    .owl-carousel {
        padding: 20px 0;
    }
}
.brand-logo img {
    transition: all 0.5s ease;
    /* opacity: 9.8; */
    width: 90%;
    height: 120px;
    max-height: 140px;
    padding: 20px 20px;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
        transition: all 0.3s ease;
}


/* main img style for scooters */ */
 /* .main-carousel, 
.owl-stage {
    margin-bottom: 2% !important;
    margin-top: 0% !important;
    padding: 0 !important;

} */
.main-carousel img {
    width: 100%;
    height: 300px;
    /* adjust (300 / 400 / 500) */
    object-fit: contain;
}


/* ====== 2 & 4 wheeler  */
.wheeler-bg{
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);
}

.wheeler-bg .item {
        background-color: white;    box-shadow: #281670 0px 4px 12px;
   padding: 30px 0;
   padding: 30px 0;
}

.owl-rtl.wheeler-bg .owl-item {
    display: flex !important;
    justify-content: center !important;
}    

.wheeler-bg1 .item {
        background-color: white;
    box-shadow: #281670 0px 4px 12px;
   padding: 30px 0;
}
.wheeler-bg1 {

}
/* ======Quality standard & policy===== */
.qa-policy {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/q-s-p_banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 300px;
    margin-top: 4%;
    margin-bottom: 4%;
}

.qsp {
    margin-top: 4%;
    margin-bottom: 4%;
}

.qsp img {
    height: 300px;

}

.darkbluecolor th {
    background-color: #281670 !important;
    color: white !important;
}

/* policy img */

.policy-box {
    max-width: 600px;
    border: 4px double #281670;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-justify {
    text-align: justify;
    line-height: 1.6;
}
/* ========E-Vechicle-Molds====== */

.e-vechicle {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/e-vechicle_banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 350px;
    margin-top: 4%;
    margin-bottom: 4%;
    
}
 .abs {
    width: 60%;
    height: auto !important;  
    border-radius:12px; 
}

/* ========Home-Aplliance-Molds====== */

.ham {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.616)), url("../img/ham-banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 250px;
    margin-top: 4%;
    margin-bottom: 4%;
}


/* ========Automotive-Molds====== */

.automotive {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.616)), url("../img/automotive_banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 250px;
    margin-top: 4%;
    margin-bottom: 4%;
}

.automotive_types {
    background-image: url("../img/bg-mold-types.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: 4%;
}

.moldstypes_img img {
    border-radius: 20px;
}

/* Large devices: 992px and above (desktop) */
@media (min-width: 992px) {

    .moldstypes_img img {
        width: 80%;
    }
}

/* ======contacts======= */
.contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.616)), url("../img/contact_banner.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 300px;
    margin-top: 4%;
    margin-bottom: 4%;
}

/* .contact_cnt {
    margin-bottom: 4%;
background: linear-gradient(300deg,rgba(21, 13, 68, 0.767), rgba(27, 15, 59, 0.158));

} */

.contact_cnt {
    margin-bottom: 4%;
    background: linear-gradient(120deg, #281670 40%, white 100%);
    color: white;
}

/* map */
/* Mobile */
@media (max-width:576px) {
    .map iframe {
        height: 250px;
    }
}


/* Tablet */
@media (min-width:577px) and (max-width:768px) {
    .map iframe {
        height: 300px;
    }
}


/* Small Laptop */
@media (min-width:769px) and (max-width:1600px) {
    .map iframe {
        height: 450px;
    }
}




/* ======infrastructure===== */




.infrastructure {
    background-image: linear-gradient(rgba(0, 0, 0, 0.062), rgba(0, 0, 0, 0.055)), url("../img/infra_banner.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 350px;
    margin-top: 4%;
    margin-bottom: 4%;
}

.infra_cnt {
    margin-bottom: 4%;
}

/* visista layout  */
/* Full width image box */
.img-box-full {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    padding: 25px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: 0.3s;
}

/* Gradient border effect */
.img-box-full::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
     
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Image styling */
.img-box-full img {
    border-radius: 15px;
    width: 100%;
    display: block;
}

/* Hover effect */
.img-box-full:hover {
    transform: translateY(-6px);
}

/* pro vmc  */

.vmc-ref-layout {
    display: grid;
    grid-template-columns: 220px 220px 220px;
    /* fixed width for perfect shape */
    grid-template-rows: auto auto auto;
    justify-content: center;
    /* center whole layout */
    align-items: center;
            /* 🔥 adds left & right space */
row-gap: 5px;
    /* vertical space */
    column-gap: 80px;    /* tight spacing */
    /* space before table */
}

/* Position mapping */
.vmc-ref-item.top {
    grid-column: 2;
    grid-row: 1;
}

.vmc-ref-item.left {
    grid-column: 1;
    grid-row: 2;
}

.vmc-ref-item.center {
    grid-column: 2;
    grid-row: 2;
}

.vmc-ref-item.right {
    grid-column: 3;
    grid-row: 2;
}

.vmc-ref-item.bottom {
    grid-column: 2;
    grid-row: 3;
}

/* ===== CARD SIZE FIX ===== */
.vmc-ref-item .vmc-card img {
    width: 100%;
    height: 180px;
    /* 🔥 controlled size */
    object-fit: cover;
}

/* Center highlight */
.vmc-ref-item.center .vmc-card img {
    transform: scale(1.08);
    border: 2px solid #ff7a00;
}

/* Reduce spacing overall */
.vmc-title {
    margin-top: -20px;
    padding: 10px 8px;
    font-size: 13px;
}

.vmc-line {
    margin: 8px auto;
}

/* Base animation */
.vmc-ref-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

/* Individual delays */
.vmc-ref-item.left {
    animation-delay: 0.3s;
}

.vmc-ref-item.top {
    animation-delay: 0.6s;
}

.vmc-ref-item.right {
    animation-delay: 0.9s;
}

.vmc-ref-item.bottom {
    animation-delay: 1.2s;
}

.vmc-ref-item.center {
    animation-delay: 1.5s;
}

/* Animation keyframe */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .vmc-ref-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .vmc-ref-item {
        width: 100%;
        max-width: 250px;
    }

    .vmc-ref-item.center {
        order: 1;
    }

    .vmc-ref-item.top {
        order: 2;
    }

    .vmc-ref-item.left {
        order: 3;
    }

    .vmc-ref-item.right {
        order: 4;
    }

    .vmc-ref-item.bottom {
        order: 5;
    }

}
.vmc-card {
    padding: 10px;
    border-radius: 10px;
}

.vmc-title {
    margin-top: 10px;
    font-weight: bold;
}


.vmc-section {
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);    padding: 60px 0;
}

.vmc-card {
    text-align: center;
    position: relative;
}

/* this for everyone */
.vmc-card img {
    width: 100%;
    border-radius: 8px;
    height: 250px;
}

.vmc-title {
    background: #fff;
    padding: 20px 10px;
    display: inline-block;
    color: #000;
    margin-top: -40px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.445);
    width: 80%;
}


.vmc-line {
    width: 80%;
    height: 3px;
    background: #3d2f7c;
    margin: 15px auto;
    position: relative;
}

.vmc-line::after {
    content: '';
    width: 16px;
    height: 16px;

    background: white;
    border: 3px solid #3d2f7c;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
}

.vmc-line.active {
    background: #ff7a00;
}

.vmc-line.active::after {
    border-color: #ff7a00;
}

.gm-card {
    text-align: center;
    position: relative;
}

.gm-card .gm {
    width: 80%;
    border-radius: 8px;
    height: 250px;
    /* default for small screens */
}

/* For bigger screens */
@media (min-width: 768px) {
    .gm-card .gm {
        height: 350px;
    }
}


.info-card {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
}

.info-card p {
    margin: 5px 0;
}




/* carne facility */

.carne-section .img-box {
    position: relative;
}

.carne-section .img-text {
    position: absolute;
    bottom: -40px;
    /* little outside image */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;

    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.863);
}

.carne-section .img-box {
    position: relative;
    height: 300px;
    /* set same height */
}

.carne-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important 🔥 */
    border-radius: 10px;
}

/* spacing fix */
.carne-section .img-box {
    margin-bottom: 40px;
}

/* for every  table styles in infrastructure page  */



/* =====footer===== */
footer {
    font-weight: 550;
    font-size: 16px;
    color: white;
    background-color: #000000;
}

.footer-logo {
    width: 80px;
    height: 100px;

}

.footer-quick {
    padding: 0 45px !important;
}

footer h4 {
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    color: white;
    background-color: #000000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links li{
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links #mail {
    text-decoration: underline !important;
}

.footer-links a:hover {
    /* color: #281670; */
    padding-left: 5px;
}
.footer-links li:hover {
    /* color: #281670; */
    padding-left: 5px;
}


/* modal */


/* success icon */
.success-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto 15px;
    border-radius: 50%;
    background: #16701a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.error-icon {
    width: 60px;
    height: 60px;
    margin: 10px auto 15px;
    border-radius: 50%;
    background: #d40707;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

/* message text */
.modal-message {
    font-size: 1rem;
    line-height: 1.6;
}

/* footer */
.visista-modal .modal-footer {
    border: none;
}

/* button */
.modal-btn {
    background: #281670;
    color: white;
    padding: 8px 30px;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
}

.modal-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);

}




/* slides for cont.. */


/* left to right */
.slide-right {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideRight 2s ease forwards;
}

/* animation keyframe */
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* right to left */

.slide-right {
    opacity: 0;
    transform: translateX(80px);
    animation: slideRight 2s ease forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* ===== COMMON ITEM STYLE ===== */
/* .logo-item {
    height: 200px;
    height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
} */

/* IMAGE FIX */
/* .logo-item img {
    height: 130px;
    object-fit: contain;
} */

/* TEXT FIX */
.logo-title {
    background: rgb(18, 14, 80);
    color: #fff;
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 5px;
    text-align: center;
    width: 90%;
}

/* ITEM SPACING (IMPORTANT) */
 .carousel-left,.carousel-right .owl-carousel .item {
 padding: 0px 0px !important;
 background: none !important;
}

.clientsbg .owl-carousel .item 
 {
    display: flex;
    justify-content: center;
    margin: 10px;
}
.clientsbg1 .owl-carousel .item{
    display: flex;
        justify-content: center;
        margin: 10px;
            background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);
            
}


 .clientsbg .owl-carousel .item img,
 .clientsbg1 .owl-carousel .item img {
     height: 150px;
     object-fit: contain;
     width: 70%;
 }

 .clientsbg{
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb); }
 .clientsbg1{
      color: black;

 } 
/* CAROUSEL GAP */


.title-img {
    z-index: -1;
}

.title-img-h {
    z-index: -1;
}


@media (max-width: 576px) {
    .title-img {
        width: 100%;
        height: 250px;
    }

}

@media (min-width: 577px) and (max-width: 991px) {
    .title-img {
        width: 50%;
        height: 300px !important;

    }

    .title-img-h {
        height: 250px;
    }

}

@media (min-width: 992px) {
    .title-img {
        width: 70%;
        height: 350px !important;
    }

    .title-img-h {
        height: 250px;
        width: 30%;
    }
}

.homebg{
    background: linear-gradient(135deg, #1e3c72, #2a5298, #1133cb);
}
.design .item {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.575);
width: 250px;
background-color: white;
}

.design .item img {
    padding: 7%;
    border-radius: 20px;
    height: 180px;
}

.design .item img:hover {
    transform: translateY(7px);
    transition: 0.3s;
}

.title1-img{
    width: 50%;
    height: 300px;
    object-fit: cover;
}