/*PRODUCT CATEGORY START*/
.category-card {
    background-color: #e6f7ff;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}


.category-image {
    max-width: 100%;
    height: 177px;
    object-fit: contain;
    padding: 5px;
}

.cat-image-area{
    height: 180px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.category-title {
       background-color: #0096db;
           font-weight: 700;
    color: white;
  padding: 5px 10px 0px 10px;
    font-size: 17px;
    line-height: 18px;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
}

.prod_cat_section {
    background: #e6f7ff38;
}


@media (max-width: 767.98px) {
    /* Your styles for mobile phones */
    .category-image {
    height: 100px;
    }
    .category-title {
    padding: 4px;
    font-size: 12px;
    line-height: 13px;
    height: 35px;
    width: 100%;
}
.cat-image-area {
    height: 110px;
}

 .category-grid {
              gap: 0.25rem;
              padding:0 !important;
            }
            
}

  .slider-arrow {
  background-color: #ffffffdd;
  border: none;
  font-size: 24px;
 padding: 7px 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}
.slider-arrow:hover {
  background-color: #ddd;
}


                .category-slider-wrapper {
              overflow: hidden;
              position: relative;
              max-width: 100%;
            }
            
            .category-slider-track {
              display: flex;
              transition: transform 0.5s ease-in-out;
              width: 100%;
            }
            
            .category-grid {
              min-width: 100%;
              display: grid;
              gap: 1rem;
              padding: 1rem;
              padding-top: 0;
            }
            
            .slider-dots {
              text-align: center;
              margin-top: 1rem;
            }
            .slider-dots .dot {
              height: 12px;
              width: 12px;
              margin: 0 5px;
              background-color: #bbb;
              border-radius: 50%;
              display: inline-block;
              cursor: pointer;
            }
                        .slider-dots .dot.active {
                            background-color: #04314b;
                        }

                        

.category-item a{
   text-decoration: none; 
}
/*PRODUCT CATEGORY END*/

/*BRAND SLIDER START*/
.brand-slider-section {
    background: #e8e8e8;
}

.brand-slider-section .section-header {
    text-align: center;
    padding-bottom: 0;
}

.brand-slider-section .section-header h2 {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
}

.brand-slider-section .brand-carousel {
    position: relative;
}

.brand-slider-section .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 100px;
    transition: all 0.3s ease;
}

.brand-slider-section .brand-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.brand-slider-section .brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Custom Owl Carousel Navigation */
.brand-slider-section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.brand-slider-section .owl-nav button {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}



.brand-slider-section .owl-nav button.owl-prev {
    left: -60px;
    top: -35px;
}

.brand-slider-section .owl-nav button.owl-next {
    right: -60px;
    top: -35px;
}

.brand-slider-section .owl-nav button::before {
    content: '';
    width: 0;
    height: 0;
    /*border-style: solid;*/
}


.brand-slider-section .owl-nav button.owl-prev::before {
    content: "\f104"; /* fa-angle-left */
    font-family: FontAwesome;
    font-size: 33px;
    color: #666;
}

.brand-slider-section .owl-nav button.owl-next::before {
    content: "\f105"; /* fa-angle-right */
    font-family: FontAwesome;
    font-size: 33px;
    color: #666;
}



/* Remove default Owl Carousel dots */
.brand-slider-section .owl-dots {
    display: none;
}


        #prevBtn, #nextBtn {
            cursor: pointer;
            transition: all 0.3s ease;
            color: #333;
            padding: 10px;
            border-radius: 0;
        }
        
        #prevBtn:hover, #nextBtn:hover {
            color: #007bff;
            transform: scale(1.2);
            background-color: rgba(0, 123, 255, 0.1);
        }
        
        /* Optional: Add active state */
        #prevBtn:active, #nextBtn:active {
            transform: scale(1.1);
        }
        
 
    
/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-slider-section .brand-slider-section {
        padding: 40px 20px;
        margin: 0 10px;
    }

    /* .brand-slider-section .brand-item {
        padding: 15px;
        height: 80px;
    } */


    .brand-slider-section .brand-item {
        height: 45px;
        border: 1px solid #000;
        border-radius: 6px;
    }


    
    .brand-slider-section .brand-item img {
        max-height: 60px;
        filter: none;
    }

    .brand-slider-section .owl-nav button {
        width: 35px;
        height: 35px;
    }

    .brand-slider-section .owl-nav button.owl-prev {
        left: -15px;
    }

    .brand-slider-section .owl-nav button.owl-next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .brand-slider-section .owl-nav button.owl-prev {
        left: -10px;
    }

    .brand-slider-section .owl-nav button.owl-next {
        right: -10px;
    }
}

/*BRAND SLIDER END*/


/*ABOUT SECTION START*/
.checkmark {
    width: 20px;
    height: 20px;
    background: #0096db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.years-box {
    background: linear-gradient(135deg, #0096db 0%, #1976d2 100%);
    color: white;
    padding: 30px 25px;
    flex: 1;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}



.city-image {
    background-image: url('../images/kuwait_city.png');
    background-size: cover;
    /* This mimics object-fit: cover */
    background-position: center;
    background-repeat: no-repeat;
    width: 364px;
    height: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #0096db 0%, #1976d2 100%);
    border: none;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    padding: 12px 28px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/*ABOUT SECTION END*/

/*FEATURED PRODUCTS START*/
.featured-products-section {
    background: #e8e8e8;
}


.featured-products-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
}


.featured-products-section .section-title .products {
      color: #0096db;
}

.featured-products-section .product-carousel {
    position: relative;
}

.featured-products-section .product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    margin: 0 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.featured-products-section .product-image {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-products-section .product-title {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* Show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.featured-products-section .product-title {*/
/*    color: #1e3a8a;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    line-height: 1.4;*/
/*    margin: 0;*/
/*}*/

/* Owl Carousel Custom Styles */
.featured-products-section .owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
}


.featured-products-section .owl-carousel .owl-item  a{
        text-decoration: none;
}
.featured-products-section .owl-carousel .owl-item .product-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

.featured-products-section .owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.featured-products-section .owl-carousel .owl-nav button {
    background: #1e3a8a !important;
    color: white !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 5px !important;
    font-size: 16px !important;
}

.featured-products-section .owl-carousel .owl-nav button:hover {
    background: #0096db !important;
}

.featured-products-section .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.featured-products-section .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.featured-products-section .owl-carousel .owl-dots .owl-dot span {
    background: #d1d5db;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0;
    display: block;
    transition: background 0.3s ease;
}



.featured-products-section .owl-carousel .owl-dots .owl-dot.active span {
    background: #1e3a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .featured-products-section .owl-carousel .owl-item .product-card {
    width: 92%;
    }
    .featured-products-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .featured-products-section .product-card {
        /*padding: 20px 15px;*/
                padding: 14px 7px;
    }

    .featured-products-section .product-image {
        width: 100px;
        height: 100px;
    }
}

/*FEATURED PRODUCTS END*/

/*WHY US START*/
.why-us-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}


.why-us-section .section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.why-us-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-section .feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}



.why-us-section .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    stroke: #000;
    stroke-width: 1.5;
}

.why-us-section .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0096db;
    margin-bottom: 12px;
}

.why-us-section .feature-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b7280;
}

@media (max-width: 768px) {


    .why-us-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

   .why-us-section .feature-card {
       padding: 0;
   }
    .feature-icon {
        margin-right: 0;
    }
    .featured-grid {
        border-bottom: 1px solid #dee2e6;
    }
    .why-us-section .feature-icon {
        margin-bottom: 5px;
    }

    .why-us-section .feature-title {
        font-size: 17px;
    }

    .why-us-section .section-header {
        margin-bottom: 20px;
    }
}


/*WHY US END*/

/*Gallery*/
.gslider .current {
    background: unset;
}
/*Gallery*/