/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    /* Applying a modern font */
    color: #333;
}

.section-title {
    font-weight: 700;
    color: #2c3e50;
    /* Dark blue-grey */
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #003f82;
    /* Bootstrap primary blue */
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #003f82;
    border-color: #003f82;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.btn-light {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 0;
    position: relative;
}

.hero-carousel .carousel-item {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f8f9fa;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease-in-out;
}

/* Text and button styling */
.hero-carousel .carousel-caption-custom {
    position: absolute;
    right: 15%;
    bottom: 0;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    z-index: 10;
}

.hero-carousel .carousel-caption-custom h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-carousel .carousel-caption-custom p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-carousel .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-carousel .btn-primary {
    background-color: #003f82;
    border-color: #003f82;
}

.hero-carousel .btn-outline-light {
    border-width: 2px;
}

.hero-carousel .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Carousel indicators */
.hero-carousel .carousel-indicators {
    margin-bottom: 2rem;
    z-index: 15;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    background-color: #fff;
    width: 30px;
    border-radius: 10px;
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 1.5rem;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
    justify-content: flex-start;
    padding-left: 1rem;
}

.hero-carousel .carousel-control-next {
    justify-content: flex-end;
    padding-right: 1rem;
}

/* Text alignment variants */
.hero-carousel .text-start .container {
    text-align: left;
    padding-left: 0;
}

.hero-carousel .text-end .container {
    text-align: right;
    padding-right: 0;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 2.2rem;
    }
    
    .hero-carousel .carousel-caption-custom p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .hero-carousel .carousel-item {
        min-height: 280px;
    }
    
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 2rem;
    }
    
    .hero-carousel .carousel-caption-custom p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-carousel .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        min-height: 220px;
    }
    
    .hero-carousel .carousel-caption-custom {
        padding: 1rem;
    }
    
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-carousel .btn {
        display: inline-block;
        margin: 0.25rem;
        width: auto;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-item {
        min-height: 200px;
    }
    
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-caption-custom p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-carousel .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* 2560px and up */
@media (min-width: 2000px) {
    .hero-carousel .carousel-item {
        min-height: 850px;
    }
}

/* 1440px - 1999px */
@media (min-width: 1440px) and (max-width: 1999px) {
    .hero-carousel .carousel-item {
        min-height: 550px;
    }
}

/* 1024px - 1439px */
@media (max-width: 1024px) and (max-width: 1439px){
    .hero-carousel .carousel-item {
        min-height: 380px;
    }
}
/* 
@media(max-width: 1439px) {
    .hero-carousel .carousel-item {
        min-height: 700px;
    }
} */

/* 768px - 1023px (Tablet) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-carousel .carousel-item {
        min-height: 280px;
    }
}

/* @media (min-width: 426px) {
    .hero-carousel .carousel-item {
        min-height:700px;
    }
} */

/* 426px - 767px (Large Mobile) */
@media (max-width: 767px) {
    .hero-carousel .carousel-item {
        min-height: 200px;
    }
}

/* 321px - 425px (Mobile) */
@media (min-width: 321px) and (max-width: 425px) {
    .hero-carousel .carousel-item {
        min-height: 180px;
    }
}

/* 320px and below (Smallest Mobile) */
@media (max-width: 320px) {
    .hero-carousel .carousel-item {
        min-height: 160px;
    }
}

.hero-carousel .carousel-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Black with 55% opacity */
    z-index: 1;
    pointer-events: none;
}

.hero-carousel .carousel-caption-custom {
    /* background: rgba(0, 0, 0, 0.55); */
    /* semi-transparent black */
    color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    /* box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.18); */
    /* Center vertically and horizontally if needed */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.hero-carousel .carousel-caption-custom h1 {
    font-size: 2.5rem;
    /* Responsive font size */
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-carousel .carousel-caption-custom p {
    font-size: 1.2rem;
    /* Responsive font size */
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    /*background-color: rgba(0, 0, 0, 0.5);*/
    border-radius: 50%;
    padding: 15px;
    /* Increased padding for better visibility */
    width: 40px;
    /* Fixed width */
    height: 40px;
    z-index: 2;
    /* Fixed height */
}

/* Overlapping "Why Choose Us" Panels Style (from rentalbunny) */
.why-choose-overlap {
    position: relative;
    margin-top: 30px;
    /* Negative margin to overlap carousel */
    z-index: 10;
    /* Ensure it's above the carousel */
    padding-bottom: 3rem;
    /* Add some padding at the bottom */
}

.why-choose-panel {
    background-color: rgb(172 0 16);
    max-width: 280px;
    height: 200px;
    border-radius: 10%;
    box-shadow: 0 1px 10px #999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem 1rem;
}

.why-choose-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.why-choose-panel i {
    font-size: 1.5rem;
    color: #fff;
    border: 2px #0a58ca;
    margin-bottom: 0.5rem;
}

.why-choose-panel h5,
.why-choose-panel p {
    margin: 0;
    padding: 0;
    width: 100%;
    word-break: break-word;
}

.why-choose-panel h5 {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.why-choose-panel p {
    font-size: 0.8rem !important;
    color: #e9ecef;
}

.categories-section {
    background-color: #ffffff;
    padding: 2rem 0;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #003f82, #0066cc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 63, 130, 0.1);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.9) contrast(1.1);
}

.category-card h6 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    margin: 0.75rem 0 0;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
}

.category-card h6::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #003f82;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.category-card:hover h6::after {
    width: 60%;
}

/* Active state for category */
.category-card.active {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

.category-card.active h6 {
    color: #003f82;
    font-weight: 600;
}

/* Custom column for 8 items in a row */
.col-lg-custom-8 {
    flex: 0 0 auto;
    width: 12.5%;
    /* 100% / 8 */
}

@media (max-width: 1199px) and (min-width: 992px) {

    /* Between md and lg */
    .col-lg-custom-8 {
        width: 16.66%;
    }

    /* 6 items */
}

@media (max-width: 991px) {

    /* md */
    .col-lg-custom-8 {
        width: 25%;
    }

    /* 4 items */
}

@media (max-width: 767px) {

    /* sm */
    .col-lg-custom-8 {
        width: 33.33%;
    }

    /* 3 items */
}

@media (max-width: 575px) {

    /* xs */
    .col-lg-custom-8 {
        width: 50%;
    }

    /* 2 items */
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 20% !important;
    }
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 12.333333% !important;
    }
}

/* Product Sections (Featured, Latest, Popular) & Product Cards */
.product-section {
    /* Common class for all product sections */
    padding: 4rem 0;
}

.product-section.bg-light-alt {
    /* For alternating background */
    background-color: #f8f9fa;
}


.product-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Subtle initial shadow */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e0e0e0;
}

/* Unique Border Effect: Top-right and Bottom-left accents */
/* .product-card::before*/
/*{*/
/*     content: "";*/
/*     position: absolute;*/
/*     width: 50px;*/
/* Width of the accent */
/*     height: 50px;*/
/* Height of the accent */
/*     background-color: #003f82;*/
/* Primary color for accent */
/*     z-index: 3;*/
/* }*/

/*.product-card::before {*/
/* Top-right accent */
/*    top: -25px;*/
/* Adjust to create diagonal cut */
/*    right: -25px;*/
/* Adjust to create diagonal cut */
/*    transform: rotate(45deg);*/
/*}*/

/*.product-card::after {*/
/* Bottom-left accent */
/*    bottom: -25px;*/
/* Adjust to create diagonal cut */
/*    left: -25px;*/
/* Adjust to create diagonal cut */
/*    transform: rotate(45deg);*/
/*}*/


.product-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 1rem;
    transition: all 0.3s ease;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    object-fit: contain !important;
    /* ensures full image is visible, not cropped */
    object-position: center center;
    background: transparent;
    box-shadow: none;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.product-card .card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background: #fff;
    border-radius: 0 0 12px 12px;
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0.75rem 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-card .card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.product-card .card-title a:hover {
    color: #003f82;
}


.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003f82;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card .price-amount {
    font-size: 1.4rem;
}

.product-card .price-period {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.product-card .price-per {
    font-size: 0.85rem;
    color: #6c757d;
    /* Bootstrap text-muted */
}

.product-card .btn-rent-now {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    background-color: #003f82;
    border: none;
    transition: all 0.2s ease;
}

.product-card .btn-rent-now:hover {
    background-color: #002d5c;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.product-card .btn-rent-now:active {
    transform: translateY(0);
    box-shadow: none;
}

.product-card .badge-out-of-stock {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

/* Custom column for 5 items in a row */
.col-lg-custom-5 {
    flex: 0 0 auto;
    width: 20%;
    /* 100% / 5 */
}

@media (max-width: 1199px) and (min-width: 992px) {

    /* Between md and lg */
    .col-lg-custom-5 {
        width: 25%;
    }

    /* 4 items */
}

@media (max-width: 991px) {

    /* md */
    .col-lg-custom-5 {
        width: 33.33%;
    }

    /* 3 items */
}

@media (max-width: 767px) {

    /* sm */
    .col-lg-custom-5 {
        width: 50%;
    }

    /* 2 items */
}

@media (max-width: 575px) {

    /* xs */
    .col-lg-custom-5 {
        width: 100%;
    }

    /* 1 item */
}


/* Industries We Serve */
.industries-section {
    padding: 4rem 0;
}

.industry-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #003f82;
}

.industry-card i {
    font-size: 3rem;
    color: #003f82;
    margin-bottom: 1rem;
}

.industry-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Detailed Why Choose Us Section (Benefit Card Style) */
.detailed-why-choose-us-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.benefit-card-detailed {
    /* background-color: #fff; */
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
    border-bottom: 5px solid transparent;
    background: #fff;
    /* Ensure background is on the card, not on children */
    position: relative;
    /* Ensure border is visible */
    margin-bottom: 1.5rem;
    /* Add space between cards if needed */
}

.benefit-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.benefit-card-detailed.benefit-primary {
    border-bottom: 5px solid #003f82;
    /* Bootstrap info */
}

.benefit-card-detailed.benefit-success {
    border-bottom: 5px solid #198754;
    /* Bootstrap success */
}

.benefit-card-detailed.benefit-danger {
    border-bottom: 5px solid #dc3545;
    /* Bootstrap danger */
}

.benefit-card-detailed .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    /* Light primary bg */
    color: #003f82;
    /* Primary color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.benefit-card-detailed h5 {
    font-weight: 600;
    /* color:#ddd; */
    margin-bottom: 0.75rem;
}

.benefit-card-detailed .service-item {
    display: flex;
    /* align-items: center; */
    margin-bottom: 15px;
    font-size: 1rem;
}

.benefit-card-detailed .service-item i {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #28a745;
    /* Green color for icons */
}

.benefit-card-detailed .service-item span {
    font-size: 1rem;
    /* color: #fff; */
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 4rem 0;
}

.problem-solution-section img {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.problem-solution-section .icon-list-item {
    display: flex;
    align-items: flex-start;
    /* Align icon with first line of text */
    /*margin-bottom: 1.5rem;*/
}

.problem-solution-section .icon-list-item i {
    font-size: 1.5rem;
    color: #003f82;
    margin-right: 1rem;
    margin-top: 0.25rem;
    /* Align with text better */
}

.problem-solution-section .icon-list-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Call to Action Section */
.cta-section {
    background-color: #003f82;
    /* Primary blue */
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    color: #003f82;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    /* Dark blue-grey */
    color: #ecf0f1;
    /* Light grey text */
    padding: 2rem 0 1rem 0;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer p,
.footer a {
    color: #bdc3c7;
    /* Lighter grey for links and text */
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .social-icons a {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #003f82;
    /* Primary blue on hover */
}

.footer .bottom-bar {
    border-top: 1px solid #34495e;
    /* Slightly lighter border */
    padding-top: 1rem;
    margin-top: 1rem;
    /* font-size: 0.9rem; */
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    
    .hero-carousel .carousel-caption-custom h1 {
        font-size: 2rem;
    }

    .hero-carousel .carousel-caption-custom p {
        font-size: 1rem;
    }

    .why-choose-overlap {
        margin-top: 20px;
        /* Adjust overlap for smaller screens */
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-carousel .carousel-caption-custom {
        width: 90%;
    }

    .why-choose-overlap {
        margin-top: 0;
        /* Remove overlap on small screens, stack normally */
        padding-top: 2rem;
        /* Add padding if overlap is removed */
    }

    .why-choose-panel {
        margin-bottom: 1.5rem;
        /* max-width: 250px; */
    }

    .col-lg-custom-5,
    .col-lg-custom-8 {
        /* Ensure custom cols stack properly */
        width: 100%;
        /* Fallback for very small screens, or adjust as needed */
    }
}

@media (max-width: 575px) {
    .why-choose-panel {
        margin-bottom: 1.5rem;
        max-width: 250px;
    }

    /* xs specific for product cards */
    .col-lg-custom-5 {
        width: 100%;
    }

    /* 1 item */
    .col-lg-custom-8 {
        width: 50%;
    }

    /* 2 items for categories */
}


.product-card::before,
.product-card::after {
    /* Optionally hide or reduce accents on mobile */
    width: 30px;
    height: 30px;
    top: -15px;
    right: -15px;
    /* For before */
}

.product-card::after {
    bottom: -15px;
    left: -15px;
}

.social-links ul {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.social-links li {
    list-style: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #003f82;
    font-size: 16px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border: none;
}

.social-icon i {
    line-height: 1;
}

.social-icon.facebook {
    background: #1877f3;
    color: #fff;
}

.social-icon.twitter {
    background: #000;
    color: #fff;
}

.social-icon.linkedin {
    background: #0a66c2;
    color: #fff;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

.social-icon.youtube {
    background: #ff0000;
    color: #fff;
}

.social-icon.whatsapp {
    background: #25d366;
    color: #fff;
}

.social-icon:hover,
.social-icon:focus {
    filter: brightness(0.92) contrast(1.1);
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {
    .social-links ul {
        gap: 6px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}