* {
    font: 12px / 1.5 "Roboto", Arial, "Microsoft YaHei", sans-serif;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    /* Use ›, >, or → */
    color: #6c757d;
}

a {
    text-decoration: none;
}


.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    padding: 10px 20px;
}

.top-bar .nav-link {
    color: #333;
    padding: 0 12px;
    font-size: 14px;
}

.top-bar .nav-link:hover {
    color: #0D47A1;
}

.top-bar .dropdown-menu {
    font-size: 13px;
}

.divider {
    border-left: 1px solid #ddd;
    height: 16px;
    margin: 0 10px;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 20px;
}

.navbar-brand img {
    width: 220px;
    height: auto;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.search-bar {
    border: 1.5px solid #0D47A1;
    border-radius: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 740px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.15),
        -5px -5px 12px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

.search-bar:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.2),
        -6px -6px 14px rgba(255, 255, 255, 0.8);
}

.search-bar select {
    border: none;
    padding: 10px 15px;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-right: 1px solid #ddd;
    outline: none;
    cursor: pointer;
}

.search-bar input {
    border: none;
    flex: 1;
    padding: 12px 15px;
    font-size: 15px;
    outline: none;
    background: transparent;
    color: #333;
}

.search-bar .camera-icon {
    padding: 0 12px;
    cursor: pointer;
    color: #0D47A1;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.search-bar .camera-icon:hover {
    transform: scale(1.2);
    color: #1565C0;
}

.search-bar button {
    background: linear-gradient(145deg, #0D47A1, #1565C0);
    border: none;
    padding: 12px 18px;
    color: #fff;
    font-size: 16px;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.search-bar button:hover {
    background: linear-gradient(145deg, #1565C0, #0D47A1);
    transform: scale(1.05);
    color: white;
}

.search-bar select.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 25px 10px 15px;
    border: none;
    background: transparent url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") no-repeat right 10px center;
    background-size: 10px 7px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    border-right: 1px solid #ddd;
}

.search-bar select.custom-select:focus {
    outline: none;
    box-shadow: none;
}

.search-bar select.custom-select option {
    color: #000;
    background-color: #fff;
}

/* Search Suggestions */
.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 740px;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: -10px;
    padding-top: 10px;
}

.search-suggestions .suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
}

.search-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestions .suggestion-item:hover {
    background: #f0f7ff;
    color: #0D47A1;
}

.search-suggestions .suggestion-item .product-name {
    font-size: 14px;
    font-weight: 500;
}

.search-suggestions .suggestion-item i {
    font-size: 14px;
    color: #0D47A1;
}

.search-suggestions .suggestion-header {
    background: #f1f1f1;
    padding: 5px 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.5px;
}

.search-suggestions .no-results {
    padding: 15px 20px;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* Custom icon colors */
.icon-rfq {
    color: #e53935;
}

.icon-msg {
    color: #1e88e5;
}

.icon-cart {
    color: #43a047;
}

.icon-user {
    color: #8e24aa;
}

/* Hover effect */
.nav-item i {
    font-size: 24px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item i:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-left: 20px; */
    text-align: center;
    font-size: 13px;
    position: relative;
}

.nav-item .bi {
    font-size: 20px;
    margin-bottom: 3px;
    /* color: #333; */
}

.nav-item .text-danger {
    color: #0D47A1 !important;
    font-weight: 600;
}

.nav-item .nav-link:hover,
.bi:hover {
    color: #0D47A1 !important;
}

.dropdown-text {
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
    max-width: 250px;
    white-space: normal;
}

.nav-item .dropdown-menu {
    top: 100% !important;
    left: 100% !important;
    transform: translateX(-30%);
    margin-top: 5px;
    display: none;
}

.nav-item.dropdown:last-child .dropdown-menu,
.nav-item.dropdown.end .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
}

@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .navbar .search-bar {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

.divider-or {
    display: flex;
    align-items: center;
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 10px 0;
}

.divider-or::before,
.divider-or::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider-or:not(:empty)::before {
    margin-right: 0.75em;
}

.divider-or:not(:empty)::after {
    margin-left: 0.75em;
}

.social-icons a {
    font-size: 20px;
    color: #555;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0D47A1;
}

.dropdown-menu-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    padding: 1rem;
    min-width: 300px;
}

.nav-item.dropdown:hover .dropdown-menu-columns {
    display: grid;
}

.nav-tight .nav-link {
    padding-left: 10px;
    padding-right: 10px;
}

.nav-tight .nav-item {
    margin-left: 5px;
    margin-right: 5px;
}










/* ####### */
/* Hero Section */
/* ####### */


.container-fluids {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    gap: 10px;
    padding: 20px;
    width: 1500px !important;
}

/* Left Section */
.categories {
    /* background: #f9f9f9; */
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

.categories h3 {
    margin-bottom: 10px;
}

.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories li {
    position: relative;
    padding: 8px 1px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

.categories li a span {
    font-size: 14px;
}

.categories li:hover {
    background: #eee;
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    /* column-count: 3;
    column-gap: 30px; */
    min-width: 400px;
}

/* Show submenu on hover */
.categories li:hover .submenu {
    display: block;
}

/* Column styling */
.submenu-column {
    break-inside: avoid;
    margin-bottom: 17px;
    position: relative;
}

.submenu-column h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.submenu-column h4:hover {
    color: #0D47A1;
}

/* Grandchild Flyout */
.grandchild-flyout {
    display: none;
    position: absolute;
    top: -15px;
    left: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    z-index: 101;
    min-width: 250px;
    padding: 10px;
}

.submenu-column:hover .grandchild-flyout {
    display: block;
}

.grandchild-flyout a {
    padding: 6px 10px;
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}

.grandchild-flyout a:hover {
    background: #f8f9fa;
    color: #0D47A1;
}


.submenu p {
    margin: 6px 0;
    font-size: 14px;
    cursor: pointer;
    color: #555;
}

/* .submenu p:hover {
    color: green;
} */

/* Center Section */
.center {
    text-align: center;
}

.banner {
    background: #2ecc71;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.banner h2 {
    margin: 0 0 10px 0;
}

.banner button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #2ecc71;
    cursor: pointer;
    font-weight: bold;
}

.cards {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.card {
    flex: 1 1 25%;
    /* max-width: 25%; */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* pushes heading up, img down */
    /* height: 180px; */
    /* fixed height for layout */
    position: relative;
    border: none !important;
}

.card h3 {
    margin: 0;
    font-size: 15px;
    text-align: left;
    /* top-left heading */
}

.card img {
    height: 90px;
    object-fit: contain;
    margin-bottom: 30px;
}


/* Right Section */
.recommendations {
    /* background: #f9f9f9; */
    padding: 15px;
    border-radius: 8px;
}

.recommendations h3 {
    margin-bottom: 15px;
}

.product {
    display: flex;
    align-items: center;
    margin-bottom: px;
}

.product img {
    width: 80px;
    margin-right: 10px;
}

.product p {
    margin: 0;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    text-align: center;
    position: relative;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.banner {
    position: absolute;
    top: 20%;
    left: 10%;
    color: #fff;
    text-align: left;
}

.banner h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.banner p {
    margin-bottom: 10px;
}

.banner button {
    padding: 8px 16px;
    border: none;
    background: #fff;
    color: #27ae60;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Dots */
.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dots span.active {
    background: #27ae60;
}


/* Banner Section */
.offer-img-large {
    width: 40%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: #fff;
}

.offer-img-small {
    width: calc((60% - 2 * 16px) / 3);
    /* 60% total minus gaps split equally among 3 */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: #fff;
}

/* Hover Effects */
.offer-img-large:hover,
.offer-img-small:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

/* Responsive Layout */
@media (max-width: 768px) {

    .offer-img-large,
    .offer-img-small {
        width: 100%;
    }
}







/* Brand Section */
.popular-brand-scroller {
    position: relative;
    width: 100%;
    /* padding: 15px 0; */
    border-radius: 12px;
}

/* Logos */
.brand-logo {
    width: 180px;
    /* height: 60px; */
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    padding: 8px;
    cursor: pointer;
}

/* .brand-logo:hover {
    transform: translateY(-6px) scale(1.07);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
} */



/* Hide scrollbar */
.brand-logos {
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.brand-logos::-webkit-scrollbar {
    display: none;
}


/*  */
.video-card {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border-radius: 7px;
    overflow: hidden;
    transition: box-shadow 0.1s;
    min-height: 300px;
    /* bigger height */
    padding-bottom: 16px;
}

.video-title {
    font-size: 16px;
    /* bigger font */
    color: #222;
    font-weight: 600;
    margin: 1em 0 0.4em 0.1em;
    padding: 0 1em;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
}


.video-card:hover {
    box-shadow: 0 4px 20px rgba(0, 148, 255, 0.12);
}

.video-thumb {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 6px 6px 0 0;
    min-height: 180px;
    /* Increased height for bigger thumbnail */
}

.play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 48px;
    /* Larger play icon */
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
    pointer-events: none;
}



/* Add gap between cards (bootstrap row already has g-5 which is 3rem gap)
   Override gap for your row */
.row.g-5 {
    gap: 10px !important;
    /* Set gap to 10px between columns */
}




/* Product List  */
.equipment-section {
    display: flex;
    background: #eae5ee;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.equipment-info {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 38px 30px 38px 38px;
    min-width: 220px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.equipment-info::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    border-radius: 8px;
    z-index: 0;
}

.equipment-info>* {
    position: relative;
    z-index: 1;
}

.source-btn {
    background: #ee4247;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 1.5em;
    cursor: pointer;
    font-size: 18px;
}


.info-img {
    position: relative;
    bottom: 16px;
    left: 180px;
    width: 175px;
    height: auto;
}


.equipment-info h2 {
    font-size: 1.8rem;
    margin-bottom: 22px;
    font-weight: 600;
}


.equipment-products {
    flex: 3 1 650px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    background: #fff;
    align-items: stretch;
    padding: 0 0 0 0;
}

.product-item {
    min-height: 250px;
    padding: 32px 18px;
    text-align: left;
    border-right: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: #fff;
    position: relative;
}


.product-item img {
    position: absolute;
    bottom: 16px;
    /* space from bottom */
    right: 18px;
    /* space from right, match padding */
    /* max-width: 115px; */
    /* height: 80px; */
    object-fit: contain;
    width: auto;
}


.product-title {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #444;
}



@media (max-width: 1024px) {
    .equipment-section {
        flex-direction: column;
    }

    .equipment-products {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .equipment-info {
        padding: 18px 14px;
        min-width: 0;
        max-width: none;
    }

    .equipment-products {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }

    .product-item {
        padding: 16px 7px;
    }
}






/*  */
.promo-card {
    /* background: #fff; */
    border-radius: 18px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.07); */
    overflow: hidden;
    min-height: 220px;
}

.promo-badge {
    font-size: 1.25rem;
    background: #ffd600 !important;
    color: #212121;
    letter-spacing: 0.04em;
}

.promo-label {
    font-size: 1.01rem;
    background: #ffd600 !important;
    color: #222;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .promo-card img {
        min-height: 120px;
    }

    .promo-label,
    .promo-badge {
        font-size: 1em;
    }
}


/* New List */
.news-list {
    background: #fff;
    font-size: 1.1em;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    border: none;
}

.news-item {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #e6e9f0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background-color: #f0f6ff;
    transform: translateX(6px);
    box-shadow: 4px 0 0 #0d6efd;
}

.news-date {
    background: #dbe9ff;
    color: #0a4dd9;
    font-weight: 600;
    font-size: 0.9em;
    padding: 6px 15px;
    border-radius: 30px;
    align-self: flex-start;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.25);
}

.news-title {
    font-size: 20px;
    color: #0b1a4d;
    font-weight: 600;
}

.news-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease-in-out, letter-spacing 0.25s ease-in-out;
    font-family: 'Nunito', sans-serif;
}

.news-link:hover {
    color: #0d6efd;
    text-decoration: underline;
    letter-spacing: 0.5px;
}


/* Payment Method */
.payment-icon {
    height: auto;
    width: 90px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 5px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .payment-icon {
        height: 34px;
        padding: 3px 6px;
    }
}



/*  */

.info-links-section {
    background-color: #f5f7fa;
}

.info-links-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.info-links-section .info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-links-section .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-links-section .info-card h5 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #0d6efd;
    font-weight: 600;
}

.info-links-section .info-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto;
}

.bg-primary-light {
    background-color: #cfe2ff;
    color: #0d6efd;
}

.bg-success-light {
    background-color: #d1e7dd;
    color: #198754;
}

.bg-warning-light {
    background-color: #fff3cd;
    color: #ffc107;
}

.bg-danger-light {
    background-color: #f8d7da;
    color: #dc3545;
}

.info-links-section .info-card ul li a {
    display: block;
    color: #333;
    padding: 8px 0;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-links-section .info-card ul li a:hover {
    color: #fff;
    background-color: #0d6efd;
    padding-left: 12px;
}

@media (max-width: 767px) {
    .info-links-section .info-card {
        text-align: left;
        padding: 20px;
    }

    .info-links-section .info-card ul li a:hover {
        padding-left: 8px;
    }
}

.info-links-section .row {
    display: flex;
    flex-wrap: wrap;
    /* gap: 1.5rem; */
    justify-content: space-between;
}

.info-links-section .col-lg-3 {
    flex: 0 0 25%;
    /* 25% width */
    max-width: 25%;
    display: flex;
}

.info-links-section .info-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

/* Tablets */
@media (max-width: 991px) {
    .info-links-section .col-lg-3 {
        flex: 0 0 50%;
        /* 2 cards per row */
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .info-links-section .col-lg-3 {
        flex: 0 0 100%;
        /* 1 card per row */
        max-width: 100%;
    }
}









.footer-logo {
    max-width: 260px;
    margin-bottom: 10px;
    /* margin-top: 20px; */
}


.footer-address {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


.site-footer {
    font-size: 14px;
    color: #555;
}

.site-footer .footer-heading {
    font-size: 16px;
    color: #222;
}

.site-footer .footer-links li {
    margin-bottom: 8px;
}

.site-footer .footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-links a:hover {
    color: #0d6efd;
}

.site-footer .co-brand {
    max-width: 100px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.site-footer .co-brand:hover {
    opacity: 1;
}

.footer-app {
    height: 36px;
}

.social-icons a i {
    font-size: 22px;
    color: #222;
    vertical-align: middle;
    transition: color 0.2s;
}

.social-icons a[aria-label="Facebook"]:hover i {
    color: #1877f3;
}

.social-icons a[aria-label="TikTok"]:hover i {
    color: #010101;
}

.social-icons a[aria-label="Twitter"]:hover i {
    color: #1da1f2;
}

.social-icons a[aria-label="Instagram"]:hover i {
    color: #e1306c;
}

.social-icons a[aria-label="YouTube"]:hover i {
    color: #ff0000;
}

.social-icons a[aria-label="Pinterest"]:hover i {
    color: #e60023;
}

.social-icons a[aria-label="LinkedIn"]:hover i {
    color: #0a66c2;
}


@media (max-width: 768px) {
    .site-footer .social-icons {
        margin-top: 15px;
    }
}

/* Footer Base */
.site-footer {
    font-size: 14px;
    color: #555;
}

.footer-logo {
    max-width: 180px;
}

/* Tablet */
@media (max-width: 992px) {

    .site-footer .row {
        row-gap: 25px;
    }

    .site-footer .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .site-footer .col-md-3,
    .site-footer .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .site-footer {
        text-align: center;
    }

    .site-footer .row {
        row-gap: 30px;
    }

    /* Logo Section Full Width */
    .site-footer .col-md-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Links Half Width */
    .site-footer .col-md-3,
    .site-footer .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: left;
    }

    .footer-address {
        max-width: 500px;
        margin: auto;
    }

    /* Social icons center */
    .social-icons {
        margin-top: 15px;
        /* display: flex; */
        justify-content: center;
        gap: 15px;
    }

    /* Footer bottom */
    .site-footer .d-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}


/* --------------------------
   EQUIPMENT SECTION LAYOUT
--------------------------- */
.equip-section {
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f7;
    position: relative;
    padding: 20px;
    overflow: visible;
}

/* --------------------------
   LEFT PANEL (INFO CARD)
--------------------------- */
.equip-info-card {
    /* flex: 0 0 320px; */
    background-color: #E1D5E1;
    /* box-shadow: 0 2px 12px rgba(44, 57, 85, 0.18); */
    /* padding: 24px 18px; */
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
    height: 100%;
}

.equip-info-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.equip-info-content h5 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.equip-btn {
    background: #ee4247;
    color: #fff;
    border: none;
    padding: 12px 28px;
    /* border-radius: 6px; */
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

/* --------------------------
   PRODUCT GRID (RIGHT SIDE)
--------------------------- */
.equip-products {
    flex: 3 1 650px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    align-content: start;
    background: #fff;
    /* gap: 10px; */
    /* padding: 10px; */
}

.equip-products a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.equip-card {
    background: #fff;
    padding: 14px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #ddd;
    min-height: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.equip-card img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    margin-top: 15px;
}

.equip-card img:hover {
    transform: translateY(-6px);
}

.equip-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
}

.equip-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ee4247;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    font-weight: 500;
}

.equip-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.view-more-container {
    width: 100%;
    /* margin-bottom: 20px; */
}

.view-more-btn {
    background: transparent;
    color: #0D47A1;
    border: 1px solid #0D47A1;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(13, 71, 161, 0.1);
}

.view-more-btn:hover {
    background: #0D47A1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 71, 161, 0.2);
}

.view-more-btn:active {
    transform: translateY(0);
}

.equip-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 10px;
}

@media (max-width: 1200px) {
    .equip-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .equip-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .equip-products {
        grid-template-columns: 1fr;
    }
}

/* --------------------------
   PRODUCT LIST INSIDE LEFT PANEL
--------------------------- */
.equip-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.equip-product-list li {
    font-size: 14px;
    color: #333;
    padding: 8px 12px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.equip-product-list li:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* --------------------------
   SUBMENU (FLYOUT OVERLAY)
--------------------------- */
.equip-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border-left: 1px solid #ddd;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 480px;
    padding: 15px 20px;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 8px 20px; */
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Submenu flips left if needed */
.equip-submenu.left-side {
    left: auto;
    right: 100%;
    border-left: none;
    border-right: 1px solid #ddd;
    transform: translateX(-10px);
}

/* Show submenu on hover */
.equip-product-list li:hover>.equip-submenu {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Submenu Items */
.equip-submenu p {
    margin: 4px 0;
    color: #444;
    font-size: 13px;
    transition: color 0.2s ease;
}

.equip-submenu p:hover {
    color: #2e7d32;
}

/* --------------------------
   RESPONSIVE DESIGN
--------------------------- */
@media (max-width: 1100px) {
    .equip-submenu {
        left: auto;
        right: 100%;
    }
}

@media (max-width: 992px) {
    .equip-section {
        flex-direction: column;
    }

    .equip-info-card {
        flex: 1 1 auto;
        height: auto;
        padding: 24px 18px;
    }

    .equip-info-content {
        align-items: center;
        text-align: center;
    }

    .equip-products {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        margin-top: 15px;
    }

    .equip-submenu {
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        border: none;
        height: auto;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .equip-product-list li:hover>.equip-submenu {
        display: block;
    }
}


.equip-info-img {
    /* position: absolute; */
    right: 0px;
    bottom: 0px !important;
    width: 100%;
    height: auto;
    max-height: 80%;
    max-width: 320px;
    object-fit: contain;
    object-position: bottom right;
}

.equip-info-img-second {
    width: 100%;
    height: auto;
    max-height: 80%;
    max-width: 320px;
    object-fit: contain;
    object-position: bottom right;
}

.equip-header-padding {
    padding: 30px 30px 0 30px;
}

.equip-container-padding {
    padding: 30px;
}

@media (max-width: 992px) {

    .equip-info-img,
    .equip-info-img-second {
        position: relative !important;
        width: 100% !important;
        max-width: 250px !important;
        height: auto !important;
        margin: 20px auto 0 auto !important;
        display: block !important;
        right: auto !important;
        bottom: auto !important;
    }
}

@media (max-width: 768px) {
    .equip-header-padding {
        padding: 15px 15px 0 15px;
    }

    .equip-container-padding {
        padding: 15px;
    }

    .equip-section {
        padding: 15px;
    }

    .equip-products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .equip-info-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .equip-info-card {
        padding: 15px;
    }

    .equip-card {
        padding: 10px;
        min-height: 120px;
    }

    .equip-card img {
        margin-top: 5px;
        max-height: 80px;
    }

    .equip-title {
        font-size: 0.8rem;
    }

    .equip-products {
        gap: 8px;
    }

    .equip-btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}









/* Payment Section */
.pay-section-wrapper {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.pay-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d47a1;
    border-left: 5px solid #0d6efd;
    padding-left: 12px;
}

/* Card Styling */
.pay-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pay-card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.pay-note {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Icons inside cards */
.pay-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pay-icons img,
.pay-icon-img {
    width: 70px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-icons img:hover,
.pay-icon-img:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.qr-code {
    width: 56px !important;
    height: auto;
}

@media (max-width: 768px) {
    .pay-section-title {
        font-size: 1.3rem;
    }

    .pay-icons img,
    .pay-icon-img {
        width: 50px;
    }
}










.unique-industrial-info {
    min-height: 100%;
}

.unique-industrial-btn {
    background: #ff7a18;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.unique-industrial-btn:hover {
    background: #ff5722;
    transform: scale(1.05);
}

.unique-industrial-card {
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.unique-industrial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.unique-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.unique-badge.hot {
    background: linear-gradient(135deg, #ff512f, #dd2476);
}

.unique-badge.sale {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}




/* .unique-machinery-wrapper {
    background: #f9f9fa;
} */

.machinery-highlight {
    transition: all 0.3s ease;
}

.machinery-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.machinery-btn {
    background: #ff7a18;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.machinery-btn:hover {
    background: #ff5722;
    transform: scale(1.05);
}

.machinery-card {
    background: #fff;
    transition: all 0.3s ease;
}

.machinery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.machinery-title {
    font-size: 14px;
}



/*  */
/* ===== Spotlight Carousel ===== */
.carousel-inner .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.category-item {
    flex: 0 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 10px;
}

.category-img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* ===== Carousel Controls ===== */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px;
    height: 40px;
    background: none !important;
    border: none;
    opacity: 1 !important;
    z-index: 2;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: gray !important;
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .category-item {
        flex: 0 1 140px;
        margin: 0 8px;
    }

    .category-img {
        width: 100px;
        height: 80px;
    }

    .carousel-control-prev {
        left: -40px;
    }

    .carousel-control-next {
        right: -40px;
    }
}

@media (max-width: 767px) {
    .category-item {
        flex: 0 1 110px;
    }

    .category-img {
        width: 80px;
        height: 65px;
    }
}

@media (max-width: 480px) {
    .category-item {
        flex: 0 1 80px;
        margin: 0 6px;
    }

    .category-img {
        width: 60px;
        height: 50px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
        /* Hide arrows on very small screens */
    }
}




/*  */
/*  */
/*  */
/*  */
.sidebar-menu {
    background: #f5f7fb;
    border-right: 1px solid #ddd;
    min-height: 100vh;
    /* padding-top: 20px; */
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

/* Add spacing between sidebar and right section */
.main-content {
    padding-left: 30px !important;
    /* adjust gap as you like */
}

/* Optional: add some spacing inside sidebar for better look */
.sidebar-menu ul {
    padding-left: 20px;
}


.sidebar-menu .menu-list {
    list-style: none;
    padding-left: 0;
}

.sidebar-menu .menu-list li {
    position: relative;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
}

.sidebar-menu .menu-list li:hover,
.sidebar-menu .menu-list li.active {
    background: #e3e7ed;
}

.submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 240px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 100;
}

.sidebar-menu .menu-list li:hover>.submenu {
    display: block;
}

.submenu li {
    padding: 10px 16px;
    white-space: nowrap;
    background: #fff;
}

.submenu li:hover {
    background: #f0f4fa;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sidebar-menu {
        min-height: auto;
    }

    .submenu {
        position: static;
        width: 100%;
        border: none;
    }
}


/* --------------------------
   PRODUCT CARD STYLING
--------------------------- */
.card {
    border: 1px solid #ddd;
    /* border for all cards */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* --------------------------
   IMAGE STYLING WITH HOVER EFFECT
--------------------------- */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
    opacity: 0.95;

}

/* --------------------------
   TEXT STYLING
--------------------------- */
.card-body {
    text-align: center;
    padding: 15px;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}

.card:hover .card-title {
    color: #0d6efd;
    text-decoration: underline;
}

/* --------------------------
   RESPONSIVE FIXES
--------------------------- */
@media (max-width: 768px) {
    .card-img-top {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 140px;
    }

    .card-title {
        font-size: 0.9rem;
    }
}



/* --------------------------
   About us page
--------------------------- */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f3ff 100%);
    overflow: hidden;
    position: relative;
}

.about-logo-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 1.75rem;
    letter-spacing: 0.3px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
}

.about-section .btn-primary {
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    border: none;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.about-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.animate-fade {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.company-profile-section table {
    border: 1px solid #dee2e6;
    background-color: #fff;
}

.company-profile-section th {
    background-color: #f8f9fa;
    font-weight: 600;
    width: 25%;
}

.company-profile-section td {
    vertical-align: middle;
}

.company-profile-section a {
    text-decoration: none;
}

.company-profile-section a:hover {
    text-decoration: underline;
}


/* .navbar {
            padding: 20px 20px;
        } */

.heading {
    padding: 20px 30px;
}

.subheading {
    background: #f9f9f9;
    padding: 10px;
    margin-top: 30px;
}

.card-body {
    text-align: center;
}

ul {
    list-style-type: none;
}

.filter-section {
    /* max-height: 90vh; */
    overflow-y: auto;
}

.filter-section h6 {
    color: #333;
    margin-bottom: 8px;
}

.filter-section .form-check-label {
    font-size: 12px;
}

.filter-section::-webkit-scrollbar {
    width: 6px;
}

.filter-section::-webkit-scrollbar-thumb {
    /* background-color: #ccc; */
    border-radius: 3px;
}

.card-img-top {
    width: 100% !important;
    height: 200px !important;
    object-fit: contain !important;
    margin-bottom: 0 !important;
}


.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cart-table th,
.cart-table td {
    vertical-align: middle;
    text-align: center;
}

.quantity-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1.2rem;
}

.qty-input {
    width: 48px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    height: 32px;
}

.remove-cart-btn {
    background: none;
    border: none;
    color: #d54a4a;
    font-size: 1.3rem;
}

.cart-summary-card {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    min-width: 340px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-row .label {
    font-weight: 500;
}

.summary-total {
    font-size: 2rem;
    font-weight: bold;
    color: #2996c6;
}

.btn-checkout {
    width: 100%;
    border-radius: 2rem;
    padding: 12px 0;
    font-size: 1.1rem;
}

.coupon-box {
    border-radius: 2rem;
    background: #fff;
}

.heading {
    padding: 20px 30px;
}

.subheading {
    background: #f9f9f9;
    padding: 10px;
    margin-top: 30px;
}

.card-body {
    text-align: center;
}

ul {
    list-style-type: none;
}

.filter-section {
    overflow-y: auto;
}

.filter-section h6 {
    color: #333;
    margin-bottom: 8px;
}

.filter-section .form-check-label {
    font-size: 12px;
}

.filter-section::-webkit-scrollbar {
    width: 6px;
}

.filter-section::-webkit-scrollbar-thumb {
    /* background-color: #ccc; */
    border-radius: 3px;
}

.shipping-policy table td {
    padding: 10px 0;
    vertical-align: top;
}

.shipping-policy img {
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    padding: 4px;
    object-fit: contain;
}

.shipping-policy h5 {
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
    padding-bottom: 5px;
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.product-card:hover .product-title {
    -webkit-line-clamp: unset;
}


.product-img {
    height: 160px;
    width: 100%;
    object-fit: contain;
}

.category-card-img {
    height: 120px;
    width: 100%;
    object-fit: contain;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}