/* =========================
   ONLY MOBILE SCROLL FIX
========================= */

@media(max-width:768px){

    html,
    body{
        overflow-x: hidden;
        width: 100%;
    }

    /* IMAGES */

    img{
        max-width: 100%;
        height: auto;
    }

    /* FIX EXTRA WIDTH */

    .container,
    .container-fluid{
        overflow: hidden;
    }

    /* BOOTSTRAP ROW FIX */

    .row{
        margin-left: -12px;
        margin-right: -12px;
    }

}










body {
    padding-top: 80px; /* 👈 navbar height ke according */
    font-family: 'Poppins', sans-serif;
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background: #fff;
    padding: 2px 0;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* LOGO */
.navbar-brand img {
    height: 80px;
}

@media(max-width:991px){
    .navbar-brand img {
    height: 45px;
}

}

/* MENU RESET */
.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    margin: 0 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: 0.3s;
}

/* ICON STYLE */
.navbar-nav .nav-link i {
    font-size: 14px;
    color: #ff0000;
    transition: 0.3s;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
    color: #ff0000;
    transform: translateY(-2px);
}

/* UNDERLINE ANIMATION */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ff0000;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.nav-btn {
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,0,0,0.4);
}

/* ================= MEGA MENU ================= */

/* IMPORTANT */
.mega-menu {
    position: static;
}

/* FULL WIDTH */
.mega-menu-box {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;

/*    background: #f9f9f9;*/
    padding: 20px 0; /* 👈 top bottom only */

    box-shadow: 0 20px 50px rgba(0,0,0,0.1);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    background: #f4f6f9; /* 👈 change from white */
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* SHOW */
.mega-menu:hover .mega-menu-box,
.mega-menu-box:hover {
    opacity: 1;
    visibility: visible;
}

/* GRID FIX */
.mega-menu-box .row {
    display: flex;
    flex-wrap: wrap;
}

/* COLUMN FIX */
.mega-menu-box .col-lg-3 {
    width: 25%;
}

/* LIST RESET */
.mega-menu-box ul {
    list-style: none;
    padding: 0;
}

/* LINKS */
.mega-menu-box ul li {
    margin-bottom: 10px;
}

.mega-menu-box ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.mega-menu-box ul li a:hover {
    color: #ff0000;
    padding-left: 5px;
}


@media(max-width:991px){

    .mega-menu-box {
        position: static;
        width: 100%;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 10px 15px;
/*        background: #f9f9f9;*/
        max-height: 300px;   /* 👈 control height */
        overflow-y: auto;    /* 👈 scroll enable */
    }

    .mega-menu.active .mega-menu-box {
        display: block;
    }

    .mega-menu-box .col-lg-3 {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* ===== MENU ITEM BASE ===== */
.mega-menu-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2px 12px;
    color: #444;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 13px;
}

/* ===== ARROW ICON ===== */
.mega-menu-box ul li a::before {
/*    content: "➜";*/
    font-size: 12px;
    margin-right: 8px;
    color: #ff0000;
    transition: 0.3s;
}

/* ===== HOVER BACKGROUND ===== */
.mega-menu-box ul li a:hover {
    background: rgba(255, 0, 0, 0.08);
    color: #ff0000;
    padding-left: 18px;
}

/* ===== ARROW MOVE ===== */
.mega-menu-box ul li a:hover::before {
    transform: translateX(4px);
}

/* ===== LEFT BORDER EFFECT ===== */
.mega-menu-box ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 0%;
    width: 3px;
    background: #ff0000;
    transform: translateY(-50%);
    transition: 0.3s;
}

.mega-menu-box ul li a:hover::after {
    height: 70%;
}

.mega-menu-box h6 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* red dot icon */
.mega-menu-box h6::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
}

/* underline */
.mega-menu-box h6::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #eee;
}

.mega-menu-box .col-lg-3 {
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.mega-menu-box .col-lg-3:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.mega-menu-box ul li i {
    color: #ff0000;
    margin-right: 8px;
}

.mega-menu-box::-webkit-scrollbar {
    width: 5px;
}

.mega-menu-box::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 10px;
}

.mega-menu-box {
    scroll-behavior: smooth;
}


@media(max-width:991px){

    .navbar-collapse {
        border-top: 3px solid #ff0000; /* brand highlight */
    }

}



/*..............nabr end here.......................*/




/* =========================
   HERO SLIDER
========================= */

/* HERO HEIGHT */
#heroSlider,
#heroSlider .carousel-item{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* IMAGE */

#heroSlider .carousel-item img{
    width: 100%;
    height: 88vh;
    object-fit: contain;   /* full image visible */
    object-position: center;
    display: block;
    background: #000914; /* optional */
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

    #heroSlider,
    #heroSlider .carousel-item{
        height: auto;
    }

    #heroSlider .carousel-item img{

        width: 100%;
        height: auto;

        /* FULL IMAGE SHOW */
        object-fit: contain;

        display: block;

        background: transparent;
    }
}



/* DARK OVERLAY */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
/*    background: rgba(0,0,0,0.65);*/
    z-index: 1;
}

/* CENTER CONTENT */
.center-caption {
    position: absolute;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    width: 100% !important;
    max-width: 720px;
}

/* HEADING */
.center-caption h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.highlight {
    color: #ff2d2d;
}
/* TEXT */
.center-caption p {
    font-size: 17px;
    color: #ddd;
    margin-top: 15px;
}

/* BUTTON */
.center-caption .btn {
    background: #ff2d2d;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
}

.center-caption .btn:hover {
    background: #000;
}





/*===================================================arrow=======================================*/


/* =========================
   PREMIUM SLIDER ARROWS
========================= */

.carousel-control-prev,
.carousel-control-next{
    width: 8%;
    opacity: 1;
}

/* CUSTOM ARROW */

.custom-arrow{

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    border:
    1px solid rgba(255,255,255,0.2);

    transition: 0.4s ease;
}

/* ICON */

.custom-arrow i{

    color: #fff;

    font-size: 22px;
}

/* HOVER */

.carousel-control-prev:hover .custom-arrow,
.carousel-control-next:hover .custom-arrow{

    background:
    linear-gradient(135deg,#ff4d67,#ff9a5a);

    transform: scale(1.1);
}

/* MOBILE */

@media(max-width:768px){

    .custom-arrow{

        width: 48px;
        height: 48px;
    }

    .custom-arrow i{
        font-size: 16px;
    }
}







/*......................end..............*/


.trust-wrapper {
    padding: 80px 0;
    background: #f9f9f9;
}

/* =========================
   TRUST SECTION
========================= */

.trust-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* IMAGE */

.trust-image{
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
}

.trust-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    filter: brightness(.85);
}

/* CONTENT */

.trust-content h2{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #757575;
    margin-bottom: 35px;
}

/* STATS */

.trust-stats{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.trust-item{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
}

.trust-item .icon{
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1212, #bfac71);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.trust-item h3{
    font-size: 24px;
    color: #ff1212;
    margin-bottom: 6px;
    font-weight: 700;
}

.trust-item span{
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    display: block;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .trust-box{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .trust-content{
        text-align: center;
    }

    .trust-image img{
        height: 400px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .trust-box{
        gap: 25px;
    }

    .trust-content h2{
        font-size: 30px;
        line-height: 1.3;
    }

    .trust-content p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .trust-stats{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-item{
        padding: 18px 10px;
        border-radius: 16px;
    }

    .trust-item .icon{
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .trust-item h3{
        font-size: 18px;
        line-height: 1.4;
    }

    .trust-item span{
        font-size: 12px;
    }

    .trust-image img{
        height: 260px;
        border-radius: 20px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .trust-stats{
        grid-template-columns: 1fr;
    }

    .trust-content h2{
        font-size: 26px;
    }

}

/* DEFAULT HIDDEN */
.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* SHOW ANIMATION */
.fade-section.show {
    opacity: 1;
    transform: translateY(0);
}




/* =========================
   TRUST ITEM HOVER
========================= */

.trust-item{
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

.trust-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,.15),
        transparent
    );
    opacity: 0;
    transition: .4s;
}

.trust-item:hover{
    transform: translateY(-8px);
    border-color: rgba(212,175,55,.5);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.trust-item:hover::before{
    opacity: 1;
}

/* =========================
   ICON ANIMATION
========================= */

.trust-item .icon{
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
}

/* Glow Ring */

.trust-item .icon::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
    animation: pulseRing 2s infinite;
}

/* Shine Effect */

.trust-item .icon::after{
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );
    transform: rotate(25deg);
    transition: .7s;
}

.trust-item:hover .icon::after{
    top: 100%;
    left: 100%;
}

/* Icon Hover */

.trust-item:hover .icon{
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 0 25px rgba(212,175,55,.7);
}

/* Icon */

.trust-item .icon i{
    transition: .5s;
}

.trust-item:hover .icon i{
    transform: rotate(-180deg);
}

/* =========================
   PULSE ANIMATION
========================= */

@keyframes pulseRing{

    0%{
        transform: scale(1);
        opacity: .7;
    }

    70%{
        transform: scale(1.25);
        opacity: 0;
    }

    100%{
        transform: scale(1.25);
        opacity: 0;
    }

}




/*........................................*/



/* SECTION */
.category1-section {
    background: #fff;
}

/* 🔥 PREMIUM HEADING WITH LINES */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* LEFT & RIGHT LINE */
.section-title h2::before,
.section-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 2px;
    background: #ff2d2d;
}

.section-title h2::before {
    left: -140px;
}

.section-title h2::after {
    right: -140px;
}



.section-title h2 {
    font-size: clamp(20px, 4vw, 34px);
    white-space: nowrap;
}



/*............................................................Partner..................................*/


/* =========================
   SECTION TITLE
========================= */

.np-section-title{
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* TITLE */

/* TITLE */

.np-section-title h2{
    position: relative;
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #d40000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 40px;
    border: 2px solid #d40000;
    background: #fff;
    margin-bottom: 18px;
    z-index: 2;

    /* ROUND CORNERS */
    border-radius: 50px;
}

/* LEFT LINE */

.np-section-title h2::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -125px;
    width: 105px;
    height: 2px;
    background: #d40000;
    transform: translateY(-50%);
}

/* RIGHT LINE */

.np-section-title h2::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -125px;
    width: 105px;
    height: 2px;
    background: #d40000;
    transform: translateY(-50%);
}

/* SUBTEXT */

.np-section-title p{
    font-size: 16px;
    color: #777;
    margin: 0;
    letter-spacing: .5px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .np-section-title h2{
        font-size: 30px;
        padding: 12px 28px;
    }

    .np-section-title h2::before{
        left: -90px;
        width: 70px;
    }

    .np-section-title h2::after{
        right: -90px;
        width: 70px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .np-section-title{
        margin-bottom: 40px;
    }

    .np-section-title h2{
        font-size: 22px;
        padding: 10px 18px;
        line-height: 1.4;
    }

    .np-section-title h2::before{
        left: -45px;
        width: 30px;
    }

    .np-section-title h2::after{
        right: -45px;
        width: 30px;
    }

    .np-section-title p{
        font-size: 14px;
        line-height: 1.7;
        padding: 0 10px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .np-section-title h2{
        font-size: 18px;
        padding: 10px 14px;
    }

    .np-section-title h2::before,
    .np-section-title h2::after{
        display: none;
    }

}





/* CARD */
.category1-card {
    position: relative;
    height: 350px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
}

/* IMAGE */
.category1-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.category1-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* CONTENT */
.category1-card .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.category1-card h5 {
    margin: 0;
    font-size: 18px;
}

.category1-card p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

/* 🔥 HOVER EFFECT */
.categor1y-card:hover img {
    transform: scale(1.1);
}

.category1-card:hover {
    transform: translateY(-10px);
}

/* 🔥 RED BORDER GLOW */
.category1-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    transition: 0.3s;
}

.category1-card:hover::after {
    border-color: #ff2d2d;
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.5);
}

/* RESPONSIVE HEADING */
@media(max-width:768px){
    .section-title h2::before,
    .section-title h2::after {
        width: 60px;
    }

    .section-title h2::before {
        left: -70px;
    }

    .section-title h2::after {
        right: -70px;
    }

    .section-title h2 span{
        font-size: 16px;
    }
}

.section-title h2 span {
    background: #fff;
    border: 2px solid #ff2d2d;
    border-radius: 30px;
    padding: 5px 25px;
}


/* CONTENT FLEX */
.category1-card .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #fff;
}

/* 🔥 LEFT TEXT DESIGN */
.category1-card .text h5 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category1-card .text p {
    margin: 4px 0;
    font-size: 13px;
    opacity: 0.8;
}

/* 🔥 RED LINE UNDER TEXT */
.category1-card .text .line {
    display: block;
    width: 40px;
    height: 2px;
    background: #ff2d2d;
    margin-top: 6px;
    transition: 0.3s;
}

/* 🔥 RIGHT ICON BUTTON */
.icon-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 45, 45, 0.9);
    color: #fff;

    border-radius: 50%;
    font-size: 16px;

    transition: 0.3s;
    text-decoration: none;
}

/* 🔥 HOVER EFFECT */
.icon-btn:hover {
    background: #fff;
    color: #ff2d2d;
    transform: scale(1.1);
}

/* 🔥 CARD HOVER IMPROVEMENT */
.category1-card:hover .line {
    width: 70px;
}

.category1-card:hover .icon-btn {
    transform: translateX(6px) scale(1.1);
}

.icon-btn {
    box-shadow: 0 0 10px rgba(255,45,45,0.5);
}



/*..........................................................*/


.about-section {
    position: relative;

    /* 🔥 BACKGROUND IMAGE */
    background: url("https://i.pinimg.com/736x/bb/b5/1e/bbb51e4567c14bba70f30c6902aa4e1d.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
}

/* 🔥 DARK OVERLAY */
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

/* CONTENT ABOVE OVERLAY */
.about-section .container {
    position: relative;
    z-index: 2;
}

/* IMAGE */
.about-img img {
    width: 100%;
    border-radius: 16px;
}

/* TEXT */
.about-content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

/* RED LINE */
.about-content h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff2d2d;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* PARAGRAPH */
.about-content p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fff;
    color: #ff2d2d;
}

.about-content {
    background: rgba(0,0,0,0.5);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}



/*..............................................*/


/*.why-section {
    background: radial-gradient(circle at top, #fff, #f4f4f4);
}*/

/* GRID */
/*.why-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}*/

/* CARD */
/*.why-card {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;

    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.4);

    transition: 0.4s;
    overflow: hidden;
}*/

/* ICON */
/*.why-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #ff2d2d;

    border-radius: 50%;
    background: rgba(255,45,45,0.1);

    margin-bottom: 15px;
    transition: 0.4s;
}*/

/* TEXT */
/*.why-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.why-card p {
    font-size: 13px;
    color: #666;
}*/

/* 🔥 GLOW EFFECT */
/*.why-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle, rgba(255,45,45,0.2), transparent 60%);
    transition: 0.5s;
}*/

/* HOVER */
/*.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.why-card:hover::before {
    top: 0;
    left: 0;
}

.why-card:hover .icon {
    background: #ff2d2d;
    color: #fff;
    box-shadow: 0 0 25px rgba(255,45,45,0.7);
}*/

/* RESPONSIVE */
/*@media(max-width:992px){
    .why-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px){
    .why-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}*/




.advantage-section {
    background: #fff;
    padding: 80px 0;
}

/* TITLE */
.adv-title {
    font-size: 34px;
    font-weight: 700;
}

.adv-title span {
    color: #ff2d2d;
}

.adv-sub {
    color: #666;
}

/* GRID */
.advantage-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}

/* CONNECTING LINE */
.advantage-wrapper::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, #ff2d2d, transparent);
}

/* CARD */
.adv-card1 {
    width: 18%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ICON */
.adv-card1 .icon {
    width: 70px;
    height: 70px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff2d2d;

    color: #ff2d2d;
    font-size: 26px;

    margin-bottom: 15px;
    transition: 0.4s;
}

/* TEXT */
.adv-card1 h4 {
    font-size: 16px;
    font-weight: 600;
}

.adv-card1 p {
    font-size: 13px;
    color: #666;
}

/* HOVER */
.adv-card1:hover .icon {
    background: #ff2d2d;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,45,45,0.6);
    transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:992px){
    .advantage-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .adv-card1 {
        width: 45%;
    }

    .advantage-wrapper::before {
        display: none;
    }
}


/* LINE ANIMATION */
.advantage-wrapper::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, #ff2d2d, transparent);
    transition: 1.5s ease;
}

/* ACTIVE LINE */
.advantage-wrapper.show::before {
    width: 90%;
}

/* DEFAULT HIDDEN */
.adv-card1 {
    opacity: 1 !important;
    transform: translateY(40px);
    transition: 0.6s ease;
}

/* SHOW */
.advantage-wrapper.show .adv-card1 {
    opacity: 1;
    transform: translateY(0);
}

/* DELAY */
.step1 { transition-delay: 0.3s; }
.step2 { transition-delay: 0.6s; }
.step3 { transition-delay: 0.9s; }
.step4 { transition-delay: 1.2s; }
.step5 { transition-delay: 1.5s; }

@keyframes pulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(255,45,45,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255,45,45,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); }
}

.adv-card1 .icon {
    animation: pulseIcon 2s infinite;
}









/*.....................................................*/


/* SECTION */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff2d2d, #b80000);
}

/* BOX */
.cta-box {
    max-width: 700px;
    margin: auto;
    color: #fff;
}

/* HEADING */
.cta-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 30px;
    background: #fff;
    color: #ff2d2d;

    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */
.cta-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* ICON MOVE */
.cta-btn i {
    transition: 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("https://picsum.photos/1200/600");

    background-size: cover;
    background-position: center;
}

/* MODAL DESIGN */
.modal-content {
    border-radius: 16px;
    padding: 10px;
}

/* TITLE */
.modal-title {
    font-weight: 600;
}

/* INPUT */
.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #ff2d2d;
    box-shadow: none;
}

/* BUTTON */
.submit-btn {
    background: #ff2d2d;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 30px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #000;
}


/*...................................................*/


/* FOOTER */
.footer {
    background: #0a0a0a;
    color: #ccc;
    padding-top: 50px;
}

/* HEADINGS */
.footer h5 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

/* RED LINE */
.footer h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff2d2d;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* TEXT */
.footer p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff2d2d;
    padding-left: 5px;
}

/* ICON */
.footer i {
    color: #ff2d2d;
    margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
    background: #000;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 13px;
}


/* DEFAULT STATE */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 2px solid #fff;
    border-radius: 50%;

    color: #fff !important; /* force */
    text-decoration: none;

    transition: 0.3s;
}

/* ICON FIX */
.social-icons a i {
    color: inherit !important; /* 👈 important fix */
    font-size: 14px;
    padding-left: 5px;
}

/* HOVER STATE */
.social-icons a:hover {
    background: #ff2d2d;
    color: #fff !important; /* 👈 force white */
    border: 2px solid #ff2d2d;
}

/* HOVER ICON FIX */
.social-icons a:hover i {
    color: #fff !important; /* 👈 double ensure */
}








/*............................................product page here.........................................*/


.breadcrumb-section {
    position: relative;

    background: url("../images/trailer-truck-hero.jpg");
    background-size: cover;
    background-position: center;

    padding: 110px 0;
    color: #fff;
}

/* 🔥 OVERLAY */
.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* CONTENT ABOVE */
.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.breadcrumb-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 5px;
    color: #ddd;
}

@media(max-width:768px){

    .breadcrumb-section {
        padding: 40px 0;
        text-align: center;
    }

    .breadcrumb-section h1 {
        font-size: 22px;
        text-align: left;
    }

    .breadcrumb {
        font-size: 12px;
    }
}

.breadcrumb-section::before {
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.3),
        transparent
    );
}


/* CARD */
/* CARD BASE */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;

    display: flex;
    flex-direction: column;
    height: 100%;

    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}



.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info {
    flex-grow: 1;
}





/* IMAGE FIX (IMPORTANT) */
.product-img {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
/*    object-fit: cover;*/
    transition: 0.5s;
}

/* IMAGE HOVER ZOOM */
.product-card:hover img {
    transform: scale(1.1);
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* INFO */
.product-info {
    padding: 15px;
    flex-grow: 1;
}

/* TITLE */
.product-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* TEXT */
.product-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 30px;

    border: 1px solid #ff2d2d;
    color: #ff2d2d;
    text-decoration: none;
    font-size: 13px;

    transition: 0.3s;
}

/* BUTTON HOVER */
.view-btn:hover {
    background: #ff2d2d;
    color: #fff;
}

/* 🔥 EQUAL HEIGHT GRID FIX */
.row.g-4 > [class*='col'] {
    display: flex;
}

/* HOVER EFFECT */
.product-card:hover {
    transform: translateY(-5px);
}


.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff2d2d;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
}


.product-img {
    position: relative;
}

/* OVERLAY BUTTON */
.product-img::after {
    content: "View";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.product-card:hover .product-img::after {
    opacity: 1;
}



.category-link {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

/* HOVER EFFECT */
.category-link:hover {
    color: #ff2d2d;
}



/*.................*/

.product-page{
    background: url("../images/tractors-hero.jpg");
    background-size: cover;
    background-position: center;

}

.product-page2{
    background: url("https://i.ytimg.com/vi/MNj_WHCN8u8/maxresdefault.jpg");
    background-size: cover;
    background-position: center;
}




/*.........................................contact page here....................*/


.contact-page{
    background: url("https://t3.ftcdn.net/jpg/04/45/51/30/360_F_445513026_WiZ72wG5UelNAMHOPNwV8ZwSUQrLUs0w.jpg") center/cover no-repeat;
}

/* MAIN BOX */
.contact-box {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 35px;

    background: linear-gradient(145deg, #ffffff, #fafafa);
    transition: 0.4s ease;

    position: relative;
    overflow: hidden;
}

/* TOP RED ACCENT LINE */
.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #ff2d2d;
    transition: 0.4s;
}

/* HOVER EFFECT */
.contact-box:hover::before {
    width: 100%;
}

/* HOVER EFFECT */
.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* LEFT INFO */
.contact-info {
    padding-right: 20px;
}

/* LEFT INFO */
.contact-info h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.5px;
}

/* RED LINE UNDER TITLE */
.contact-info h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff2d2d;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* TEXT */
.contact-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* ICON */
.contact-info i {
    color: #ff2d2d;
    margin-right: 10px;
    font-size: 18px;
    min-width: 18px;
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: 12px;

    transition: 0.3s;
}

/* MAP HOVER ZOOM */
.contact-box:hover iframe {
    transform: scale(1.02);
}


/* MOBILE */
@media(max-width:768px){
    .contact-box {
        padding: 20px;
    }

    .contact-map iframe {
        height: 200px;
        margin-top: 15px;
    }
}




.contact-info {
    border-left: 3px solid #ff2d2d;
    padding-left: 15px;
}


.office-tag {
    display: inline-block;
    background: rgba(255,45,45,0.1);
    color: #ff2d2d;
    font-size: 20px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* BACKGROUND SECTION */
.contact-section {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}




/*...............contact form.......................*/


/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* INPUT */
.contact-form-box .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

/* TEXTAREA */
.contact-form-box textarea {
    height: auto;
}

/* FOCUS */
.contact-form-box .form-control:focus {
    border-color: #ff2d2d;
    box-shadow: none;
}

/* BUTTON */
.submit-btn {
    background: #ff2d2d;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER */
.submit-btn:hover {
    background: #d92323;
}

/* TITLE */
.section-title h3 {
    font-weight: 700;
}

.section-title p {
    color: #777;
    font-size: 14px;
}


/*......................................................................*/



/*..................About Page here...........................................*/


.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url("../images/welcome-slide111.png");

/*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('https://www.bmttumang.com/uploads/pages/1735730455_i.webp');*/
    padding: 100px 0;
    text-align: center;

    background-size: cover;
    background-position: center;
    animation: zoomBg 10s ease-in-out infinite alternate;
}


@keyframes zoomBg {
    from { background-size: 100%; }
    to { background-size: 110%; }
}



/* SECTION BG */
.who-section {
    background: #f8f9fb;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* TITLE */
.who-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    position: relative;
    margin-bottom: 25px;
}

/* highlight word */
.who-title span {
    color: #ff0000;
}

/* RED LINE */
/* stylish line */
.who-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, transparent);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

/* TEXT */
..who-section p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.8;
}

/* highlight important text */
.who-section strong {
    color: #000;
}

.who-section .col-lg-6:first-child {
    border-left: 3px solid #ff0000;
    padding-left: 20px;
}

/* IMAGE BOX */
.who-img-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
}

/* overlay */
.who-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.who-img-box img {
    transition: 0.5s;
    height: 356px;
}
.who-img-box:hover img {
    transform: scale(1.05);
}

/* FLOATING BADGE */
.experience-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;

    width: 140px;
    height: 140px;

    background: linear-gradient(135deg, #ff0000, #b30000);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid #fff;

    animation: floatBadge 3s ease-in-out infinite;
}

.badge-inner {
    text-align: center;
    color: #fff;
}

.badge-inner h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.badge-inner p {
    font-size: 13px;
    margin: 0;
    letter-spacing: 1px;
}

.badge-inner h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.badge-inner p {
    font-size: 13px;
    margin: 0;
    letter-spacing: 1px;
}

.experience-badge span {
    font-size: 13px;
}

@media(max-width:768px){

    .experience-badge {
        position: static;
        margin-top: 15px;
    }

    .who-title {
        font-size: 28px;
    }

}



/*........................next section...........................................*/


/* SECTION BG */
.merchant-section {
    background: linear-gradient(to right, #f8f9fb, #eef1f5);
}

/* TITLE */
.merchant-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.merchant-title span {
    color: #ff0000;
}

/* DESCRIPTION */
.merchant-desc {
    max-width: 700px;
    margin: 10px auto 0;
    color: #555;
    font-size: 16px;
}

/* CARD */
.merchant-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* ICON */
.merchant-card i {
    font-size: 35px;
    color: #ff0000;
    margin-bottom: 15px;
}

/* TITLE */
.merchant-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.merchant-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
.merchant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.merchant-card {
    border: 1px solid transparent;
}

.merchant-card:hover {
    border: 1px solid #ff0000;
}

/*..........................................................................................*/


/* SECTION BG */

.portfolio-section {
    background: linear-gradient(to bottom, #fff, #f5f5f5);
}

/* CARD */
.pro-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;

    text-align: center;

    transition: 0.4s;
    position: relative;

    border: 1px solid rgba(0,0,0,0.05);
}

/* ICON */
.pro-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    border-radius: 50%;
    background: rgba(255,0,0,0.08);
    color: #ff2d2d;

    margin-bottom: 15px;
}

/* TEXT */
.pro-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.pro-card p {
    font-size: 13px;
    color: #666;
}

/* HOVER */
.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* HOVER ICON */
.pro-card:hover .icon {
    background: #ff2d2d;
    color: #fff;
}



/*...........................................................................*/


/* SECTION BACKGROUND */
/* SECTION BACKGROUND */
.oem-section {
    position: relative;
    background: linear-gradient(135deg, #0b0b0b, #1a1a1a);
    overflow: hidden;
}

/* 🔥 RED GLOW EFFECT */
.oem-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,0,0,0.25), transparent);
    top: -100px;
    left: -100px;
    z-index: 0;
}

/* CONTENT ABOVE */
.oem-section .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.oem-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.oem-title span {
    color: #ff2d2d;
}

/* DESC */
.oem-desc {
    color: #bbb;
    margin-top: 15px;
    line-height: 1.8;
    max-width: 500px;
}

/* CTA BUTTON */
.oem-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    background: #ff2d2d;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.oem-btn:hover {
    background: #fff;
    color: #000;
}

/* CARD */
.oem-card {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 25px;

    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s;
    height: 100%;

    position: relative;
    overflow: hidden;
}

/* 🔥 CARD GLOW */
.oem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

/* ICON */
.oem-card i {
    font-size: 32px;
    color: #ff2d2d;
    margin-bottom: 10px;
}

/* TEXT */
.oem-card h5 {
    font-weight: 600;
}

.oem-card p {
    font-size: 14px;
    color: #aaa;
}

/* HOVER EFFECT */
.oem-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,0,0,0.2);
}

/* HOVER GLOW */
.oem-card:hover::before {
    opacity: 1;
}

/* ICON HOVER */
.oem-card:hover i {
    color: #fff;
}

/* MOBILE */
@media(max-width:768px){
    .oem-title {
        font-size: 26px;
    }
}


/*...............................................................................*/


/* SECTION BG */
.lubricant-section {
    background: #f8f9fb;
}

/* TITLE */
.lubricant-title {
    font-size: 36px;
    font-weight: 700;
}

.lubricant-title span {
    color: #ff0000;
}

/* YEAR BADGE */
.year-badge {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    border-radius: 20px;
    margin: 10px 0;
}

/* TEXT */
.lubricant-desc {
    color: #555;
    line-height: 1.7;
}

/* IMAGE */
.lubricant-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.lubricant-img img {
    transition: 0.5s;
}

.lubricant-img:hover img {
    transform: scale(1.05);
}


/*.......................................................................................*/


/* BG */
.industry-section {
    background: linear-gradient(to right, #f8f9fb, #eef1f5);
}

/* CARD */
.industry-card {
    background: #fff;
    padding: 30px 15px;
    border-radius: 16px;

    text-align: center;
    transition: 0.4s;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;   /* 🔥 important */
}

/* ICON */
.industry-card .icon {
    width: 65px;
    height: 65px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 26px;

    background: rgba(255,0,0,0.08);
    color: #ff2d2d;

    margin-bottom: 10px;
    transition: 0.4s;
}

.industry-section .col-md-2 {
    display: flex;
}

/* TEXT */
.industry-card h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

/* 🔥 HOVER EFFECT */
.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255,0,0,0.15);
}

/* ICON HOVER */
.industry-card:hover .icon {
    background: #ff2d2d;
    color: #fff;
}

/* 🔥 SHINE EFFECT */
.industry-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: rotate(25deg);
    transition: 0.5s;
}

.industry-card:hover::before {
    top: 100%;
}

.industry-logo {
    width: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.4s;
}

.industry-card:hover .industry-logo {
    filter: grayscale(0);
    opacity: 1;
}


/*....................................................................................*/


/* BG */
.adv-section {
    background: linear-gradient(to right, #f8f9fb, #eef1f5);
}

/* TITLE */
.adv-title {
    font-size: 38px;
    font-weight: 700;
}

.adv-title span {
    color: #ff0000;
}

/* CARD */
.adv-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;

    height: 100%;
}

/* ICON */
.adv-card i {
    font-size: 35px;
    color: #ff0000;
    margin-bottom: 15px;
}

/* TEXT */
.adv-card h5 {
    font-weight: 600;
}

/* HOVER */
.adv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}


/*.............................................................................*/


/* BG */
.commitment-section {
    background: linear-gradient(135deg, #ff0000, #b30000);
}

/* TITLE */
.commitment-title {
    font-size: 40px;
    font-weight: 700;
}

.commitment-title span {
    color: #fff;
    text-decoration: underline;
}

/* TEXT */
.commitment-desc {
    max-width: 700px;
    margin: 15px auto;
    font-size: 16px;
    color: #f1f1f1;
}

/* BUTTON */
.commitment-section .btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER */
.commitment-section .btn:hover {
    transform: translateY(-3px);
}



/*..............................................*/

.site-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}



/*..........................................*/




.collab-section {
    background: #eeeeee;
/*    border-radius: 20px;*/
/*    margin: 40px 20px;*/
    padding: 80px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 1px solid #eee;
/*    border-bottom: 1px solid #eee;*/
}

.collab-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.collab-content {
    width: 50%;
}

.collab-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #d40000;
}

.collab-content .subtitle {
    font-size: 18px;
    color: #d40000;
    margin-bottom: 15px;
    font-weight: 600;
}

.collab-content p {
    font-size: 15px;
    line-height: 26px;
    color: #444;
}

.collab-points div {
    margin: 8px 0;
    font-size: 15px;
}

/* BUTTON */
.collab-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #d40000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.collab-btn:hover {
    background: #a80000;
}

/* RIGHT VISUAL */
.collab-visual {
    width: 50%;
    height: 350px;
    position: relative;
}

/* CENTER */
.center-circle {
    width: 120px;
    height: 120px;
    background: #d40000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ORBITS */
.orbit {
    border: 1px dashed #d40000;
    border-radius: 50%;
    position: absolute;
    animation: rotate 18s linear infinite;
}

.orbit1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* DOTS */
.dot {
    width: 12px;
    height: 12px;
    background: #d40000;
    border-radius: 50%;
    position: absolute;
}

.dot1 { top: 0; left: 50%; }
.dot2 { bottom: 0; left: 50%; }
.dot3 { left: 0; top: 50%; }
.dot4 { right: 0; top: 50%; }

/* ANIMATION */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* MOBILE */
@media(max-width:768px){
    .collab-section .container {
        flex-direction: column;
        text-align: center;
    }

    .collab-content,
    .collab-visual {
        width: 100%;
    }
}

.center-circle {
    box-shadow: 0 10px 40px rgba(212,0,0,0.4);
}

.collab-btn {
    box-shadow: 0 5px 20px rgba(212,0,0,0.4);
}


@media(max-width:768px){

    .orbit2{
        width: 220px;
        height: 220px;
    }

}



/* ===== DESKTOP ===== */

.center-image{
    width: 100%;
    height: 400px;
    border-radius: 5%;
    overflow: hidden;
    position: relative;
    z-index: 5;
    cursor: pointer;

    transition: 0.5s ease;

    animation: zoomInOut 4s ease-in-out infinite;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.center-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* HOVER */

.center-image:hover{
    transform: scale(1.12);
}

.center-image:hover img{
    transform: scale(1.08);
}

/* AUTO ZOOM */

@keyframes zoomInOut{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.05);
    }
}

/* ===== MOBILE VIEW ===== */

@media(max-width:768px){

    .collab-visual{
        width: 100%;
        height: 280px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .center-image{
        width: 268px;
        height: 178px;

        /* mobile me zoom kam */
        animation: mobileZoom 4s ease-in-out infinite;
    }

    .orbit1{
        width: 190px;
        height: 190px;
    }

    .orbit2{
        width: 250px;
        height: 250px;
    }

    .dot{
        width: 10px;
        height: 10px;
    }

    /* hover mobile me disable */
    .center-image:hover{
        transform: scale(1);
    }

    .center-image:hover img{
        transform: scale(1);
    }
}

/* MOBILE ANIMATION */

@keyframes mobileZoom{
    0%,100%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.03);
    }
}



/*.............................................................*/

.collab-page {
    font-family: Arial, sans-serif;
}

/* HERO */
.collab-hero {
    background: linear-gradient(rgb(55 20 20 / 40%), rgb(47 16 16)), url(https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg);
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
/*    background-size: cover;*/
background-position: center;
background-repeat: no-repeat;
}

.collab-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.collab-hero p {
    font-size: 18px;
    margin-top: 10px;
}

/* INTRO */
.collab-intro {
    text-align: center;
    padding: 60px 20px;
}

.collab-intro h2 {
    color: #d40000;
    margin-bottom: 15px;
}

/* STEPS */
.collab-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 40px 0;
}

.step-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card h3 {
    color: #d40000;
    font-size: 28px;
}

/* BENEFITS */
.collab-benefits {
    background: #fff5f5;
    padding: 60px 20px;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-top: 20px;
}

/* LOGOS */
.collab-logos {
    padding: 60px 20px;
    text-align: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
    margin-top: 20px;
}

.logo-grid img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* STATS */
.collab-stats {
    background: #d40000;
    color: #fff;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

.stats-grid h3 {
    font-size: 32px;
}

/* CTA */
.collab-cta {
    text-align: center;
    padding: 60px 20px;
}

.cta-btn {
    background: #d40000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.cta-btn:hover {
    background: #a80000;
}

/* MOBILE */
@media(max-width:768px){
    .collab-steps {
        grid-template-columns: 1fr 1fr;
    }
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    .logo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}











/*.......................................................*/

.collab-intro-premium {
    padding: 80px 0;
    background: linear-gradient(to right, #ffffff, #fff5f5);
}

.intro-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT TEXT */
.intro-text {
    width: 60%;
}

.intro-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.intro-text h2 span {
    color: #d40000;
}

.intro-text p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 28px;
    color: #444;
}

/* POINTS */
.intro-points {
    margin-top: 20px;
}

.intro-points div {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* RIGHT CARD */
.intro-card {
    width: 40%;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.3s;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212,0,0,0.2);
}

.intro-card h3 {
    color: #d40000;
    margin-bottom: 10px;
}

/* MOBILE */
@media(max-width:768px){
    .intro-flex {
        flex-direction: column;
    }

    .intro-text,
    .intro-card {
        width: 100%;
    }

    .intro-text h2 {
        font-size: 28px;
    }
}

.intro-text h2 {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:translateY(0);}
}


/*........................*/

.collab-steps-premium {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    color: #d40000;
}

.section-title p {
    color: #555;
}

/* WRAPPER */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* CONNECTING LINE */
.steps-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #eee;
    z-index: 0;
}

/* CARD */
.step-card {
    width: 23%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.4);
}

/* HOVER */
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212,0,0,0.2);
}

/* NUMBER CIRCLE */
.step-number {
    width: 70px;
    height: 70px;
    background: #d40000;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(212,0,0,0.4);
}

/* TEXT */
.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media(max-width:768px){
    .steps-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .steps-wrapper::before {
        display: none;
    }

    .step-card {
        width: 100%;
    }
}

.steps-wrapper::before {
    background: linear-gradient(to right, #d40000, #ff9999);
}


/*.................................................*/

.collab-benefits-premium {
    padding: 80px 0;
    background: linear-gradient(to right, #fff5f5, #ffffff);
}

/* GRID */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.benefit-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212,0,0,0.2);
}

/* ICON */
.benefit-card .icon {
    font-size: 35px;
    margin-bottom: 15px;
}

/* TITLE */
.benefit-card h3 {
    font-size: 18px;
    color: #d40000;
    margin-bottom: 10px;
}

/* TEXT */
.benefit-card p {
    font-size: 14px;
    color: #555;
}

/* RED HOVER GLOW */
.benefit-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(212,0,0,0.1);
    transition: 0.4s;
}

.benefit-card:hover::before {
    height: 100%;
}

/* MOBILE */
@media(max-width:768px){
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}


/*................................................*/

.collab-logos-premium {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

/* SLIDER WRAPPER */
.logo-slider {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

/* TRACK */
.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

/* LOGO */
.logo-track img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    margin: 0 20px;

    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

/* HOVER EFFECT */
.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/*............................................................*/

.collab-stats-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #d40000, #000);
    color: #fff;
    position: relative;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* CARD */
.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* NUMBER */
.stat-card h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* MOBILE */
@media(max-width:768px){
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/*................................................................................*/

.vinson-img {
      height: 45px;
    vertical-align: middle;
    margin: 0 -11px;
    padding-bottom: 10px;
}



.lubricants-page{
    background: url("https://avatars.mds.yandex.net/get-altay/11408080/2a00000193d5f3e16cc0829657d690ba476c/XXL_height");
    background-size: cover;
    background-position: center;
}


/*.......................................................................................................*/

.brand-title{
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.brand-title img{
    width: 65px;
    height: auto;
    object-fit: contain;
}






.brand-title{
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    gap: 15px;

    font-size: 22px;
    font-weight: 700;
}

/* TEXT */

.brand-title span{
    flex: 1;
}

/* LOGO RIGHT SIDE */

.brand-title img{
    width: 80px;
    height: 60px;
    object-fit: contain;

    margin-left: auto;
}





/*.......................................................................................................................*/


.about1-page{
    background: #f8f9fc;
    overflow: hidden;
}

/* HEADING */

.about1-heading .sub-title{
    color: #e53935;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about1-heading h2{
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: #111;
}

.about1-heading p{
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* ROW */

.about1-row{
    margin-bottom: 80px;
}

/* IMAGE */

.about1-img{
    overflow: hidden;
    border-radius: 20px;
    position: relative;
        padding: 60px;
}

.about1-img img{
    width: 100%;
    border-radius: 20px;
    transition: 0.5s ease;
    height: 500px;
    object-fit: cover;
}

.about1-img:hover img{
    transform: scale(1.05);
}

/* CONTENT */

.about1-content h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.about1-content p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about1-content ul{
    padding-left: 20px;
}

.about1-content ul li{
    margin-bottom: 10px;
    color: #444;
}

/* MOBILE */

@media(max-width:768px){

    .about1-heading h2{
        font-size: 30px;
    }

    .about1-content{
        margin-top: 30px;
    }

    .about1-content h3{
        font-size: 24px;
    }

    .about1-row{
        margin-bottom: 50px;
    }

    .about1-img img{
        height: 200px;
    }
}
















/* =========================
   PREMIUM ABOUT HEADING
========================= */

.about1-heading{
    position: relative;
    margin-bottom: 90px;
    z-index: 2;
}

/* MINI TITLE */

.about1-mini-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 25px;
}

/* LINES */

.about1-mini-title span{
    width: 55px;
    height: 2px;

    background:
    linear-gradient(to right,#ff3d5a,#ff7b54);

    border-radius: 10px;
}

/* TEXT */

.about1-mini-title h6{
    margin: 0;

    color: #ff4d67;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* MAIN HEADING */

.about1-heading h2{
    font-size: 64px;
    font-weight: 800;

    color: #646464;

    margin-bottom: 25px;

    line-height: 1.2;
}

/* HIGHLIGHT */

.about1-heading h2 span{

    background:
    linear-gradient(90deg,#ff3d5a,#ff9a5a);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PARAGRAPH */

.about1-heading p{
    max-width: 760px;

    margin: auto;

    font-size: 18px;

    line-height: 1.9;

    color: rgb(14 14 14 / 72%);
}

/* ANIMATION */

.about1-heading{
    animation: fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

    .about1-heading{
        margin-bottom: 60px;
    }

    .about1-heading h2{
        font-size: 38px;
    }

    .about1-heading p{
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .about1-mini-title span{
        width: 35px;
    }

    .about1-mini-title h6{
        font-size: 12px;
        letter-spacing: 2px;
    }
}



/* =========================
   PREMIUM ABOUT ROW
========================= */

.about1-row{
    position: relative;
    margin-bottom: 120px;
}

/* IMAGE WRAPPER */

.about1-image-wrapper{
    position: relative;
}

/* GLOW */

.about1-glow{
    position: absolute;
    width: 300px;
    height: 300px;

    background: rgba(255,77,103,0.25);

    filter: blur(120px);

    top: -60px;
    left: -60px;

    z-index: 1;
}

/* IMAGE */

.about1-img{
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.35);
}

.about1-img img{
    width: 100%;
    display: block;

    transition: 0.7s ease;
}

/* IMAGE HOVER */

.about1-img:hover img{
    transform: scale(1.08);
}

/* FLOATING CARD */

.about1-floating-card{
    position: absolute;

    bottom: -25px;
    right: 30px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.1);

    padding: 22px 30px;

    border-radius: 22px;

    z-index: 5;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.3);
}

/* CARD NUMBER */

.about1-floating-card h4{
    margin: 0;

    font-size: 34px;
    font-weight: 800;

    color: #ff4d67;
}

/* CARD TEXT */

.about1-floating-card span{
    color: rgb(6 6 6 / 75%);

    font-size: 14px;
}

/* CONTENT */

.about1-content{
    padding-left: 40px;
}

/* YEAR */

.about1-year{
    display: inline-block;

    color: #ff4d67;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

    text-transform: uppercase;
}

/* TITLE */

.about1-content h3{
    font-size: 48px;
    font-weight: 800;

    line-height: 1.2;

    color: #181717;

    margin-bottom: 20px;
}

/* LINE */

.about1-line{
    width: 90px;
    height: 4px;

    border-radius: 20px;

    margin-bottom: 30px;

    background:
    linear-gradient(to right,#ff4d67,#ff9a5a);
}

/* TEXT */

.about1-content p{
    color: rgb(39 39 39 / 72%);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 20px;
}

/* FEATURES */

.about1-features{
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

/* SINGLE FEATURE */

.about1-feature{
    display: flex;
    align-items: center;

    gap: 15px;
}

/* ICON */

.about1-feature i{
    color: #ff4d67;

    font-size: 18px;
}

/* TEXT */

.about1-feature span{
    color: #333333;

    font-size: 16px;

    font-weight: 500;
}

/* MOBILE */

@media(max-width:991px){

    .about1-content{
        padding-left: 0;
        margin-top: 40px;
    }

    .about1-content h3{
        font-size: 34px;
    }

    .about1-floating-card{
        right: 15px;

        padding: 18px 24px;
    }

    .about1-floating-card h4{
        font-size: 28px;
    }
}

@media(max-width:768px){

    .about1-row{
        margin-bottom: 80px;
    }

    .about1-content h3{
        font-size: 28px;
    }

    .about1-content p{
        font-size: 15px;
    }

    .about1-floating-card{
        bottom: -20px;
    }
}








/* =========================
   PREMIUM INFO GRID
========================= */

.about1-info-grid{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 25px;
}

/* CARD */

.about1-info-card{

    position: relative;

    padding: 35px 28px;

    border-radius: 25px;

    background:
    rgba(255,255,255,0.05);

    backdrop-filter: blur(12px);

    border:
    1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: 0.5s ease;

    min-height: 240px;
}

/* HOVER */

.about1-info-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(255,77,103,0.4);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.3);
}

/* GLOW EFFECT */

.about1-info-card::before{

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background:
    rgba(255,77,103,0.15);

    border-radius: 50%;

    top: -80px;
    right: -80px;

    filter: blur(40px);
}

/* ICON */

.about1-icon{

    width: 70px;
    height: 70px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
    linear-gradient(135deg,#ff4d67,#ff9a5a);

    box-shadow:
    0 15px 35px rgba(255,77,103,0.35);
}

/* ICON I */

.about1-icon i{

    color: #fff;

    font-size: 28px;
}

/* TITLE */

.about1-info-card h4{

    color: #484848;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;
}

/* TEXT */

.about1-info-card p{

    color:
    rgb(31 31 31 / 72%);

    line-height: 1.8;

    margin: 0;
}

/* MOBILE */

@media(max-width:768px){

    .about1-info-grid{

        grid-template-columns: 1fr;
    }

    .about1-info-card{

        min-height: auto;
    }
}



/*==========================================================================================*/


/* =========================
   SAME THEME COLOR FIX
========================= */

/* CARD */

.international-modern-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background:
    rgba(255,255,255,0.05);

    backdrop-filter: blur(14px);

    border:
    1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: 0.5s ease;
}

/* HOVER */

.international-modern-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(255,77,103,0.4);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.35);
}

/* ICON */

.modern-icon{

    width: 70px;
    height: 70px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(135deg,#ff4d67,#ff9a5a);

    box-shadow:
    0 15px 35px rgba(255,77,103,0.35);
}

/* ICON */

.modern-icon i{

    color: #fff;

    font-size: 28px;
}

/* GLOW EFFECT */

.international-modern-card::before{

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background:
    rgba(255,77,103,0.15);

    border-radius: 50%;

    top: -90px;
    right: -90px;

    filter: blur(50px);
}

/* NUMBER */

.modern-card-top span{

    font-size: 48px;

    font-weight: 800;

    color:
    rgba(255,255,255,0.06);
}

/* TITLE */

.international-modern-card h4{

    color: #454444;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;
    margin-top: 20px;
}

/* TEXT */

.international-modern-card p{

    color:
    rgb(34 34 34 / 72%);

    line-height: 1.8;

    margin: 0;
}

/* GRID FIX */

.international-modern-grid{

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    width: 100%;
}

/* CARD */

.international-modern-card{
    width: 100%;
}

/* MOBILE */

@media(max-width:768px){

    .international-modern-grid{

        grid-template-columns: 1fr;
    }
}





/*========================================================================*/


/* =========================
   VINSON GROWTH SECTION
========================= */

.vinson-growth-section{

    position: relative;

    padding: 120px 0;

    background:
    linear-gradient(135deg,#090917,#111126);

    overflow: hidden;
}

/* TIMELINE */

.vinson-growth-timeline{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 35px;
}

/* CARD */

.vinson-growth-card{

    position: relative;

    padding: 40px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.05);

    backdrop-filter: blur(14px);

    border:
    1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: 0.5s ease;
}

/* HOVER */

.vinson-growth-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(255,77,103,0.4);

    box-shadow:
    0 25px 50px rgba(0,0,0,0.35);
}

/* GLOW */

.vinson-growth-card::before{

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background:
    rgba(255,77,103,0.12);

    border-radius: 50%;

    top: -100px;
    right: -100px;

    filter: blur(60px);
}

/* YEAR */

.growth-year{

    display: inline-block;

    padding: 10px 18px;

    border-radius: 30px;

    background:
    rgba(255,77,103,0.15);

    color: #ff4d67;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

/* ICON */

.growth-icon{

    width: 80px;
    height: 80px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(135deg,#ff4d67,#ff9a5a);

    margin-bottom: 30px;

    box-shadow:
    0 15px 35px rgba(255,77,103,0.35);
}

/* ICON I */

.growth-icon i{

    color: #fff;

    font-size: 32px;
}

/* TITLE */

.vinson-growth-card h3{

    color: #fff;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 20px;
}

/* TEXT */

.vinson-growth-card p{

    color:
    rgba(255,255,255,0.72);

    line-height: 1.9;

    margin-bottom: 25px;
}

/* FEATURES */

.growth-feature-list{

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.growth-feature{

    display: flex;
    align-items: center;

    gap: 14px;
}

.growth-feature i{

    color: #ff4d67;

    font-size: 18px;
}

.growth-feature span{

    color: #fff;
}

/* TAGS */

.growth-tags{

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 25px;
}

.growth-tags span{

    padding: 12px 18px;

    border-radius: 30px;

    background:
    rgba(255,255,255,0.08);

    color: #fff;

    font-size: 14px;
}

/* QUOTE */

.growth-quote{

    margin-top: 30px;

    padding: 25px;

    border-left: 4px solid #ff4d67;

    background:
    rgba(255,255,255,0.04);

    border-radius: 0 18px 18px 0;
}

.growth-quote i{

    color: #ff4d67;

    margin-bottom: 15px;

    font-size: 24px;
}

/* PRODUCT GRID */

.growth-product-grid{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;

    margin-top: 30px;
}

/* PRODUCT */

.growth-product{

    padding: 20px;

    border-radius: 20px;

    text-align: center;

    background:
    rgba(255,255,255,0.06);

    color: #fff;

    transition: 0.4s ease;
}

.growth-product:hover{

    transform: translateY(-6px);

    background:
    rgba(255,77,103,0.15);
}

/* STATS */

.growth-stats{

    display: flex;

    gap: 20px;

    margin-top: 35px;
}

.growth-stat{

    flex: 1;

    text-align: center;

    padding: 22px;

    border-radius: 20px;

    background:
    rgba(255,255,255,0.05);
}

.growth-stat h4{

    color: #ff4d67;

    font-size: 28px;

    margin-bottom: 10px;

    font-weight: 800;
}

.growth-stat span{

    color:
    rgba(255,255,255,0.72);

    font-size: 14px;
}

/* MOBILE */

@media(max-width:991px){

    .vinson-growth-timeline{

        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){

    .vinson-growth-section{

        padding: 80px 0;
    }

    .vinson-growth-card{

        padding: 28px;
    }

    .vinson-growth-card h3{

        font-size: 26px;
    }

    .growth-product-grid{

        grid-template-columns: 1fr;
    }

    .growth-stats{

        flex-direction: column;
    }
}


.whatsapp-chat{
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;

  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

/* Hover */
.whatsapp-chat:hover{
  transform: scale(1.1);
  background: #1ebe5d;
}