/* =========================
   RESET
========================= */
/* ===== ROOT COLORS ===== */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #e60012;
    --text-color: #ffffff;
    --text-light: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply these globally to your site */
h1,
h2,
h3,
h4,
h5 {
    /* color: var(--primary-color);  */
    /* Uses your dark blue for headings */
    margin-top: 0;
    line-height: 1.2;
}

p {
    color: var(--secondary-color);
    /* Uses your secondary dark blue for body text */
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Optional: If you want text-light for specific sub-descriptions */
.text-light {
    color: var(--text-light);
    /* #b0b0b0 */
}

/* Optional: If you want white text (for the dark sections like footer) */
.white-text {
    color: var(--text-color);
    /* #ffffff */
}

/* body{
    font-family:Arial, Helvetica, sans-serif;
} */

/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1400px;
    margin: auto;
    /* padding:0 30px; */
}






/* 1. Ensure the dropdown container is relative */
.dropdown {
    position: relative;
}

/* 2. Style the submenu and add the invisible bridge */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    /* Remove your margin: 10px; completely */
    padding-top: 15px;
    /* Use padding for visual space instead of margin */
    display: none;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* margin-left: 65px; */
}

/* 3. THE "HOVER BRIDGE" FIX */
/* This adds an invisible 15px high block that connects the menu to the submenu */
.submenu::before {
    content: "";
    position: absolute;
    top: -15px;
    /* Matches the padding-top above */
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* 4. Trigger display on parent hover */
.dropdown:hover .submenu {
    display: block;
}

.submenu li a::before {
    content: "\f35a";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
}

/* Specific styling for the menu container */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 340px;
    /* Wider to accommodate long text like 'Dealer & Distributorship' */
    background: #ffffff;
    /* padding: 10px 0; */
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
}

/* Hover state for the dropdown */
.dropdown:hover .submenu {
    display: block;
}

.submenu li a {
    display: block;
    padding: 4px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.submenu li a:hover {
    color: var(--accent-color);
    background-color: #f9f9f9;
}


/* 1. Ensure the container (li) is relative to position the submenu */
.dropdown {
    position: relative;
}

/* 2. Target the parent (li) instead of the anchor (a) to keep menu open */
/* This ensures the hover stays active while in the link OR the submenu */
.dropdown:hover .submenu {
    display: block !important;
}

/* 3. The submenu styling */
.submenu {
    position: absolute;
    top: 100%;
    /* Sits exactly at the bottom of the parent */
    left: 0;
    min-width: 250px;
    background: #ffffff;
    display: none;

    /* REMOVE margin: 10px; - this is what breaks your hover */

    /* ADD padding-top instead */
    padding-top: 10px;

    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* 4. Optional: If there is a gap, add a small invisible padding */
/* This prevents the "flicker" when moving the mouse between link and menu */
.submenu::before {
    content: "";
    position: absolute;
    top: 0px;
    /* Adjust based on your nav height */
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}



ul {

    list-style: none;
    margin: 0;
    padding: 0;

}

a {

    text-decoration: none;

}



/*=============================================
            HEADER
=============================================*/

.main-header {

    position: fixed;

    left: 0;
    top: 20px;

    width: 100%;

    z-index: 9999;

    transition: .4s;

}

.main-header.sticky {

    top: 0;

}

.main-header .container {

    max-width: 1450px;

}



/*=============================================
        HEADER WRAPPER
=============================================*/

.header-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 8px 20px;
    background-color: white;
    /* background:rgba(13,27,42,.75); */

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 10px 50px 50px 10px;

    box-shadow:

        0 20px 40px rgba(0, 0, 0, .35),

        inset 0 1px rgba(255, 255, 255, .10);

}



/*=============================================
        PHONE
=============================================*/

.header-left {

    display: flex;

    align-items: center;

    padding-right: 35px;

    border-right: 1px solid rgba(255, 255, 255, .08);

}

.phone-box {

    display: flex;

    align-items: center;

    gap: 15px;

}

.phone-icon {

    width: 40px;

    height: 40px;

    border-radius: 15px;

    background: linear-gradient(135deg, #ff3131, var(--accent-color));

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 18px;

}

.phone-number {

    display: block;

    color: var(--primary-color);

    font-size: 20px;

    font-weight: 700;

}

.phone-time {

    color: var(--text-light);

    font-size: 14px;

}



/*=============================================
                LOGO
=============================================*/

/* .logo{

    padding:0 35px;

} */

.logo img {

    height: 60px;

}



/*=============================================
            NAVIGATION
=============================================*/

.desktop-menu {

    margin-left: auto;

}

.desktop-menu>ul {

    display: flex;

    align-items: center;

    gap: 45px;

}

.desktop-menu>ul>li {

    position: relative;

}

.desktop-menu>ul>li>a {

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .5px;

    position: relative;

    transition: .35s;

    display: flex;

    align-items: center;

    gap: 8px;

}

.desktop-menu>ul>li>a i {

    font-size: 12px;

}



/*=============================================
            UNDERLINE
=============================================*/

.desktop-menu>ul>li>a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -12px;

    width: 0;

    height: 3px;

    border-radius: 20px;

    background: var(--accent-color);

    transition: .4s;

}

.desktop-menu>ul>li:hover>a::after,

.desktop-menu>ul>li>a.active::after {

    width: 100%;

}



/*=============================================
            SEARCH
=============================================*/

.search-btn {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .12);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    cursor: pointer;

    transition: .35s;

}

.search-btn:hover {

    background: var(--accent-color);

    border-color: var(--accent-color);

}



/*=============================================
            HEADER RIGHT
=============================================*/

.header-right {

    display: flex;

    align-items: center;

    gap: 20px;

}



/*=============================================
                RFQ BUTTON
=============================================*/

.rfq-btn {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 6px 18px;

    border-radius: 2px 30px 30px 2px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    background: linear-gradient(135deg, #ff2b2b, var(--accent-color));

    transition: .35s;

}

.rfq-btn i {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

}

.rfq-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(230, 0, 18, .35);

}



/*=============================================
            HAMBURGER
=============================================*/

.menu-toggle {

    width: 45px;

    height: 45px;

    display: none;

    cursor: pointer;

    position: relative;

}

.menu-toggle span {

    position: absolute;

    width: 28px;

    height: 3px;

    background: #fff;

    left: 8px;

    transition: .3s;

}

.menu-toggle span:nth-child(1) {

    top: 12px;

}

.menu-toggle span:nth-child(2) {

    top: 21px;

}

.menu-toggle span:nth-child(3) {

    top: 30px;

}

/*=============================================
        DROPDOWN MENU
=============================================*/

.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 140%;
    left: -60px;
    width: 320px;
    background: rgba(13, 27, 42, .96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    z-index: 999;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: flex;
    /* justify-content:space-between; */
    align-items: center;
    color: #fff;
    padding: 14px 25px;
    transition: .3s;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, .05);
    border-left: 3px solid var(--accent-color);
    color: #fff;
    padding-left: 32px;
}

/*=============================================
        SEARCH POPUP
=============================================*/

.search-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 99999;
}

.search-popup.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 700px;
    max-width: 90%;
    display: flex;
    overflow: hidden;
    border-radius: 60px;
    background: #fff;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 18px 30px;
    font-size: 17px;
    outline: none;
}

.search-box button {
    width: 80px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    cursor: pointer;
}

/*=============================================
        MOBILE MENU
=============================================*/

.mobile-menu {

    position: fixed;
    top: 0;
    right: -380px;

    width: 360px;
    max-width: 100%;
    height: 100vh;

    background: var(--primary-color);

    transition: .4s;

    z-index: 99999;

    overflow-y: auto;

    padding: 30px;

}

.mobile-menu.active {
    right: 0;
}

.mobile-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 35px;

}

.mobile-header img {
    height: 55px;
}

.close-menu {

    color: #fff;
    font-size: 30px;
    cursor: pointer;

}

.mobile-menu ul li {

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.mobile-menu ul li a {

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 0;

    font-size: 16px;

}

.mobile-menu ul li ul {

    display: none;

    padding-left: 20px;

}

.mobile-dropdown.active ul {

    display: block;

}

.mobile-dropdown ul li {

    border: none;

}

.mobile-dropdown ul li a {

    color: var(--text-light);

    font-size: 15px;

}

.mobile-rfq {

    display: block;

    text-align: center;

    margin-top: 35px;

    padding: 15px;

    border-radius: 12px;

    background: var(--accent-color);

    color: #fff;

    font-weight: 700;

}

/*=============================================
        OVERLAY
=============================================*/

.menu-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .65);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 9999;

}

.menu-overlay.active {

    opacity: 1;

    visibility: visible;

}

/*=============================================
        TABLET
=============================================*/

@media(max-width:1199px) {

    .header-left {

        display: none;

    }

    .logo {

        padding: 0;

    }

    .desktop-menu {

        margin-left: 40px;

    }

    .desktop-menu>ul {

        gap: 28px;

    }

    .rfq-btn {

        padding: 12px 22px;

    }

}

/*=============================================
        MOBILE
=============================================*/

@media(max-width:991px) {

    .desktop-menu {

        display: none;

    }

    .search-btn {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

    .header-wrapper {

        padding: 15px 14px;
        border-radius: 10px 10px;

    }

    .logo img {

        height: 58px;

    }

    .rfq-btn {

        padding: 12px 20px;

        font-size: 14px;

    }

}

@media(max-width:768px) {

    .main-header {

        top: 0;

    }

    /* .header-wrapper{

    border-radius:0;

} */

    .logo img {

        height: 48px;

    }

    .rfq-btn {

        display: none;

    }

    .mobile-menu {

        width: 320px;

    }

}

@media(max-width:576px) {

    .logo img {

        height: 42px;

    }

    .menu-toggle {

        width: 38px;

    }

}























/* =========================
   TOP BAR
========================= */

.topbar {
    /* border-bottom:1px solid #e5e5e5; */
    background: #fff;
}

.topbar .container {
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.topbar-right a {
    text-decoration: none;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: 1.2px;
    word-spacing: 2px;
    color: rgb(100, 97, 97);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    font-size: 18px;
    color: #ef4040;
}

/* =========================
   HEADER
========================= */

.header-inner {
    background: #fff;
}

.header-inner .container {
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================
   LOGO
========================= */

.logo img {
    max-height: 140px;
    display: block;
}

/* =========================
   MENU
========================= */

.desktop-menu {
    margin-left: auto;
    /* margin-right:80px; */
}

.desktop-menu>ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 70px;
}

.desktop-menu>ul>li {
    position: relative;
}

.desktop-menu>ul>li>a {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}






.desktop-menu>ul>li>a {
    text-decoration: none;
    color: #222;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}





/* ==========================
   RFQ BUTTON
========================== */

.header-action {
    margin-left: 80px;
}


.rfq-btn:hover {
    background: var(--accent-color);
    color: #fff;
}



/* .navbar {
            height: 125px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 45px;
        } */

/* MENU */

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: end;
}

.desktop-menu>ul {
    display: flex;
    align-items: center;
    gap: 55px;
    /* reduced gap */
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-menu>ul>li {
    position: relative;
}

/* .desktop-menu>ul>li>a {
            display: flex;
            align-items: center;
            gap: 6px;

            font-size: 18px;
          
            font-weight: 600;
            letter-spacing: 2px;

            color: #1f2a44;
            text-decoration: none;
            text-transform: uppercase;
            white-space: nowrap;

            padding: 10px 0;
        } */

/* RFQ BUTTON */

.header-action {
    margin-left: 50px;
}



.desktop-menu>ul {
    gap: 28px;
}

.desktop-menu>ul>li>a {
    font-size: 16px;
    letter-spacing: 1px;
}

.topbar-right {
    gap: 45px;
}

.topbar-right a {
    font-size: 16px;
    letter-spacing: 1px;

}


/* Parent Menu Item */

.dropdown {
    position: relative;
}

/* Products Link */

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #1f2a44;

    font-size: 18px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Dropdown Box */

.submenu {
    position: absolute;
    top: 50%;
    left: -60%;

    transform: translateX(-50%);

    min-width: 280px;

    /* background: #fff; */

    list-style: none;

    padding: 15px 0;
    /*margin-top: 28px;*/

    display: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    border-radius: 0px;

    z-index: 999;
}

/* Show on Hover */

.dropdown:hover .submenu {
    display: block;
}

/* Dropdown Items */

.submenu li a {
    display: block;

    padding: 6px 10px;

    /* color: #1f2a44; */

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 1px;

    transition: .3s;
}

/* Hover Effect */

.submenu li a:hover {
    background: #f5f5f5;
    color: var(--accent-color);
}

.submenu {
    display: none !important;
    /* margin-left: -82px; */
}

.dropdown:hover .submenu {
    display: block !important;
}


/* MOBILE HEADER */

.mobile-header {
    display: none;
    height: 90px;
    padding: 0 20px;

    align-items: center;
    justify-content: space-between;

    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-logo img {
    width: 90px;
}

/* RFQ */

.mobile-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-rfq {
    width: 100px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border: 1px solid #ef4040;
    border-radius: 6px;

    color: #ef4040;

    font-size: 16px;
    font-weight: 600;
}

/* HAMBURGER */

.menu-toggle {
    width: 55px;
    height: 55px;

    border: none;
    background-color: var(--accent-color);
    border-radius: 5px;

    cursor: pointer;

    font-size: 24px;
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 350px;
    height: 100vh;

    background: #fff;

    transition: .4s;

    z-index: 999999;

    overflow-y: auto;

    box-shadow: -5px 0 20px rgba(0, 0, 0, .1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    width: 40px;
    height: 40px;

    margin: 14px 0px 20px auto;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    /* background: #f5f5f5; */

    border-radius: 5px;

    cursor: pointer;

    font-size: 24px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    border-top: 1px solid #e5e5e5;
}

.mobile-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 10px;

    text-decoration: none;

    color: #333;

    font-size: 18px;
    letter-spacing: 2px;
}

/* SUBMENU */

.mobile-submenu {
    display: none;
    background: #fafafa;
}

.mobile-submenu li a {
    padding-left: 50px !important;
    font-size: 16px !important;
}

/* TABLET */

@media(max-width:991px) {

    .mobile-header {
        display: flex;
    }

    .header {
        display: none;
    }
}


@media (max-width: 991px) {

    .desktop-menu {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .header-right {
        margin-left: auto;
    }

}

.menu-toggle {
    width: 45px;
    height: 45px;
    display: none;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
}

/* MOBILE */

@media(max-width:576px) {

    .mobile-header {
        height: 80px;
        padding: 0 15px;
    }

    .mobile-logo img {
        width: 100px;
        height: auto !important;
    }

    .mobile-rfq {
        width: 80px;
        height: 45px;
        font-size: 15px;
    }

    .menu-toggle {
        width: 45px;
        height: 45px;
    }

    .mobile-menu {
        width: 100%;
    }
}



.hero-text span {
    animation: fadeUp .8s ease forwards;
}

.hero-text h1 {
    animation: fadeUp 1s ease forwards;
}

.hero-text p {
    animation: fadeUp 1.2s ease forwards;
}

.hero-btn {
    animation: fadeUp 1.4s ease forwards;
}

.hero-image {
    animation: slideLeft 1s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slider {
    background: #f8f8f8;
    min-height: 500px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 700px;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #1f2a44;
}

.hero-text p {
    margin: 25px 0;
    font-size: 18px;
    line-height: 30px;
}

.hero-image {
    width: 50%;
    text-align: right;
}

.hero-image img {
    max-width: 650px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    height: 60px;

    background: var(--accent-color);
    color: #fff;

    text-decoration: none;
}

.heroSwiper .swiper-slide-active .hero-text span {
    animation: fadeUp .6s ease forwards;
}

.heroSwiper .swiper-slide-active .hero-text h1 {
    animation: fadeUp .8s ease forwards;
}

.heroSwiper .swiper-slide-active .hero-text p {
    animation: fadeUp 1s ease forwards;
}

.heroSwiper .swiper-slide-active .hero-btn {
    animation: fadeUp 1.2s ease forwards;
}

.heroSwiper .swiper-slide-active .hero-image {
    animation: slideLeft 1s ease forwards;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 3px 22px;

    margin-bottom: 30px;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    /* margin-left: -210px; */
}

.hero-badge i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--accent-color);
    color: #fff;

    border-radius: 50%;
    font-size: 14px;
}

.hero-badge span {
    margin: 0 !important;

    font-size: 14px !important;
    font-weight: 700;

    letter-spacing: 3px;
    /* color: #fff; */
    color: var(--primary-color);
}


/* Desktop Large Screens */

.heroSwiper,
.heroSwiper .swiper-slide {
    height: 850px;
    object-fit: cover;
    /* This makes the image fill the area like a background image */
    object-position: center;
}

/* Laptop */

@media (max-width:1400px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 700px;
        object-fit: cover;
        /* This makes the image fill the area like a background image */
        object-position: center;
    }

}

/* Tablet */

@media (max-width:991px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 550px;
        object-fit: cover;
        /* This makes the image fill the area like a background image */
        object-position: center;
    }

}

/* Mobile */

@media (max-width:767px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 450px;
    }

}

/* Small Mobile */

@media (max-width:480px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: 380px;
    }

}

.heroSwiper .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    /* height: 100vh; */

    color: #fff;
}

.hero-content span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.hero-content p {
    max-width: 550px;
    font-size: 17px;
    line-height: 34px;
    margin-bottom: 35px;
}

.hero-btn {
    width: 190px;
    height: 60px;
}


.hero-slider {
    position: relative;
    overflow: hidden;
}

.heroSwiper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 50vh;
    min-height: 700px;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Background Images */

.slide-1 {
    background: url('assets/images/banner/hero_01.png') center center/cover no-repeat;
}

.slide-2 {
    background: url('assets/images/banner/hero_02.png') center center/cover no-repeat;
}

.slide-3 {
    background: url('assets/images/banner/hero_03.png') center center/cover no-repeat;
}

/* Overlay */

.overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.47) 0%, rgba(0, 0, 0, .45) 40%, rgba(0, 0, 0, .20) 100%) */
}

/* Content */

.hero-content {
    position: relative;
    z-index: 5;

    max-width: 650px;

    color: #fff;

    padding-top: 0;
}

.hero-content span {
    display: block;

    margin-bottom: 15px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 66px;
    line-height: 1.1;

    margin-bottom: 25px;

    font-weight: 700;
}

.hero-content p {
    font-size: 22px;
    line-height: 34px;

    max-width: 550px;

    margin-bottom: 40px;

    color: #f5f5f5;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    height: 60px;

    background: var(--accent-color);

    color: #fff;
    text-decoration: none;

    border-radius: 6px;

    font-weight: 600;

    transition: .4s;
}

.hero-btn:hover {
    background: #fff;
    color: var(--accent-color);
}

/* Swiper Pagination */

.swiper-pagination {
    margin-top: 80px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Animation */

.swiper-slide-active .hero-content span {
    animation: fadeUp .8s ease forwards;
}

.swiper-slide-active .hero-content h1 {
    animation: fadeUp 1s ease forwards;
}

.swiper-slide-active .hero-content p {
    animation: fadeUp 1.2s ease forwards;
}

.swiper-slide-active .hero-btn {
    animation: fadeUp 1.4s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */

@media(max-width:991px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 30px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 610px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .hero-btn {
        width: 160px;
        height: 50px;
    }
}



.container {

    max-width: 1200px;
    margin: auto;
}

/* ===== FOOTER MAIN ===== */
.footer {
    background: linear-gradient(135deg, #050b4b, #170a60);
    color: #ccc;
    padding-top: 60px;
    font-family: 'Poppins', sans-serif;
}

/* ROW */
.footer-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.logo-box {
    width: 120px;
    height: 50px;
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* COMPANY */
.footer-col.company h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-col.company p {
    font-size: 14px;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
}

/* UNDERLINE EFFECT */
.footer-col h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #e80a1c;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    font-size: 14px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-col ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

/* CONTACT */
.contact {
    margin-top: 10px;
    font-size: 14px;
}

/* ===== BOTTOM ===== */
.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #05121d;
    font-size: 13px;
    color: #aaa;
}

/* ===== HOVER GLOW ===== */
.footer-col ul li:hover {
    color: #fff;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1fr 1fr;
    /* FIX WIDTH */
    gap: 60px;
    align-items: start;
}

.footer-col.company h3,
.footer-col.company p,
.footer-col.company .contact {
    color: #fff;
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .footer-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .logo-box {
        margin: 0 auto 15px;
    }
}



/* Tablet */
@media (max-width: 992px) {
    .hero-badge {
        margin-left: 0;

    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-badge {
        margin-left: 0;

    }
}

/* Tablet + Mobile */
@media (max-width: 992px) {
    .heroSwiper .container {
        padding: 0 10px;
    }
}


/* ===== ABOUT SECTION ===== */
.about-section {
    background: #ffffff;
    /* changed to white */
    padding: 80px 0;
    color: var(--primary-color);
    /* dark text */
}

/* WRAPPER */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
    /* dark heading */
}

.about-content p {
    font-size: 18px;
    color: #555;
    /* better for white bg */
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #ff1a2f;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .inner-product {
        gap: 20px;
        /* tablet spacing */
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .inner-product {
        flex-direction: row;
        /* keep same line */
        gap: 20px;
        /* smaller gap */
    }

    .inner-product h3 {
        font-size: 16px;
    }

    .view-all {
        font-size: 13px;
    }
}

/* ===== SECTION ===== */
.featured-products {
    background: var(--primary-color);
    padding: 60px 0;
    color: var(--text-color);
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
}

.section-header p {
    color: var(--text-light);
    font-size: 14px;
}

/* SCROLL CONTAINER */
.product-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

/* HIDE SCROLLBAR */
.product-scroll::-webkit-scrollbar {
    display: none;
}

/* CARD */


/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* TITLE */
.product-card h3 {
    font-size: 18px;
    margin-bottom: -25px;
    margin-left: 3px;
}


/* BUTTON */
.product-card button {
    background: var(--accent-color);
    color: #fff;
    border: none;
    /* padding: 10px 18px; */
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-5px);
}

.product-card button:hover {
    background: #ff1a2f;
}

/* ===== DESKTOP GRID ===== */
@media (min-width: 992px) {
    .product-scroll {
        overflow: hidden;
        justify-content: center;
    }

    .product-card {
        min-width: 280px;
    }
}

.product-grid {
    display: grid;
    /* This creates 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* padding: 20px 0; */
}

.product-card {
    /* border: 1px solid #ddd; */
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    padding-bottom: 1px;
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Tablet/Large Mobile: 2 columns */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.inner-product {
    display: flex;
    gap: 20px;

}

.inner-product h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: #e80a1c;
    font-weight: 700;
    cursor: pointer;
}

/* HOVER EFFECT */
.view-all:hover {
    color: #fff;
    /* change to white */
    transform: scale(1.1);
    /* zoom effect */
}


.about-btn:hover {
    background: var(--primary-color);
    color: #fff;
    /* text color on hover */
}

/* SECTION */
.why-us {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fb, #eef1f5);
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
}

.section-header p {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: red;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* TITLE */
.why-card h3 {
    color: #e60000;
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #fff;
}

/* RESPONSIVE */

/* TABLET */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}



.reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    /* margin-bottom: 40px; */
}

.review-header {
    margin-bottom: 40px;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ff9800;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.review-card h4 {
    margin-top: 10px;
    font-size: 15px;
}

/* PAGINATION DOTS */
.swiper-pagination-bullet {
    background: #ccc;
}

.swiper-pagination-bullet-active {
    background: #ff3c3c;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-slide {
    height: auto;
}

/* 1. Initial State (Normal) */
.icon-box svg {
    fill: #e60012;
    /* Your accent color */
    transition: fill 0.3s ease;
    /* Smooth transition */
    width: 50px;
    height: 50px;
}


/* 2. Hover State */
.why-card:hover .icon-box {
    background-color: #e60012;
    /* Red background on hover */
}

.why-card:hover .icon-box svg {
    fill: #ffffff;
    /* Icon turns white on hover */
}



.social-sidebar {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    z-index: 999;
}

.social-sidebar .icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: #fff;
    text-decoration: none;

    margin: 5px 0;
    border-radius: 10px 0 0 10px;

    font-size: 20px;

    transition: all 0.3s ease;
}

/* Colors */
.youtube {
    background: #FF0000;
}

.facebook {
    background: #1877F2;
}

.twitter {
    background: #1DA1F2;
}

.linkedin {
    background: #0A66C2;
}

.instagram {
    background: #E1306C;
}

/* Hover effect */
.social-sidebar .icon:hover {
    transform: translateX(-8px);
}


.top-marquee {
    /* background: #EE141F; */
    background-color: var(--primary-color);
    /* red background */
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;

}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    margin: 0 40px;
    font-size: 20px;
    color: #fff;
}

.marquee-content i {
    margin-right: 8px;
}

/* Two text colors */
.orange {
    color: white;
}

.blue {
    color: white;
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tablet & Mobile */
@media (max-width:991px) {

    .floating-buttons {
        display: none !important;
    }

}

/* Hide Mobile Scroll Button on Desktop */
.mobile-scroll-top {

    position: fixed;

    right: 20px;

    bottom: 70px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--accent-color);

    color: var(--text-color);

    font-size: 22px;

    cursor: pointer;

    display: none;

    justify-content: center;

    align-items: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);

    z-index: 999;

    transition: .3s;

}

.mobile-scroll-top:hover {

    background: var(--secondary-color);

    transform: translateY(-4px);

}


/* Tablet & Mobile */
@media (max-width:991px) {

    .floating-buttons {

        display: none !important;

    }

    .mobile-scroll-top {

        display: flex;

    }

}


/* Mobile */
@media (max-width:576px) {

    .mobile-scroll-top {

        right: 15px;

        bottom: 70px;

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

}

.about-content p {
    text-align: justify;
}

.hero-btn {
    font-size: 18px;
    /* change as you like */
}

/* Hover Effect */
.hero-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    /* ðŸ‘ˆ stick exactly to menu */
    left: 0;


    width: 260px;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.submenu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}


@media (max-width: 576px) {
    .product-card .inner-product {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .product-card .inner-product h3 {
        margin: 0;
        font-size: 16px;
    }

    .product-card .inner-product .view-all {
        margin: 0;
        font-size: 14px;
        color: red;
        /* optional */
    }
}

.inner-product {
    display: flex;
    justify-content: space-between;
    /* left + right */
    align-items: center;
}

.inner-product h3 {
    margin: 0;
}

.inner-product .view-all {
    margin: 0;
    cursor: pointer;
}

@media (max-width: 991px) {

    ul li a {
        display: block;
        text-align: left;
        padding: 10px 15px;
    }

}

@media (max-width: 991px) {

    /* your mobile menu container (change class if needed) */
    .mobile-menu,
    nav ul {
        max-height: 100vh;
        /* full screen height */
        overflow-y: auto;
        /* enable vertical scroll */
        padding-bottom: 100px;
    }

}




















.service-cardss a {
    text-decoration: none;
    color: #ffffff;
}

.popup-box {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Chrome Scrollbar */
.popup-box::-webkit-scrollbar {
    width: 6px;
}

.popup-box::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 10px;
}

.popup-box::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.services-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.85);
    /* primary dark overlay */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-box {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: auto;
    text-align: center;
    position: relative;
    margin-top: -78px;
    border: 1px solid var(--border-color);
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    border: none;
    color: var(--secondary-color);
    background: var(--text-color);
    border-radius: 50%;
    padding: 5px;
    font-size: 14px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.services-grid {
    display: grid;
    gap: 10px;
    margin-top: 15px;
    font-size: 16px;
}

.services-grid .service-cardss:hover {
    color: var(--text-color);
}

.service-cardss {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.service-cardss:hover {
    color: var(--text-color);
    background: var(--accent-color);
}

.service-cardss a:hover {
    color: var(--text-color);
}



.clinic-mobile-footer {
    display: none;
}

@media (max-width: 991.98px) {
    .clinic-mobile-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 68px;
        background-color: var(--accent-color);
        /* background: var(--primary-color); */
        /* border-top: 1px solid var(--border-color); */
        z-index: 10000;
        justify-content: space-around;
        align-items: center;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    }

    .footer-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-color);
        font-size: 11px;
        font-weight: 600;
        flex: 1;
        height: 100%;
        justify-content: center;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .footer-nav-item:hover,
    .footer-nav-item:active {
        background: var(--primary-color);
        color: var(--text-color);
    }

    .footer-nav-item:hover.whatsapp-item i {
        color: var(--text-color);
    }

    .footer-nav-item i {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .whatsapp-item i {
        color: #25D366;
    }

    body {
        padding-bottom: 60px;
    }
}

/*new code */

.hero-btn {
    position: absolute;
    bottom: 40px;
    /* adjust like image */
    /* left: 50%; */
    /* transform: translateX(-50%); */


}

@media (max-width: 768px) {
    .hero-btn {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
}



/*=========================
    About Page Section
=============================*/

/*=========================================
PAGE BANNER
=========================================*/

.page-banner {
    position: relative;
    /* height: 380px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../images/breadcrumb/breadcrumb_bg.png") center center/cover no-repeat;
    overflow: hidden;
}

.page-overlay {
    position: absolute;
    inset: 0;
    /* background:linear-gradient(
        rgba(5,20,40,.72),
        rgba(5,20,40,.72)
    ); */
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 0px 70px 0px;
}

.page-subtitle {

    display: inline-block;

    padding: 4px 20px;

    background: rgba(255, 255, 255, .12);

    border: 1px solid var(--accent-color);

    backdrop-filter: blur(8px);

    color: var(--accent-color);

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-radius: 30px;

    margin-bottom: 20px;
    margin-top: 10px;

}

.page-banner h1 {

    color: var(--primary-color);

    font-size: 56px;

    font-weight: 700;

    margin-bottom: 18px;

}

.breadcrumb-nav {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-size: 16px;

}

.breadcrumb-nav a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.breadcrumb-nav a:hover {

    color: var(--accent-color);

}

.breadcrumb-nav .active {

    color: var(--accent-color);

    font-weight: 600;

}

.breadcrumb-nav i {

    font-size: 13px;

}



/*=========================================
Large Desktop (1600px+)
=========================================*/

@media (min-width:1600px) {

    .page-banner-content {
        padding: 170px 0 90px;
    }

    .page-banner h1 {
        font-size: 72px;
    }

}

/*=========================================
Laptop
=========================================*/

@media (max-width:1200px) {

    .page-banner-content {
        padding: 150px 0 80px;
    }

    .page-banner h1 {
        font-size: 54px;
    }

}

/*=========================================
Tablet
=========================================*/

@media (max-width:991px) {

    .page-banner {

        background-position: center center;

    }

    .page-banner-content {

        padding: 130px 0 65px;

    }

    .page-subtitle {

        font-size: 13px;
        padding: 8px 18px;
        letter-spacing: 1.5px;

    }

    .page-banner h1 {

        font-size: 44px;
        margin-bottom: 15px;

    }

    .breadcrumb-nav {

        gap: 10px;
        font-size: 15px;
        flex-wrap: wrap;

    }

    .breadcrumb-nav a,
    .breadcrumb-nav .active {

        font-size: 15px;

    }

}

/*=========================================
Mobile
=========================================*/

@media (max-width:767px) {

    .page-banner {

        background-position: center;

    }

    .page-banner-content {

        padding: 115px 15px 55px;

    }

    .page-subtitle {

        font-size: 12px;

        padding: 7px 16px;

        letter-spacing: 1px;

        margin-bottom: 18px;

    }

    .page-banner h1 {

        font-size: 36px;

        line-height: 1.2;

        margin-bottom: 18px;

    }

    .breadcrumb-nav {

        display: inline-flex;

        padding: 12px 20px;

        gap: 8px;

        border-radius: 50px;

    }

    .breadcrumb-nav a,
    .breadcrumb-nav .active {

        font-size: 14px;

    }

}

/*=========================================
Small Mobile
=========================================*/

@media (max-width:480px) {

    .page-banner-content {

        padding: 105px 15px 45px;

    }

    .page-subtitle {

        font-size: 11px;

        padding: 6px 14px;

    }

    .page-banner h1 {

        font-size: 30px;

    }

    .breadcrumb-nav {

        padding: 10px 16px;

        gap: 6px;

    }

    .breadcrumb-nav a,
    .breadcrumb-nav .active {

        font-size: 13px;

    }

    .breadcrumb-nav i {

        font-size: 11px;

    }

}



/* .page-banner{
    animation:bannerZoom 12s ease-in-out infinite alternate;
} */

@keyframes bannerZoom {

    from {
        background-size: 100%;
    }

    to {
        background-size: 108%;
    }

}

/*=========================================
FADE UP ANIMATION
=========================================*/

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp .9s ease forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .5s;
}

.delay-3 {
    animation-delay: .8s;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*==========================
BREADCRUMB
===========================*/

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 6px 20px;

    background: #ffffff;
    border-radius: 60px;
    /* 
    border-radius:60px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-top:40px; */
}

.breadcrumb-nav a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #1f2937;
    text-decoration: none;

    font-size: 17px;
    font-weight: 500;

    transition: .3s;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav .separator {
    color: #8a8a8a;
    font-size: 14px;
}

.breadcrumb-nav .active {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 17px;
}

.breadcrumb-nav i {
    font-size: 14px;
}

@media(max-width:576px) {

    .breadcrumb-nav {
        padding: 10px 18px;
        gap: 12px;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav .active {
        font-size: 14px;
    }

}


/*===========
intro
============*/

/*=========================================
        COMPANY INTRODUCTION
=========================================*/

.company-intro {
    position: relative;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.company-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

/*=========================================
        SECTION TAG
=========================================*/

.section-tag {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: var(--accent-color);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;

}

.section-tag::before {

    content: "";

    width: 45px;

    height: 2px;

    background: var(--accent-color);

}

.section-tag::after {

    content: "";

    width: 45px;

    height: 2px;

    background: var(--accent-color);

}


/*=========================================
        HEADING
=========================================*/

.company-content h2 {

    font-size: 45px;

    line-height: 1.08;

    font-weight: 800;

    color: var(--primary-color);

    margin-bottom: 25px;

}

.company-content h2 span {

    color: var(--accent-color);

}


/*=========================================
        DIVIDER
=========================================*/

.title-divider {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 35px;

}

.title-divider span {

    width: 70px;

    height: 2px;

    background: var(--accent-color);

    border-radius: 20px;

}

.title-divider i {

    color: var(--accent-color);

    font-size: 11px;

}


/*=========================================
        PARAGRAPHS
=========================================*/

.company-content p {

    font-size: 17px;

    line-height: 1.95;

    color: #666;

    margin-bottom: 24px;

    text-align: justify;

}

.company-content p strong {

    color: var(--primary-color);

    font-weight: 700;

}


/*=========================================
        BUTTON
=========================================*/

.theme-btn {

    margin-top: 10px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 10px 24px;

    background: var(--accent-color);

    color: #fff;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    border-radius: 60px;

    transition: all .35s ease;

    overflow: hidden;

    position: relative;

    z-index: 1;

}

.theme-btn::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: var(--primary-color);

    transition: .45s;

    z-index: -1;

}

.theme-btn:hover::before {

    left: 0;

}

.theme-btn:hover {

    color: #fff;

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);

}

.theme-btn i {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.theme-btn:hover i {

    transform: translateX(5px);

    background: rgba(255, 255, 255, .25);

}

/*=========================================
        RIGHT IMAGE
=========================================*/

.company-image {

    position: relative;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

}

.company-image::before {

    content: "";

    position: absolute;

    right: -80px;

    top: -60px;

    width: 720px;

    height: 820px;

    background: #faf8f4;

    border-radius: 180px 0 0 180px;

    z-index: -1;

}

.company-image img {

    width: 100%;

    max-width: 760px;

    border-radius: 25px;

    transition: .6s;

    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, .12));

}

.company-image:hover img {

    transform: scale(1.03);

}


/*=========================================
        FEATURE LIST
=========================================*/

.feature-list {


    row-gap: 4px;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 16px 18px;

    background: #fff;

    border-radius: 18px;

    transition: .35s;

}

.feature-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

}


/*=========================================
        ICON
=========================================*/

.feature-item .icon {

    width: 62px;

    height: 62px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--accent-color);

    font-size: 24px;

    flex-shrink: 0;

    border: 1px solid rgba(230, 0, 18, .12);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

}

.feature-item:hover .icon {

    background: var(--accent-color);

    color: #fff;

    transform: rotate(8deg);

}


/*=========================================
        FEATURE TEXT
=========================================*/

.feature-item h6 {

    margin: 0;

    color: var(--primary-color);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.5;

    transition: .3s;

}

.feature-item:hover h6 {

    color: var(--accent-color);

}


/*=========================================
        DECORATIVE SHAPES
=========================================*/

.company-intro::before {

    content: "";

    position: absolute;

    left: -120px;

    bottom: -120px;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(230, 0, 18, .05),
            transparent 70%);

}

.company-intro::after {

    content: "";

    position: absolute;

    right: -150px;

    top: -120px;

    width: 360px;

    height: 360px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(22, 76, 135, .05),
            transparent 70%);

}


/*=========================================
        IMAGE GLOW
=========================================*/

.company-image::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(255, 255, 255, .65);

    filter: blur(100px);

    right: 120px;

    bottom: 60px;

    z-index: -2;

}

/*=========================================
        LARGE LAPTOP
=========================================*/

@media (max-width:1400px) {

    .company-content h2 {
        font-size: 44px;
    }

    .company-image::before {
        width: 650px;
        height: 760px;
    }

}


/*=========================================
        LAPTOP
=========================================*/

@media (max-width:1200px) {

    .company-intro {
        padding: 100px 0;
    }

    .company-content {
        padding-right: 15px;
    }

    .company-content h2 {
        font-size: 48px;
    }

    .company-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .feature-item {
        padding: 14px;
    }

    .feature-item h6 {
        font-size: 15px;
    }

    .company-image::before {

        width: 560px;

        height: 650px;

        border-radius: 140px 0 0 140px;

    }

}


/*=========================================
        TABLET
=========================================*/

@media (max-width:991px) {

    .company-intro {

        padding: 80px 0;

    }

    .company-content {

        padding-right: 0;

        margin-bottom: 60px;

    }

    .company-content h2 {

        font-size: 42px;

    }

    .company-content p {

        font-size: 16px;

    }

    .feature-list {

        margin-top: 30px;

    }

    .feature-item {

        padding: 15px;

    }

    .company-image {

        margin-top: 20px;

    }

    .company-image::before {

        left: 50%;

        transform: translateX(-50%);

        right: auto;

        top: -30px;

        width: 100%;

        height: 100%;

        border-radius: 40px;

    }

    .company-image img {

        max-width: 100%;

        border-radius: 20px;

    }

}


/*=========================================
        MOBILE
=========================================*/

@media (max-width:767px) {

    .company-intro {

        padding: 70px 0;

    }

    .section-tag {

        font-size: 12px;

        letter-spacing: 2px;

    }

    .company-content h2 {

        font-size: 34px;

        line-height: 1.2;

    }

    .company-content p {

        font-size: 15px;

        line-height: 1.8;

        text-align: left;

    }

    .title-divider {

        margin-bottom: 25px;

    }

    .title-divider span {

        width: 45px;

    }

    .feature-list {

        row-gap: 18px;

    }

    .feature-item {

        padding: 12px;

        gap: 14px;

    }

    .feature-item .icon {

        width: 52px;

        height: 52px;

        font-size: 20px;

    }

    .feature-item h6 {

        font-size: 14px;

        line-height: 1.4;

    }

    .theme-btn {

        padding: 15px 28px;

        font-size: 15px;

        margin-top: 30px;

    }

    .theme-btn i {

        width: 34px;

        height: 34px;

        font-size: 14px;

    }

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px) {

    .company-intro {

        padding: 60px 0;

    }

    .company-content h2 {

        font-size: 30px;

    }

    .company-content p {

        font-size: 14px;

    }

    .feature-item {

        flex-direction: column;

        text-align: center;

    }

    .feature-item h6 {

        font-size: 13px;

    }

    .company-image::before {

        display: none;

    }

}



/*=========================================
        IMAGE ANIMATION
=========================================*/


@keyframes floatImage {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}



/*=========================================
        ICON PULSE
=========================================*/

.feature-item:hover .icon {

    animation: pulse .8s;

}

@keyframes pulse {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.12);

    }

    100% {

        transform: scale(1);

    }

}



/*=========================================
        BUTTON SHINE
=========================================*/

.theme-btn {

    overflow: hidden;

}

.theme-btn::after {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .45),

            transparent);

    transform: skewX(-25deg);

}

.theme-btn:hover::after {

    left: 160%;

    transition: .9s;

}



/*=========================================
        FADE UP
=========================================*/

.fade-up {

    opacity: 0;

    transform: translateY(60px);

    transition: all .8s ease;

}

.fade-up.active {

    opacity: 1;

    transform: translateY(0);

}



/*=========================================
        FEATURE HOVER
=========================================*/

.feature-item {

    position: relative;

    overflow: hidden;

}

.feature-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,

            rgba(230, 0, 18, .04),

            transparent);

    opacity: 0;

    transition: .4s;

}

.feature-item:hover::before {

    opacity: 1;

}



/*=========================================
        IMAGE HOVER
=========================================*/

.company-image {

    overflow: hidden;

}

.company-image img {

    transition: .6s;

}

.company-image:hover img {

    transform: scale(1.05);

}



/*=========================================
        SECTION TRANSITION
=========================================*/

.company-intro {

    position: relative;

}

.company-intro::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 1px;

    background: linear-gradient(to right,

            transparent,

            rgba(0, 0, 0, .08),

            transparent);

}


@media (max-width:991px) {

    .feature-item {

        padding: 15px;

    }

    .feature-item h6 {

        font-size: 15px;

    }

}

@media (max-width:767px) {

    .feature-list {

        row-gap: 15px;

    }

    .feature-item {

        flex-direction: column;

        text-align: center;

        gap: 10px;

        padding: 15px 10px;

    }

    .feature-item .icon {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

    .feature-item h6 {

        font-size: 14px;

        line-height: 1.4;

    }

}

@media (max-width:991px) {

    .theme-btn {

        margin-top: 20px;

        padding: 12px 26px;

        font-size: 15px;

        gap: 12px;

    }

    .theme-btn i {

        width: 34px;

        height: 34px;

        font-size: 14px;

    }

}

@media (max-width:767px) {

    .theme-btn {

        margin-top: 20px;

        padding: 10px 20px;

        font-size: 14px;

        gap: 10px;

        border-radius: 50px;

    }

    .theme-btn i {

        width: 32px;

        height: 32px;

        font-size: 13px;

    }

}

@media (max-width:480px) {

    .theme-btn {

        width: 100%;

        justify-content: center;

        padding: 12px 20px;

        font-size: 14px;

    }

}


/*=========================================
        COUNTER SECTION
=========================================*/

.counter-section {

    padding: 40px 0;

    background: #ffffff;

}

.counter-wrapper {

    background: #fff;

    border: 1px solid #f1f1f1;

    border-radius: 30px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

    overflow: hidden;

}

.counter-box {

    position: relative;

    text-align: center;

    padding: 35px 30px;

    border-right: 1px solid #ececec;

    transition: .35s;

}

.counter-box:hover {

    background: #fff9f9;

}

.counter-icon {

    width: 70px;

    height: 70px;

    margin: auto;

    border-radius: 50%;

    border: 1px solid rgba(255, 0, 0, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--accent-color);

    font-size: 30px;

    background: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

    transition: .4s;

}

.counter-box:hover .counter-icon {

    background: var(--accent-color);

    color: #fff;

    transform: translateY(-8px);

}

.counter-line {

    width: 60px;

    height: 3px;

    background: var(--accent-color);

    display: block;

    margin: 28px auto;

    border-radius: 20px;

}

.counter-number {

    font-size: 50px;

    font-weight: 600;

    color: var(--accent-color);

    margin-bottom: 12px;

}

.counter-box h5 {

    font-size: 20px;

    color: var(--primary-color);

    /* font-weight:700; */

    line-height: 1.35;

    margin: 0;

}

.counter-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);

}

/*==============================
TABLET
==============================*/

@media(max-width:991px) {

    .counter-box {

        border-right: none;

        border-bottom: 1px solid #eee;

    }

    .counter-number {

        font-size: 52px;

    }

    .counter-box h5 {

        font-size: 22px;

    }

    .counter-icon {

        width: 75px;
        height: 75px;
        font-size: 32px;

    }

}

/*==============================
MOBILE
==============================*/

@media(max-width:767px) {

    .counter-box {

        padding: 35px 15px;

    }

    .counter-icon {

        width: 65px;

        height: 65px;

        font-size: 28px;

    }

    .counter-number {

        font-size: 42px;

    }

    .counter-box h5 {

        font-size: 18px;

    }

    .counter-line {

        margin: 18px auto;

        width: 45px;

    }

}


/*=========================================
            FAQ SECTION
=========================================*/

.faq-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f9 100%);
    overflow: hidden;
}

/* Decorative Background */

.faq-section::before {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(230, 0, 18, .05),
            transparent 70%);
}

.faq-section::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(22, 76, 135, .05),
            transparent 70%);
}


/*=========================================
            TITLE
=========================================*/

.faq-title {

    max-width: 700px;

    margin: 0 auto 30px;

}

.faq-title h2 {

    font-size: 44px;

    font-weight: 800;

    color: var(--primary-color);

    /* margin:20px 0 15px; */

}

.faq-title h2 span {

    color: var(--accent-color);

}

.faq-title p {

    font-size: 18px;

    line-height: 1.8;

    color: #777;

}


/*=========================================
            FAQ WRAPPER
=========================================*/

.faq-wrapper {

    max-width: 950px;

    margin: auto;

}


/*=========================================
            ACCORDION
=========================================*/

.custom-faq .accordion-item {

    border: none;

    border-radius: 22px;

    overflow: hidden;

    margin-bottom: 22px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, .07);

    background: #fff;

}

.custom-faq .accordion-button {

    background: #fff;

    border: none;

    box-shadow: none;

    padding: 26px 30px;

    font-size: 21px;

    font-weight: 600;

    color: var(--primary-color);

    display: flex;

    align-items: center;

}

.custom-faq .accordion-button:focus {

    box-shadow: none;

}

.custom-faq .accordion-button::after {

    color: var(--accent-color);

}

.custom-faq .accordion-button:not(.collapsed) {

    background: #fff;

    color: var(--primary-color);

    box-shadow: none;

}


/*=========================================
            ICON
=========================================*/

.faq-icon {

    width: 42px;

    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    background: var(--accent-color);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 20px;

    font-size: 15px;

    transition: .35s;

}

.custom-faq .accordion-button:not(.collapsed) .faq-icon {

    transform: rotate(45deg);

}


/*=========================================
            BODY
=========================================*/

.custom-faq .accordion-body {

    padding: 0 30px 30px 92px;

    font-size: 17px;

    line-height: 1.9;

    color: #666;

}


/*=========================================
            HOVER
=========================================*/

.custom-faq .accordion-item {

    transition: .35s;

}

.custom-faq .accordion-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, .10);

}


/*=========================================
        REMOVE BOOTSTRAP BLUE
=========================================*/

.accordion-button:not(.collapsed)::after {

    filter: hue-rotate(330deg);

}

.accordion-button::after {

    width: 18px;

    height: 18px;

}


/*=========================================
        TABLET
=========================================*/

@media(max-width:991px) {

    .faq-section {

        padding: 90px 0;

    }

    .faq-title h2 {

        font-size: 42px;

    }

    .custom-faq .accordion-button {

        font-size: 18px;

        padding: 22px;

    }

    .custom-faq .accordion-body {

        padding: 0 22px 22px 82px;

        font-size: 16px;

    }

}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:767px) {

    .faq-section {

        padding: 70px 0;

    }

    .faq-title {

        margin-bottom: 45px;

    }

    .faq-title h2 {

        font-size: 34px;

    }

    .faq-title p {

        font-size: 15px;

    }

    .custom-faq .accordion-button {

        padding: 18px;

        font-size: 16px;

    }

    .custom-faq .accordion-body {

        padding: 0 18px 18px 70px;

        font-size: 15px;

    }

    .faq-icon {

        width: 36px;

        height: 36px;

        min-width: 36px;

        margin-right: 15px;

        font-size: 13px;

    }

}


.products-page {
    background: #fff;
}

.category-sidebar {
    background: #fff;
    border: 1px solid #e8e8e8;
    /* border-radius:16px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.category-sidebar h3 {
    margin: 0;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-sidebar li {
    border-bottom: 1px solid #f0f0f0;
}

.category-sidebar li:last-child {
    border-bottom: none;
}

.category-sidebar a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    text-decoration: none;
    color: #333;
    transition: .35s;
    font-weight: 500;
}

.category-sidebar a span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-sidebar span i {
    font-size: 12px;
    /* color:#bdbdbd; */
    transition: .3s;
}

.category-sidebar>a i,
.category-sidebar a>i {
    color: #999;
    transition: .3s;
}

.category-sidebar li:hover a {
    background: #f8f9fc;
    color: var(--accent-color);
    padding-left: 30px;
}

.category-sidebar li:hover span i {
    color: var(--accent-color);
}

.category-sidebar li:hover>a i {
    transform: translateX(5px);
    color: var(--accent-color);
}

.category-sidebar li.active a {
    background: rgba(230, 0, 18, .08);
    color: var(--accent-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 26px;
}

.category-sidebar li.active>a>i {
    color: var(--accent-color);
}

.category-sidebar li.active span i {
    color: var(--accent-color);
}

@media(max-width:991px) {
    .category-sidebar {
        margin-bottom: 30px;
    }
}

/* PRODUCT CARD */

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.product-content {
    padding: 6px;
}




.product-content h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.category-sidebar a span i:first-child {
    width: 22px;
    text-align: center;
    color: var(--accent-color);
    font-size: 16px;
    margin-right: 12px;
    transition: .3s;
}

.category-sidebar li:hover a span i:first-child,
.category-sidebar li.active a span i:first-child {
    transform: scale(1.15);
}



.product-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.product-content a i {
    margin-left: 6px;
    transition: .3s;
}

.product-content a:hover i {
    margin-left: 12px;
}

/* Responsive */

@media(max-width:991px) {

    .product-sidebar {
        margin-bottom: 30px;
    }

}

@media(max-width:767px) {

    .product-card img {
        height: 220px;
    }

    .product-sidebar h4 {
        font-size: 20px;
    }

}

.product-card:hover .product-content h5 {
    color: var(--accent-color);
    transition: .3s;
}

.product-details-card {

    background: #fff;

    border-radius: 20px;

    padding: 20px 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.product-image-box {

    background: white;

    border-radius: 18px;

    /* padding:35px; */

    text-align: center;

}

.product-image-box img {

    width: 100%;

    max-width: 420px;

    transition: .4s;

}

.product-image-box:hover img {

    transform: scale(1.05);

}

.product-category {

    display: inline-block;

    background: rgba(230, 0, 18, .08);

    color: var(--accent-color);

    padding: 8px 18px;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 15px;

}

.product-info h2 {

    font-size: 36px;

    font-weight: 700;

    color: var(--primary-color);

    margin-bottom: 25px;

}

.product-features {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.product-features li {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-size: 17px;

    color: #555;

}

.product-features li i {

    color: var(--accent-color);

    font-size: 18px;

}

.product-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.rfq-btns {

    background: var(--accent-color);

    color: #fff;

    padding: 14px 28px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.rfq-btn:hover {

    background: var(--primary-color);

    color: #fff;

}

.call-btn {

    background: var(--primary-color);

    color: #fff;

    padding: 14px 28px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.call-btn:hover {

    background: var(--accent-color);

    color: #fff;

}

@media(max-width:991px) {

    .product-details-card {

        padding: 15px;

    }

    .product-info {

        margin-top: 35px;

    }

    .product-info h2 {

        font-size: 28px;

    }

}


.similar-products {
    margin-top: 30px;
}

.similar-products h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.similarProductSlider {
    position: relative;
    padding: 0 40px;
}

.similarProductSlider .swiper-slide {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: .3s;
}

.similarProductSlider .swiper-slide:hover {
    border-color: var(--accent-color);
}

.similarProductSlider img {
    width: 100%;
     height:200px !important; 
    object-fit: contain;
}

.similar-prev,
.similar-next {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
    color: var(--accent-color);
}

.similar-prev::after,
.similar-next::after {
    font-size: 15px;
    font-weight: bold;
}

.similarProductSlider {

    width: 100%;

    overflow: hidden;

    padding: 0 45px;

}

.similarProductSlider .swiper-wrapper {

    align-items: center;

}

.similarProductSlider .swiper-slide {

    width: auto;

    border: 1px solid #eee;

    border-radius: 10px;

    padding: 8px;

    background: #fff;

    cursor: pointer;

}

.similarProductSlider img {

    width: 100%;

    /* height:80px; */

    object-fit: contain;

}

.similar-products {
    margin-top: 30px;
}

.similar-products h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.similarProductSlider {
    position: relative;
    width: 100%;
    padding: 0 55px;
    overflow: hidden;
}

.similarProductSlider .swiper-slide {

    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    cursor: pointer;
    transition: .3s;

}

.similarProductSlider .swiper-slide:hover {

    border-color: var(--accent-color);

}

.similarProductSlider img {

    width: 100%;
    /* height:80px; */
    object-fit: contain;

}

/* Navigation */

.similar-prev,
.similar-next {

    width: 42px !important;
    height: 42px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15);

}

.similar-prev::after,
.similar-next::after {

    font-size: 18px !important;
    color: var(--accent-color);
    font-weight: bold;

}

.similar-prev {

    left: 0;

}

.similar-next {

    right: 0;

}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.inner-product a {
    text-decoration: none;
}

.inner-product a h3 {
    color: #ffffff;
    transition: .3s;
}

.inner-product a .view-all {
    color: var(--accent-color);
    transition: .3s;
}

.inner-product a:hover h3 {
    color: #ffffff;
}

.inner-product a:hover .view-all {
    color: var(--accent-color);
}

.product-image-box {

    background: white;

    border-radius: 20px;

    padding: 15px;

    text-align: center;

}

.product-image-box img {

    width: 100%;

height: 350px;
object-fit: contain;
 
    max-width: 400px;

    transition: .35s;

}

/* Mobile */
@media (max-width: 768px) {
    .product-image-box img {
        height: 300px;
    }
}


/* Thumbnail Slider */

.thumbSlider {

    position: relative;

    padding: 0 45px;

}

.thumbSlider .swiper-slide {

    border: 2px solid #eee;

    border-radius: 10px;

    cursor: pointer;

    overflow: hidden;

    transition: .3s;

}

.thumbSlider .swiper-slide img {

    width: 100%;

    height: 80px;

    object-fit: contain;

    padding: 8px;

}

.thumbSlider .swiper-slide:hover {

    border-color: var(--accent-color);

}

.active-thumb {

    border: 2px solid var(--accent-color) !important;

}

/* Navigation */

.thumb-prev,
.thumb-next {

    width: 38px !important;
    height: 38px !important;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);

}

.thumb-prev::after,
.thumb-next::after {

    font-size: 16px !important;

    color: var(--accent-color);

}

.contact-info-section {
    background: #f8f9fc;
}

.contact-card {

    background: #fff;

    border-radius: 18px;

    padding: 15px 10px;

    text-align: center;

    height: 100%;

    border: 1px solid #ececec;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.contact-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent-color);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.contact-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    background: var(--accent-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.contact-card:hover .contact-icon {

    background: var(--primary-color);



    transform: rotate(10deg);

}

.contact-icon i {

    color: #fff;

    font-size: 26px;

}

.contact-card h4 {

    color: var(--primary-color);

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

}

.contact-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;

    font-size: 15px;

}

.contact-card a {

    color: #666;

    text-decoration: none;

    transition: .3s;

}

.contact-card a:hover {

    color: var(--accent-color);

}


/*==========================
    LARGE TABLETS
==========================*/

@media (max-width: 991px) {

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .contact-icon i {
        font-size: 28px;
    }

    .contact-card h4 {
        font-size: 20px;
    }

    .contact-card p,
    .contact-card a {
        font-size: 15px;
        word-break: break-word;
    }

}

/*==========================
        MOBILE
==========================*/

@media (max-width: 767px) {

    .contact-info-section {
        padding: 50px 0;
    }

    .contact-card {

        padding: 25px 20px;

        border-radius: 15px;

        text-align: center;

    }

    .contact-icon {

        width: 65px;

        height: 65px;

        margin-bottom: 15px;

    }

    .contact-icon i {

        font-size: 24px;

    }

    .contact-card h4 {

        font-size: 19px;

        margin-bottom: 12px;

    }

    .contact-card p {

        font-size: 14px;

        line-height: 1.7;

    }

    .contact-card a {

        font-size: 14px;

        word-break: break-word;

    }

}

/*==========================
    SMALL MOBILE
==========================*/

@media (max-width: 480px) {

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-card {

        padding: 22px 18px;

    }

    .contact-icon {

        width: 60px;

        height: 60px;

    }

    .contact-icon i {

        font-size: 22px;

    }

    .contact-card h4 {

        font-size: 18px;

    }

    .contact-card p,
    .contact-card a {

        font-size: 13px;

    }

}


.contact-form-section {

    background: #fff;

}

.contact-form-box {

    background: #fff;

    padding: 20px 25px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.section-title span {

    color: var(--accent-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
    font-size: 20px;

}

.section-title h2 {

    color: var(--primary-color);

    font-size: 38px;

    font-weight: 700;

    margin: 10px 0;

}

.section-title p {

    color: #666;

    margin-bottom: 15px;
    font-size: 14px;

}

.form-control {

    height: 55px;

    border-radius: 10px;

    border: 1px solid #ddd;

    box-shadow: none;

}

textarea.form-control {

    height: auto;

    resize: none;

}

.form-control:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 3px rgba(230, 0, 18, .08);

}

.contact-btn {

    background: var(--accent-color);

    color: #fff;

    border: none;

    padding: 14px 35px;

    border-radius: 8px;

    font-weight: 600;

    transition: .3s;

}

.contact-btn:hover {

    background: var(--primary-color);

}

.map-box {

    height: 100%;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.map-box iframe {

    width: 100%;

    height: 100%;

    min-height: 600px;

    border: 0;

}

@media(max-width:991px) {

    .contact-form-box {

        padding: 30px;

    }

    .map-box iframe {

        min-height: 400px;

    }

}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.required {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

.form-control {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, .12);
}

.map-box {

    height: 100%;

    min-height: 550px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.map-box iframe {

    width: 100%;

    height: 100%;

    border: 0;

}

@media(max-width:991px) {

    .map-box {

        min-height: 400px;

        margin-top: 30px;

    }

}


/*====================================
        TABLET (991px)
====================================*/

@media (max-width:991px) {

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .section-title span {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .form-control {
        height: 52px;
        font-size: 15px;
    }

    textarea.form-control {
        min-height: 160px;
    }

    .contact-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .map-box {
        min-height: 420px;
    }

}


/*====================================
        MOBILE (767px)
====================================*/

@media (max-width:767px) {

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-box {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .section-title {
        text-align: center;
    }

    .section-title span {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-control {
        height: 50px;
        font-size: 14px;
        padding: 12px 15px;
    }

    textarea.form-control {
        min-height: 140px;
    }

    .contact-btn {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .map-box {
        min-height: 350px;
        margin-top: 30px;
        border-radius: 15px;
    }

}


/*====================================
        SMALL MOBILE (480px)
====================================*/

@media (max-width:480px) {

    .contact-form-box {
        padding: 20px 15px;
    }

    .section-title span {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .form-control {
        height: 48px;
        font-size: 13px;
    }

    textarea.form-control {
        min-height: 120px;
    }

    .contact-btn {
        font-size: 14px;
        padding: 13px;
    }

    .map-box {
        min-height: 300px;
    }

}

.corporate-hero-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.corporate-tag {

    display: inline-block;

    padding: 10px 22px;

    background: rgba(230, 0, 18, .08);

    color: var(--accent-color);

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 20px;

}

.corporate-content h1 {

    font-size: 44px;

    line-height: 1.2;

    color: var(--primary-color);

    font-weight: 700;

    margin-bottom: 20px;

}

.corporate-content h1 span {

    color: var(--accent-color);

}

.corporate-content p {

    font-size: 17px;

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

}

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    padding: 12px 18px;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.feature-item i {

    /* color: var(--accent-color); */

    font-size: 18px;

}

.feature-item span {

    color: var(--primary-color);

    font-weight: 600;

}

.hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: var(--accent-color);

    color: #fff;

    text-decoration: none;

    /* padding: 16px 35px; */

    border-radius: 8px;

    font-weight: 600;

    transition: .3s;

}

.hero-btn:hover {

    background: var(--primary-color);

    color: #fff;

}

.corporate-image {

    text-align: center;

}

.corporate-image img {

    width: 100%;

    border-radius: 5px;
    /* max-width:550px; */

}

/* Tablet */

@media(max-width:991px) {

    .corporate-hero-section {

        padding: 60px 0;

    }

    .corporate-content {

        text-align: center;

        margin-bottom: 40px;

    }

    .corporate-content h1 {

        font-size: 42px;

    }

    .hero-features {

        justify-content: center;

    }

}

/* Mobile */

@media(max-width:576px) {

    .corporate-content h1 {

        font-size: 30px;

    }

    .corporate-content p {

        font-size: 15px;

    }

    .hero-features {

        flex-direction: column;

    }

    .feature-item {

        width: 100%;

        justify-content: center;

    }

    .hero-btn {

        width: 100%;

        justify-content: center;

    }

}

.hero-buttons {
    margin-top: 35px;
}

.hero-btns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 35px;

    background: var(--accent-color);
    color: #fff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: all .35s ease;

    border: 2px solid var(--accent-color);

    box-shadow: 0 10px 25px rgba(230, 0, 18, .25);
}

.hero-btns i {
    transition: .35s;
}

.hero-btns:hover {

    background: var(--primary-color);

    border-color: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(13, 27, 42, .25);

}

.hero-btns:hover i {

    transform: translateX(6px);

}

.hero-btns:focus {

    color: #fff;

}

/* Tablet */

@media(max-width:991px) {

    .hero-buttons {
        text-align: center;
    }

}

/* Mobile */

@media(max-width:576px) {

    .hero-btns {

        width: 100%;

        padding: 15px 20px;

        font-size: 15px;

    }

}

.corporate-enquiry-section {
    background: #f8f9fc;
}

.corporate-form-box {

    background: #fff;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.corporate-form-box .form-label {

    font-weight: 600;

    color: var(--primary-color);

    margin-bottom: 8px;

}

.corporate-form-box .required {

    color: var(--accent-color);

}

.corporate-form-box .form-control {

    height: 55px;

    border-radius: 8px;

    border: 1px solid #ddd;

}

.corporate-form-box textarea.form-control {

    height: auto;

    resize: none;

    min-height: 160px;

}

.corporate-form-box select.form-control {

    appearance: none;

}

@media(max-width:991px) {

    .corporate-form-box {

        padding: 30px;

    }

}

@media(max-width:576px) {

    .corporate-form-box {

        padding: 20px;

    }

    .contact-btn {

        width: 100%;

    }

}


/*==============================
WHY PARTNER
==============================*/

.why-partner-section {

    padding: 80px 0;

    background: #f8f9fc;

}

.section-heading {

    margin-bottom: 60px;

}

.section-heading span {

    display: inline-block;

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.section-heading h2 {

    color: var(--primary-color);

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 15px;

}

.section-heading p {

    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 1.8;

}

.partner-card {

    background: #fff;

    padding: 15px 10px;

    border-radius: 18px;

    text-align: center;

    border: 1px solid #ececec;

    transition: .35s;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.partner-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent-color);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

.partner-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--accent-color);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.partner-card:hover .partner-icon {

    background: var(--primary-color);

    transform: rotate(10deg);

}

.partner-icon i {

    color: #fff;

    font-size: 26px;

}

.partner-card h4 {

    color: var(--primary-color);

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

    transition: .3s;

}

.partner-card:hover h4 {

    color: var(--accent-color);

}

.partner-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;

}

/*==============================
TABLET
==============================*/

@media(max-width:991px) {

    .section-heading h2 {

        font-size: 34px;

    }

    .partner-card {

        padding: 30px 25px;

    }

}

/*==============================
MOBILE
==============================*/

@media(max-width:576px) {

    .why-partner-section {

        padding: 60px 0;

    }

    .section-heading {

        margin-bottom: 40px;

    }

    .section-heading span {

        font-size: 16px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .section-heading p {

        font-size: 15px;

    }

    .partner-card {

        padding: 25px 20px;

    }

    .partner-icon {

        width: 70px;

        height: 70px;

    }

    .partner-icon i {

        font-size: 28px;

    }

    .partner-card h4 {

        font-size: 20px;

    }

}


/*=================================
Dealer Process
=================================*/

.dealer-process-section {

    padding: 40px 0;

    background: #fff;

}

.dealer-process {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    flex-wrap: wrap;

}

.process-card {

    position: relative;

    width: 250px;

    background: #fff;

    border-radius: 18px;

    padding: 35px 25px;

    text-align: center;

    border: 1px solid #ececec;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

}

.process-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent-color);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.process-number {

    position: absolute;

    top: 15px;

    right: 18px;

    font-size: 28px;

    font-weight: 700;

    color: rgba(13, 28, 42, 0.21);
    ;

}

.process-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--accent-color);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.process-card:hover .process-icon {

    background: var(--primary-color);

    transform: rotate(10deg);

}

.process-icon i {

    color: #fff;

    font-size: 26px;

}

.process-card h4 {

    color: var(--primary-color);

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

}

.process-card p {

    color: #666;

    line-height: 1.7;

    margin: 0;

}

.process-arrow {

    color: var(--accent-color);

    font-size: 26px;

}

/* Tablet */

@media(max-width:991px) {

    .process-card {

        width: 220px;

    }

    .process-arrow {

        display: none;

    }

}

/* Mobile */

@media(max-width:576px) {

    .dealer-process {

        flex-direction: column;

    }

    .process-card {

        width: 100%;

        max-width: 330px;

    }

    .process-arrow {

        display: block;

        transform: rotate(90deg);

        font-size: 28px;

    }

}

/*=========================================
Dealer Registration
=========================================*/

.dealer-form-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.dealer-form-box {

    background: #fff;

    padding: 20px 50px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    border: 1px solid #ececec;

}

/*=========================================
Section Heading
=========================================*/

.section-heading {

    margin-bottom: 45px;

}

.section-heading span {

    display: inline-block;

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;

}

.section-heading h2 {

    color: var(--primary-color);

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 15px;

}

.section-heading p {

    color: #666;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

/*=========================================
Labels
=========================================*/

.form-label {

    display: block;

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 8px;

}

.required {

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 700;

}

/*=========================================
Inputs
=========================================*/

.form-control {

    height: 55px;

    border: 1px solid #dcdcdc;

    border-radius: 10px;

    box-shadow: none;

    padding: 12px 18px;

    font-size: 15px;

    color: var(--primary-color);

    transition: .3s;

}

.form-control::placeholder {

    color: #999;

}

.form-control:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 4px rgba(230, 0, 18, .08);

}

/*=========================================
Select
=========================================*/

select.form-control {

    appearance: none;

    cursor: pointer;

    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230d1b2a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E") no-repeat right 15px center;

    background-size: 16px;

    padding-right: 45px;

}

/*=========================================
Textarea
=========================================*/

textarea.form-control {

    height: auto;

    min-height: 130px;

    resize: none;

    padding-top: 15px;

}

/*=========================================
Button
=========================================*/

.contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    border: none;

    padding: 16px 40px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 600;

    transition: .35s;

}

.contact-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

}

.contact-btn i {

    transition: .35s;

}

.contact-btn:hover i {

    transform: translateX(5px);

}

/*=========================================
Tablet
=========================================*/

@media(max-width:991px) {

    .dealer-form-section {

        padding: 60px 0;

    }

    .dealer-form-box {

        padding: 35px;

    }

    .section-heading h2 {

        font-size: 34px;

    }

}

/*=========================================
Mobile
=========================================*/

@media(max-width:767px) {

    .dealer-form-section {

        padding: 50px 0;

    }

    .dealer-form-box {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .section-heading {

        margin-bottom: 35px;

    }

    .section-heading span {

        font-size: 16px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .section-heading p {

        font-size: 14px;

    }

    .form-label {

        font-size: 14px;

    }

    .form-control {

        height: 50px;

        font-size: 14px;

    }

    textarea.form-control {

        min-height: 120px;

    }

    .contact-btn {

        width: 100%;

        padding: 15px;

    }

}

/*==================================
Bulk Solutions
==================================*/

.bulk-solutions-section {

    padding: 40px 0;

    background: #f8f9fc;

}

/* Industries */

.industries-box {

    background: var(--primary-color);

    border-radius: 20px;

    padding: 40px;

    margin: 50px 0;

}

.industries-box h4 {

    color: #fff;

    text-align: center;

    font-size: 28px;

    margin-bottom: 30px;

}

.industry-list {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

.industry-item {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 12px;

    padding: 18px;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: .35s;

}

.industry-item:hover {

    background: var(--accent-color);

    transform: translateY(-5px);

}

.industry-item i {

    font-size: 22px;

}

/* Features */

.bulk-features {

    display: grid;

    gap: 25px;

}

.feature-strip {

    background: #fff;

    border-radius: 16px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    gap: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

}

.feature-strip:hover {

    transform: translateY(-6px);

    border-left: 5px solid var(--accent-color);

}

.feature-icon {

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background: var(--accent-color);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}

.feature-icon i {

    font-size: 30px;

}

.feature-content h4 {

    color: var(--primary-color);

    margin-bottom: 8px;

    font-size: 24px;

    font-weight: 700;

}

.feature-content p {

    margin: 0;

    color: #666;

    line-height: 1.8;

}

/* Tablet */

@media(max-width:991px) {

    .industry-list {

        grid-template-columns: repeat(2, 1fr);

    }

    .feature-strip {

        padding: 20px;

    }

}

/* Mobile */

@media(max-width:767px) {

    .bulk-solutions-section {

        padding: 30px 0;

    }

    .industries-box {

        padding: 25px;

    }

    .industry-list {

        grid-template-columns: 1fr;

    }

    .feature-strip {

        flex-direction: column;

        text-align: center;

    }

    .feature-content h4 {

        font-size: 22px;

    }

}


/*=====================================
BULK PURCHASE FORM
======================================*/

.bulk-enquiry-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.bulk-form-box {

    background: #fff;

    padding: 20px 50px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    border: 1px solid #ececec;

}

/*=====================================
SECTION HEADING
======================================*/

.section-heading {

    margin-bottom: 45px;

}

.section-heading span {

    display: inline-block;

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.section-heading h2 {

    color: var(--primary-color);

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 15px;

}

.section-heading p {

    color: #666;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

/*=====================================
FORM LABEL
======================================*/

.form-label {

    color: var(--primary-color);

    font-weight: 600;

    margin-bottom: 8px;

    display: block;

    font-size: 15px;

}

.required {

    color: var(--accent-color);

    font-size: 18px;

    margin-left: 3px;

}

/*=====================================
INPUTS
======================================*/

.form-control {

    height: 55px;

    border-radius: 10px;

    border: 1px solid #ddd;

    padding: 12px 18px;

    box-shadow: none;

    transition: .35s;

    font-size: 15px;

}

.form-control::placeholder {

    color: #999;

}

.form-control:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 4px rgba(230, 0, 18, .08);

}

/*=====================================
SELECT
======================================*/

select.form-control {

    appearance: none;

    cursor: pointer;

    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230d1b2a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E") no-repeat right 15px center;

    background-size: 16px;

    padding-right: 45px;

}

/*=====================================
DATE
======================================*/

input[type="date"] {

    cursor: pointer;

}

/*=====================================
TEXTAREA
======================================*/

textarea.form-control {

    min-height: 150px;

    resize: none;

    height: auto;

    padding-top: 15px;

}

/*=====================================
BUTTON
======================================*/

.contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    border: none;

    padding: 16px 40px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 600;

    transition: .35s;

    text-decoration: none;

}

.contact-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

}

.contact-btn i {

    transition: .35s;

}

.contact-btn:hover i {

    transform: translateX(5px);

}

/*=====================================
TABLET
======================================*/

@media(max-width:991px) {

    .bulk-enquiry-section {

        padding: 60px 0;

    }

    .bulk-form-box {

        padding: 35px;

    }

    .section-heading h2 {

        font-size: 34px;

    }

}

/*=====================================
MOBILE
======================================*/

@media(max-width:767px) {

    .bulk-enquiry-section {

        padding: 30px 0;

    }

    .bulk-form-box {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .section-heading {

        margin-bottom: 35px;

    }

    .section-heading span {

        font-size: 16px;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .section-heading p {

        font-size: 14px;

    }

    .form-label {

        font-size: 14px;

    }

    .form-control {

        height: 50px;

        font-size: 14px;

    }

    textarea.form-control {

        min-height: 130px;

    }

    .contact-btn {

        width: 100%;

        padding: 15px;

    }

}

.bulk-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

}

/* Tablet */

@media(max-width:991px) {

    .bulk-features {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* Mobile */

@media(max-width:767px) {

    .bulk-features {

        grid-template-columns: 1fr;

    }

}


/*==================================
CAREER OVERVIEW
==================================*/

.career-overview-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.career-tag {

    color: var(--accent-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    display: inline-block;

    margin-bottom: 10px;

}

.career-content h2 {

    color: var(--primary-color);

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 20px;

}

.career-content h2 span {

    color: var(--accent-color);

}

.career-desc {

    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;

}

.career-box {

    background: #fff;

    border-radius: 15px;

    padding: 25px;

    margin-bottom: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.career-box h4 {

    color: var(--primary-color);

    font-size: 22px;

    margin-bottom: 20px;

}

.career-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

}

.career-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #555;

}

.career-list i {

    color: var(--accent-color);

}

.career-process {

    margin: 30px 0;

}

.career-process h4 {

    color: var(--primary-color);

    margin-bottom: 20px;

}

.process-flow {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    align-items: center;

}

.process-flow span {

    background: var(--primary-color);

    color: #fff;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

}

.process-flow i {

    color: var(--accent-color);

}

.career-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    padding: 15px 35px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.career-btn:hover {

    background: var(--primary-color);

    color: #fff;

}

.career-image img {

    width: 100%;
    border-radius: 10px;

}

/* Responsive */

@media(max-width:991px) {

    .career-content {

        margin-bottom: 40px;

    }

}

@media(max-width:767px) {

    .career-content h2 {

        font-size: 30px;

    }

    .career-list {

        grid-template-columns: 1fr;

    }

    .process-flow {

        justify-content: center;

    }

}

/*===================================
CAREER GALLERY
====================================*/

.careerv-gallery-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.careerv-section-title {

    margin-bottom: 50px;

}

.careerv-section-title span {

    color: var(--accent-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.careerv-section-title h2 {

    color: var(--primary-color);

    font-size: 42px;

    font-weight: 700;

    margin: 10px 0;

}

.careerv-section-title p {

    color: #666;

    max-width: 700px;

    margin: auto;

}

.careerv-gallery-item {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.careerv-gallery-item img {

    width: 100%;

    height: 270px;

    object-fit: cover;

    transition: .5s;

}

.careerv-gallery-item:hover img {

    transform: scale(1.08);

}

.careerv-gallery-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(13, 27, 42, .9), transparent);

    display: flex;

    align-items: flex-end;

    justify-content: center;

    opacity: 0;

    transition: .4s;

    padding: 25px;

}

.careerv-gallery-item:hover .careerv-gallery-overlay {

    opacity: 1;

}

.careerv-gallery-overlay h5 {

    color: #fff;

    margin: 0;

    font-size: 20px;

}

/*=========================
POPUP
==========================*/

.careerv-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    z-index: 9999;

}

.careerv-lightbox img {

    max-width: 85%;

    max-height: 80vh;

    border-radius: 12px;

}

.careerv-lightbox h4 {

    color: #fff;

    margin-top: 20px;

}

.careerv-close {

    position: absolute;

    top: 25px;

    right: 40px;

    color: #fff;

    font-size: 45px;

    cursor: pointer;

}

/*=========================
Responsive
==========================*/

@media(max-width:767px) {

    .careerv-section-title h2 {

        font-size: 30px;

    }

    .careerv-gallery-item img {

        height: 220px;

    }

}

/*=========================================
CATALOGUE HERO
=========================================*/

.catalogue-hero-section {

    padding: 90px 0;

    background: #f8f9fc;

}

.catalogue-tag {

    display: inline-block;

    background: rgba(230, 0, 18, .08);

    color: var(--accent-color);

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 20px;

    text-transform: uppercase;

}

.catalogue-hero-content h1 {

    font-size: 44px;

    color: var(--primary-color);

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 20px;

}

.catalogue-hero-content h1 span {

    color: var(--accent-color);

}

.catalogue-hero-content p {

    color: #666;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;

}

.catalogue-download-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: var(--accent-color);

    color: #fff;

    padding: 16px 34px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.catalogue-download-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-4px);

}

.catalogue-download-btn i {

    font-size: 20px;

}

.catalogue-hero-image {

    text-align: center;

}

.catalogue-hero-image img {

    width: 100%;

    max-width: 520px;

    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .15));

}

/* Tablet */

@media(max-width:991px) {

    .catalogue-hero-section {

        padding: 70px 0;

    }

    .catalogue-hero-content {

        text-align: center;

        margin-bottom: 50px;

    }

    .catalogue-hero-content h1 {

        font-size: 42px;

    }

}

/* Mobile */

@media(max-width:767px) {

    .catalogue-hero-section {

        padding: 60px 0;

    }

    .catalogue-tag {

        font-size: 13px;

        padding: 8px 18px;

    }

    .catalogue-hero-content h1 {

        font-size: 32px;

    }

    .catalogue-hero-content p {

        font-size: 15px;

    }

    .catalogue-download-btn {

        width: 100%;

        justify-content: center;

        padding: 15px;

    }

    .catalogue-hero-image img {

        max-width: 320px;

    }

}

/*====================================
CUSTOMER SERVICES
=====================================*/

.customer-services-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.customer-service-card {

    background: #fff;

    border-radius: 18px;

    padding: 30px;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    border: 1px solid #ececec;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

    height: 100%;

}

.customer-service-card:hover {

    transform: translateY(-8px);

    border-color: var(--accent-color);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.customer-service-icon {

    width: 75px;

    height: 75px;

    min-width: 75px;

    border-radius: 16px;

    background: var(--primary-color);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;
    background: var(--accent-color);
}

.customer-service-card:hover .customer-service-icon {

    background: var(--primary-color);

    transform: rotate(-8deg);

}

.customer-service-icon i {

    color: #fff;

    font-size: 30px;

}

.customer-service-content h4 {

    color: var(--primary-color);

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 12px;

}

.customer-service-content p {

    color: #666;

    line-height: 1.8;

    margin: 0;

}

/* Tablet */

@media(max-width:991px) {

    .customer-service-card {

        padding: 25px;

    }

}

/* Mobile */

@media(max-width:767px) {

    .customer-services-section {

        padding: 30px 0;

    }

    .customer-service-card {

        flex-direction: column;

        text-align: center;

        align-items: center;

    }

    .customer-service-content h4 {

        font-size: 22px;

    }

    .customer-service-content p {

        font-size: 15px;

    }

}

/*=========================================
SERVICE REQUEST SECTION
=========================================*/

.service-request-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.service-request-box {

    background: #fff;

    padding: 20px 45px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    border: 1px solid #ececec;

}

/*=========================================
SECTION HEADING
=========================================*/

.service-request-box .section-heading {

    margin-bottom: 40px;

}

.service-request-box .section-heading span {

    display: inline-block;

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;

}

.service-request-box .section-heading h2 {

    color: var(--primary-color);

    font-size: 40px;

    font-weight: 700;

    margin-bottom: 12px;

}

.service-request-box .section-heading p {

    color: #666;

    max-width: 650px;

    margin: auto;

    line-height: 1.8;

}

/*=========================================
LABELS
=========================================*/

.service-request-box .form-label {

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 8px;

    display: block;

}

.required {

    color: var(--accent-color);

    font-size: 17px;

}

/*=========================================
INPUTS
=========================================*/

.service-request-box .form-control {

    height: 55px;

    border: 1px solid #ddd;

    border-radius: 10px;

    padding: 12px 18px;

    box-shadow: none;

    font-size: 15px;

    transition: .35s;

}

.service-request-box .form-control::placeholder {

    color: #999;

}

.service-request-box .form-control:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 4px rgba(230, 0, 18, .08);

}

/*=========================================
SELECT
=========================================*/

.service-request-box select.form-control {

    appearance: none;

    cursor: pointer;

    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230d1b2a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E") no-repeat right 15px center;

    background-size: 16px;

    padding-right: 45px;

}

/*=========================================
TEXTAREA
=========================================*/

.service-request-box textarea.form-control {

    height: auto;

    min-height: 130px;

    resize: none;

    padding-top: 15px;

}

/*=========================================
BUTTON
=========================================*/

.service-request-box .contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    border: none;

    padding: 15px 40px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 600;

    transition: .35s;

    text-decoration: none;

}

.service-request-box .contact-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

}

.service-request-box .contact-btn i {

    transition: .35s;

}

.service-request-box .contact-btn:hover i {

    transform: translateX(5px);

}

/*=========================================
TABLET
=========================================*/

@media (max-width:991px) {

    .service-request-section {

        padding: 60px 0;

    }

    .service-request-box {

        padding: 35px;

    }

    .service-request-box .section-heading h2 {

        font-size: 34px;

    }

}

/*=========================================
MOBILE
=========================================*/

@media (max-width:767px) {

    .service-request-section {

        padding: 50px 0;

    }

    .service-request-box {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .service-request-box .section-heading {

        margin-bottom: 30px;

    }

    .service-request-box .section-heading span {

        font-size: 16px;

    }

    .service-request-box .section-heading h2 {

        font-size: 28px;

    }

    .service-request-box .section-heading p {

        font-size: 14px;

    }

    .service-request-box .form-label {

        font-size: 14px;

    }

    .service-request-box .form-control {

        height: 50px;

        font-size: 14px;

    }

    .service-request-box textarea.form-control {

        min-height: 110px;

    }

    .service-request-box .contact-btn {

        width: 100%;

        padding: 15px;

    }

}


/*=========================================
WARRANTY INFORMATION
=========================================*/

.warranty-info-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.warranty-info-box {

    background: #fff;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    border: 1px solid #ececec;

}

.warranty-tag {

    display: inline-block;

    background: rgba(230, 0, 18, .08);

    color: var(--accent-color);

    padding: 10px 22px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.warranty-info-box h2 {

    color: var(--primary-color);

    font-size: 36px;

    font-weight: 700;

    margin-bottom: 18px;

}

.warranty-desc {

    color: #666;

    line-height: 1.9;

    font-size: 16px;

    margin-bottom: 40px;

}

/*=========================
FEATURE LIST
=========================*/

.warranty-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.warranty-list li {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 12px 0;

    color: #555;

    font-size: 17px;

    font-weight: 500;

}

.warranty-list i {

    color: var(--accent-color);

    font-size: 20px;

    margin-top: 3px;

}

/*=========================
IMPORTANT NOTE
=========================*/

.important-note {

    margin-top: 45px;

    background: #f8f9fc;

    border-left: 5px solid var(--accent-color);

    border-radius: 12px;

    padding: 30px;

}

.important-note h4 {

    color: var(--primary-color);

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

}

.important-note h4 i {

    color: var(--accent-color);

    margin-right: 10px;

}

.important-note ul {

    margin: 0;

    padding-left: 20px;

}

.important-note li {

    color: #666;

    line-height: 1.9;

    margin-bottom: 10px;

}

/*=========================
BUTTON
=========================*/

.warranty-info-box .contact-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    text-decoration: none;

    padding: 15px 35px;

    border-radius: 8px;

    font-weight: 600;

    transition: .35s;

}

.warranty-info-box .contact-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

}

.warranty-info-box .contact-btn i {

    transition: .3s;

}

.warranty-info-box .contact-btn:hover i {

    transform: translateX(5px);

}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .warranty-info-section {

        padding: 60px 0;

    }

    .warranty-info-box {

        padding: 35px;

    }

    .warranty-info-box h2 {

        font-size: 34px;

    }

    .warranty-list {

        margin-bottom: 20px;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:767px) {

    .warranty-info-section {

        padding: 30px 0;

    }

    .warranty-info-box {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .warranty-tag {

        font-size: 13px;

        padding: 8px 18px;

    }

    .warranty-info-box h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .warranty-desc {

        font-size: 15px;

        margin-bottom: 30px;

    }

    .warranty-list li {

        font-size: 15px;

        padding: 10px 0;

    }

    .important-note {

        padding: 20px;

        margin-top: 30px;

    }

    .important-note h4 {

        font-size: 20px;

    }

    .warranty-info-box .contact-btn {

        width: 100%;

        justify-content: center;

        padding: 15px;

    }

}


/*=========================================
WARRANTY FORM SECTION
=========================================*/

.warranty-form-section {

    padding: 40px 0;

    background: #f8f9fc;

}

.warranty-form-box {

    background: #fff;

    padding: 50px;

    border-radius: 20px;

    border: 1px solid #ececec;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

/*=========================================
SECTION HEADING
=========================================*/

.warranty-form-box .section-heading {

    margin-bottom: 40px;

}

.warranty-form-box .section-heading span {

    display: inline-block;

    color: var(--accent-color);

    font-size: 18px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 10px;

}

.warranty-form-box .section-heading h2 {

    color: var(--primary-color);

    font-size: 40px;

    font-weight: 700;

    margin-bottom: 15px;

}

.warranty-form-box .section-heading p {

    color: #666;

    line-height: 1.8;

    max-width: 650px;

    margin: auto;

}

/*=========================================
FORM LABEL
=========================================*/

.warranty-form-box .form-label {

    display: block;

    color: var(--primary-color);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 8px;

}

.required {

    color: var(--accent-color);

}

/*=========================================
INPUTS
=========================================*/

.warranty-form-box .form-control {

    width: 100%;

    height: 55px;

    border: 1px solid #ddd;

    border-radius: 10px;

    padding: 12px 18px;

    font-size: 15px;

    box-shadow: none;

    transition: .35s;

}

.warranty-form-box .form-control::placeholder {

    color: #999;

}

.warranty-form-box .form-control:focus {

    border-color: var(--accent-color);

    box-shadow: 0 0 0 4px rgba(230, 0, 18, .08);

}

/*=========================================
SELECT
=========================================*/

.warranty-form-box select.form-control {

    appearance: none;

    cursor: pointer;

    padding-right: 45px;

    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%230d1b2a' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E") no-repeat right 18px center;

    background-size: 16px;

}

/*=========================================
FILE INPUT
=========================================*/

.warranty-form-box input[type="file"] {

    height: 55px;

    padding: 12px;

    cursor: pointer;

}

.warranty-form-box input[type="file"]::file-selector-button {

    background: var(--primary-color);

    color: #fff;

    border: none;

    padding: 8px 18px;

    border-radius: 6px;

    margin-right: 15px;

    cursor: pointer;

    transition: .3s;

}

.warranty-form-box input[type="file"]::file-selector-button:hover {

    background: var(--accent-color);

}

/*=========================================
TEXTAREA
=========================================*/

.warranty-form-box textarea.form-control {

    min-height: 130px;

    resize: none;

    padding-top: 15px;

}

/*=========================================
BUTTON
=========================================*/

.warranty-form-box .contact-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--accent-color);

    color: #fff;

    border: none;

    padding: 16px 40px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: .35s;

}

.warranty-form-box .contact-btn:hover {

    background: var(--primary-color);

    color: #fff;

    transform: translateY(-3px);

}

.warranty-form-box .contact-btn i {

    transition: .3s;

}

.warranty-form-box .contact-btn:hover i {

    transform: translateX(5px);

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

    .warranty-form-section {

        padding: 60px 0;

    }

    .warranty-form-box {

        padding: 35px;

    }

    .warranty-form-box .section-heading h2 {

        font-size: 34px;

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px) {

    .warranty-form-section {

        padding: 30px 0;

    }

    .warranty-form-box {

        padding: 25px 20px;

        border-radius: 15px;

    }

    .warranty-form-box .section-heading {

        margin-bottom: 30px;

    }

    .warranty-form-box .section-heading span {

        font-size: 15px;

    }

    .warranty-form-box .section-heading h2 {

        font-size: 28px;

    }

    .warranty-form-box .section-heading p {

        font-size: 14px;

    }

    .warranty-form-box .form-label {

        font-size: 14px;

    }

    .warranty-form-box .form-control {

        height: 50px;

        font-size: 14px;

    }

    .warranty-form-box textarea.form-control {

        min-height: 110px;

    }

    .warranty-form-box .contact-btn {

        width: 100%;

        padding: 15px;

    }

}



.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    transition: 0.3s ease;
}

/* Hover (Desktop) */
.product-name:hover {
    color: var(--accent-color);
    font-weight: 700;
}

/* Tablet */
@media (max-width: 992px) {
    .product-name {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-name {
        font-size: 15px;
        line-height: 1.4;
    }
}





/*new code*/

/* =====================================================
   CATEGORY CARD IMAGE - SHOW FULL PRODUCT
   ===================================================== */

.featured-products .product-card {
    overflow: hidden;
}

/* Image area */
.featured-products .product-card > a {
    display: block;
    width: 100%;
    height: 250px;
    background: #ffffff;
    overflow: hidden;
}

/* Show the COMPLETE product image */
.featured-products .product-card > a > img {
    width: 100% !important;
    height: 250px !important;

    object-fit: contain !important;
    object-position: center center !important;

    display: block;
    margin: 0 !important;

    background: #ffffff;
}


/* =========================================
   FINAL DESKTOP DROPDOWN FIX
   25px GAP + HOVER BRIDGE + Z-INDEX
========================================= */

@media (min-width: 993px) {

    /* HEADER */
    .main-header {
        position: fixed !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    .header-wrapper {
        position: relative !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    .desktop-menu {
        position: relative !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    .desktop-menu > ul {
        position: relative !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    /* DROPDOWN PARENT */
    .desktop-menu > ul > li.dropdown {
        position: relative !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    /* PRODUCT / MORE LINK */
    .desktop-menu > ul > li.dropdown > a {
        position: relative !important;
        z-index: 1000001 !important;
    }

    /* DROPDOWN */
    .desktop-menu > ul > li.dropdown > .submenu {
        position: absolute !important;

        /* 25px visual gap */
        top: calc(100% + 25px) !important;
        left: 0 !important;

        width: 320px !important;
        min-width: 320px !important;

        padding:  0 !important;
        margin: 0 !important;

       

        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;

        transform: none !important;

        transition: none !important;
        animation: none !important;

        list-style: none !important;

        box-shadow: 0 8px 25px rgba(0,0,0,.12);

        z-index: 1000000 !important;

        pointer-events: none !important;
    }

    /* SHOW DROPDOWN */
    .desktop-menu > ul > li.dropdown:hover > .submenu,
    .desktop-menu > ul > li.dropdown:focus-within > .submenu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* =========================================
       25PX INVISIBLE HOVER AREA
       CONNECTS MENU TO DROPDOWN
    ========================================= */

    .desktop-menu > ul > li.dropdown::after {
        content: "";

        position: absolute;

        left: 0;

        /* Starts immediately below menu */
        top: 100%;

        width: 260px;

        /* Same as dropdown gap */
        height: 15px;

        background: transparent;

        z-index: 999998;

        pointer-events: auto;
    }

    /* DROPDOWN ITEMS */
    .desktop-menu > ul > li.dropdown > .submenu > li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .desktop-menu > ul > li.dropdown > .submenu > li > a {
        display: block !important;

        width: 100% !important;

        padding: 10px 10px !important;

       

        text-decoration: none !important;

        font-size: 15px;
        font-weight: 500;

        transition: .2s ease;
    }

    .desktop-menu > ul > li.dropdown > .submenu > li > a:hover {
        background: #f5f5f5 !important;
        color: var(--accent-color) !important;
    }

}

