@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');

body {
    font-family: "Baloo Da 2", sans-serif;
    background: #f8f9fa;
}
h1, h2, h3, h4, h5, h6, p {
    font-family: "Baloo Da 2", sans-serif;
    padding: 0px;
    margin: 0px;
}
.title-area{
    padding: 15px;
}
.section-title{
    font-weight: 600;
}
.nopadding{
    padding: 0px !important;
}
.navbar {
    min-height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    padding: 0.5rem 1rem !important;
}

.full-height-btn {
    height: 60px;
    display: flex !important;
    align-items: center;
    border-radius: 0 !important;
    padding: 0 1.5rem;
}

.search-box {
    width: 220px;
    height: 38px;
}

.search-input {
    height: 100%;
    padding-left: 35px !important;
    background: #f5f5f5 !important;
    border: none !important;
}

/* Mobile Search */
.mobile-search {
    display: none;
    width: 100%;
    padding: 0 15px;
}
section{
    padding: 15px 0px;
}
.brand-card {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}


.brand-img {
    height: auto;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
    padding: 15px;
}

.brand-card:hover .brand-img {
    transform: scale(1.05);
}

/*Products css starts here*/
.offer-section {
    padding: 20px 0;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.product-details {
    padding: 15px;
}

.details-button {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-model {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.product-actions button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.buy-button {
    background-color: #007bff;
    color: white;
    margin-right: 5px;
}

.compare-button {
    background-color: #f0f0f0;
    color: #333;
}

 .dual-banner {
     display: flex;
     width: 100%;
     flex-wrap: wrap; /* Allow items to wrap */
 }

.dual-banner .container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.banner-left,
.banner-right {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-left {
    background-color: #f0f0f0;
    /* Light gray background */
}

.banner-right {
    background-color: #282c63;
    /* Dark blue background */
    color: white;
    /* White text on dark background */
}

.banner-content {
    text-align: left;
}

.banner-label {
    font-size: 14px;
    font-weight: bold;
    color: #d32f2f;
    /* Red label color */
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.banner-link {
    color: inherit;
    /* Use parent color */
    text-decoration: none;
    font-weight: bold;
}

.arrow {
    margin-left: 5px;
}
.news-section {
    padding: 30px 0;
}

.swiper {
    position: relative;
    padding-bottom: 40px;
}

.swiper-slide {
    text-align: center;
}

.news-item {
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: auto;
}

.news-details {
    padding: 15px;
}

.news-text {
    font-size: 14px;
    margin-bottom: 5px;
}

.see-more-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a8ecd;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.swiper-button-next, .swiper-button-prev{
    color: #fff !important;
}
.footer {
    background-color: #282c63; /* Dark blue background */
    color: white; /* White text */
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 15px;
    height: 30px;
}
.footer-website {
    font-size: 20px;
    font-weight: bold;
}

.footer-right {
    text-align: right;
}

.footer-copyright, .footer-address, .footer-phone {
    display: block;
    margin-bottom: 5px;
}

.product-actions a {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none; /* Remove default underline */
    display: inline-block; /* Ensure the link behaves like a block element */
    text-align: center; /* Center the text */
}
a{
    text-decoration: none;
    color: rgb(26 142 205);
}
.buy-button {
    background-color: #1a8ecd;
    color: white;
    margin-right: 5px;
}
.product-details .details-button.w-100 {
    background-color: #f0f0f0;
    padding: 8px 15px; /* Adjusted padding for better appearance */
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    display: block !important; /* Force block behavior */
    width: 100% !important; /* Explicitly set width to 100% */
    text-decoration: none; /* Remove underline */
    color: #333; /* Match text color to design */
    box-sizing: border-box; /* Ensure padding doesn't exceed width */
}

.product-details .details-button.w-100:hover {
    background-color: #e0e0e0; /* Subtle hover effect */
    color: #333;
}
.compare-button {
    background-color: #f0f0f0;
    color: #333;
}

/* Ensure hover effects (optional, if you had them for buttons) */
.buy-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: white;
}
.top-bar-space {
    background: #1460AB;
    text-align: center;
}
.compare-button:hover {
    background-color: #d9d9d9; /* Lighter gray on hover */
    color: #333;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1a8ecd;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

@media (max-width: 768px) {
    .banner-left,
    .banner-right {
        width: 100%;
        /* Stack items vertically on smaller screens */
    }

    .banner-left {
        order: 2;
        /* Place the light gray banner below the dark blue one */
    }
}


@media (max-width: 991px) {
    .logo-area {
        width: 100% !important;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .full-height-btn {
        height: auto !important;
        padding: 0.75rem !important;
        margin: 0.25rem 0;
        border-radius: 6px !important;
    }

    .search-box {
        width: 100%;
        margin-top: 0.5rem;
    }

    .mobile-search {
        display: block;
        order: 3;
    }

    .navbar > .container {
        flex-wrap: wrap;
    }

    .desktop-search {
        display: none !important;
    }

    .brand-card {
        height: 150px;
        padding: 1rem;
    }

    .product-actions button {
        font-size: 7px;
    }
}
