/* Button color - keeping your original */
[role="button"],
button:not(:disabled),
a[class*="btn"],
[class*="button"] {
  background-color: #daab00 !important;
  border: none;
}

/* Gallery3 horizontal scrolling */
#gallery3-2p .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 15px;
  scroll-snap-type: x mandatory;
  padding-bottom: 15px;
}

/* Card styling - all cards same height */
#gallery3-2p .item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Force all images to be same height and width */
#gallery3-2p .item-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

#gallery3-2p .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures images cover the area without distortion */
  display: block;
}

/* Card content padding */
#gallery3-2p .item-content {
  padding: 15px;
}

/* Responsive card widths */
@media (min-width: 1200px) {
  #gallery3-2p .item {
    width: 320px;
  }
  #gallery3-2p .item-img {
    height: 220px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #gallery3-2p .item {
    width: 300px;
  }
  #gallery3-2p .item-img {
    height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #gallery3-2p .item {
    width: 280px;
  }
  #gallery3-2p .item-img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  #gallery3-2p .item {
    width: 260px;
  }
  #gallery3-2p .item-img {
    height: 160px;
  }
}

/* Responsive text sizes */
#gallery3-2p .item-title {
  font-size: 18px !important;
  margin-bottom: 8px;
}

@media (min-width: 768px) and (max-width: 991px) {
  #gallery3-2p .item-title {
    font-size: 16px !important;
  }
}

@media (max-width: 767px) {
  #gallery3-2p .item-title {
    font-size: 14px !important;
  }
}

/* Remove Bootstrap column padding */
#gallery3-2p [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Scrollbar styling */
#gallery3-2p .row::-webkit-scrollbar {
  height: 6px;
}

#gallery3-2p .row::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#gallery3-2p .row::-webkit-scrollbar-thumb {
  background: #daab00;
  border-radius: 10px;
}

/* Smooth scrolling on mobile */
@media (max-width: 768px) {
  #gallery3-2p .row {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 12px;
  }
}

/* Fix for different image aspect ratios */
@supports (aspect-ratio: 1) {
  #gallery3-2p .item-img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
}







/* ===== HERO BANNER SLIDER ===== */
.glo-banner-area {
  position: relative;
  overflow: hidden;
}

.glo-banner-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.glo-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glo-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glo-banner-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.glo-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 100px 20px;
}

.glo-banner-content span {
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(218, 171, 0, 0.8);
  padding: 8px 20px;
  border-radius: 30px;
}

.glo-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Banner Navigation Buttons */
.glo-banner-navigation {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  gap: 15px;
}

.glo-banner-button-prev,
.glo-banner-button-next {
  width: 50px;
  height: 50px;
  background: rgba(218, 171, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glo-banner-button-prev:hover,
.glo-banner-button-next:hover {
  background: #c49c00;
  transform: scale(1.1);
}

/* Swiper pagination bullets */
.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #daab00 !important;
  opacity: 1;
}

/* ===== CTA SECTION ===== */
.glo-cta-area {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.glo-cta-content {
  background: #daab00;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.glo-cta-content h3 a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.glo-cta-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(218, 171, 0, 0.3);
}

.glo-cta-items {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
}

.glo-cta-item {
  text-align: center;
  padding: 15px;
}

.glo-cta-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.glo-cta-item p {
  margin: 0;
  font-weight: 600;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .glo-banner-content h1 {
    font-size: 40px;
  }
  
  .glo-cta-area {
    margin-top: -30px;
  }
  
  .glo-cta-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .glo-banner-content h1 {
    font-size: 28px;
  }
  
  .glo-banner-content span {
    font-size: 14px;
  }
  
  .glo-cta-item {
    margin-bottom: 20px;
  }
  
  .glo-banner-navigation {
    bottom: 15px;
    right: 15px;
  }
  
  .glo-banner-button-prev,
  .glo-banner-button-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .slider-container {
            width: 100%;
            max-width: 1920px;
            height: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-bg {
            position: absolute;
            width: 110%;
            height: 110%;
            top: -5%;
            left: -5%;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease-out;
        }

        /* Parallax movement - slides will move at different speeds on scroll */
        .slide.active .slide-bg {
            animation: parallaxScroll 20s linear infinite;
        }

        @keyframes parallaxScroll {
            0% {
                transform: scale(1) translateX(0);
            }
            50% {
                transform: scale(1.1) translateX(-2%);
            }
            100% {
                transform: scale(1) translateX(0);
            }
        }

        /* Slide content */
        .slide-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            background: rgba(0, 0, 0, 0.4);
            padding: 20px;
        }

        .slide-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .slide-content a {
            background: #daab00;
            padding: 12px 35px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .slide-content a:hover {
            background: #c49c00;
            transform: scale(1.05);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation dots */
        .dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #daab00;
            width: 30px;
            border-radius: 10px;
        }

        /* Navigation arrows */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(218, 171, 0, 0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .prev:hover, .next:hover {
            background: #daab00;
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        .last-btn{
          background-color: #daab00 !important;
          color: white !important;
        }


        .serving-img {
          max-height: 400px;
          max-width: 400px;
        }

        
       
        /* Responsive */
        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }
            .slide-content h1 {
                font-size: 28px;
            }
            .slide-content p {
                font-size: 16px;
            }
            .prev, .next {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
          }