@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: black;
  scroll-behavior: smooth;
}
:root{
  --primary:#f58634;
}
  * > ul li{
  list-style-type: none;
    margin: 0;
    padding: 0;
    
}

ul{
  margin: 0 !important;
  padding:0 !important;
}

html body{
  height: 100%;
  width: 100%;
}

.bg-orange{
background: var(--primary);
}

h1 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 0 !important;
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400 !important;
}

h3 {
  font-size: clamp(24px, 4vw, 36px);

}

h4 {
  font-size: clamp(20px, 3.5vw, 30px);
}

h5 {
  font-size: clamp(18px, 3vw, 24px);
}

h6 {
  font-size: clamp(16px, 2.5vw, 20px);
}

.btn-orange{
  width: auto;
  border: 1px solid #f58634;
  border-radius: 0;
  color:#f58634 ;
  background: white;  
  padding:  5px;


}


.btn-orange:hover{
  width: 100%;
  border: 1px solid #f58634;
  border-radius: 0;
  color:white ;
  background: #f58634;
}


/* header */


/* carousel */

#carouselExampleDark {
  max-height: 100vh;}


.carousel-inner, 
.carousel-item, 
.carousel-item img {
max-height: 100vh;}

.carousel-item img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}


#carouselExampleDark {
  margin-top: 0rem; /* For example, a larger negative margin */
}


@media(max-width:991px){
  .carousel{
    margin-top: 100px !important;
  }
}
  

/* section 2  */

    table {
            width: 100%;
            border-collapse: collapse; /* This is crucial for clean borders */
            font-family: Arial, sans-serif;
            margin-bottom: 20px; /* Adds some space below the table */
        }

        th, td {
            border: 1px solid #222 !important; /* Light grey border for all cells */
            padding: 10px; /* Slightly increased padding for better readability */
            text-align: left;
            vertical-align: top; /* Align content to the top for multi-line cells */
        }

        th {
            background-color: #f2f2f2; /* Light grey background for headers */
            font-weight: bold;
            width: 25%; /* Give some consistent width to header column */
        }

        td ul {
            list-style-type: disc; /* Use regular bullets for lists within cells */
            margin: 0;
            padding-left: 20px; /* Indent the list items */
        }

        td li {
            margin-bottom: 4px; /* Space between list items */
        }
  
/* scroll */



/*  section 3 */

.icon-box{
  position: relative;

}

.icon-box img {
  background: white;
  border-radius: 100%;
  padding: 10px;
  height: 120px;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* banner  */


 .banner img{
  aspect-ratio: 16/9;
  object-fit: cover;
 }
 
 
 /* catering industry */

.list-catering-industry ul {
  padding-left: 0;
  list-style: none;
}

.list-catering-industry ul li {
  padding: 3% !important;
  margin-bottom: 10px;
  background: #222;
  color: #fff;
  transition: background 0.3s;
  border-radius: 5px;
    font-size: clamp(1rem, 1.5vh, 1.25rem); /* better than 1.5vh alone */

  position: relative;
}



.list-catering-industry ul li:hover {
  background: var(--primary); /* Ensure --primary is defined */
  cursor: pointer;
}

/* Ensure parent columns match height */
.row.align-items-stretch {
  height: 100%;
  min-height: 500px; /* adjust for your design */
}

/* Match column heights via Flexbox */
.col-lg-3.d-flex,
.col-lg-9.d-flex {
  align-items: stretch;
}

/* Style for left panel */
.list-catering-industry {
  padding: 30px;
  
  border-radius: 8px;
  background: #f7fbfe;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Image section */
.images-catering-industry {
  height: 100%;
}

#mainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}



/* --------------------------------------------- product ---------------------- */

.product-image img{
  object-fit: contain;
  aspect-ratio: 1/1;
  height: 450px;
}
.product-image {
 display: flex;
 align-items: center;
 justify-content: center;
}




/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Header Section */
.blog-header-section {
  background: white;
  padding: 140px 0 60px;
  margin-top: 80px;
  border-bottom: 1px solid #e5e5e5;
}

.blog-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.blog-title {
  font-size: clamp(28px, 5vw, 42px) !important;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 25px !important;
  color: #1a1a1a;
}

.blog-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  color: #666;
  font-size: 15px;
  padding-bottom: 20px;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

/* Blog Content Section */
.blog-content-section {
  padding: 60px 0;
  background: #fafafa;
}

.blog-article {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.blog-article p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.blog-article p.lead {
  font-size: 20px;
  color: #333;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 30px;
}

.blog-article h2 {
  font-size: clamp(24px, 4vw, 32px) !important;
  font-weight: 600 !important;
  color: #1a1a1a;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.blog-article h2:first-of-type {
  margin-top: 30px;
}

.blog-article ul {
  margin: 30px 0 !important;
  padding: 0 !important;
}

.blog-article ul li {
  list-style: none;
  padding: 18px 0 18px 40px;
  position: relative;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}

.blog-article ul li:last-child {
  border-bottom: none;
}

.blog-article ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 18px;
  color: white;
  background: var(--primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.blog-article strong {
  color: var(--primary);
  font-weight: 600;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, #fff5ed 0%, #fff 100%);
  border-left: 4px solid var(--primary);
  padding: 35px;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 2px 12px rgba(245, 134, 52, 0.08);
}

.highlight-box h3 {
  color: var(--primary);
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 20px;
}

.highlight-box ul li {
  border-bottom: 1px solid rgba(245, 134, 52, 0.1);
}

.highlight-box ul li:last-child {
  border-bottom: none;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #ff9a56 100%);
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(245, 134, 52, 0.2);
}

.cta-box h3 {
  color: white;
  font-size: 28px !important;
  font-weight: 600 !important;
  margin-bottom: 15px;
}

.cta-box p {
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  margin-bottom: 30px;
}

.cta-box .btn-white {
  background: white;
  color: var(--primary);
  border: none;
  padding: 15px 45px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-box .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: var(--primary);
}

/* Sidebar Styles */
.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sidebar-widget h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* Related Posts */
.related-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: all 0.3s;
}

.related-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-post:hover {
  transform: translateX(5px);
}

.related-post-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-post-content h5 {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}

.related-post-date {
  font-size: 13px;
  color: #999;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .blog-header-section {
    margin-top: 100px;
    padding: 100px 0 40px;
  }
  
  .blog-article {
    padding: 35px 25px;
  }
  
  .sidebar-widget {
    margin-top: 40px;
  }
  
  .blog-article h2 {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .blog-header-section {
    padding: 80px 0 30px;
  }
  
  .blog-category {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .blog-meta {
    gap: 15px;
    font-size: 13px;
  }
  
  .blog-article {
    padding: 30px 20px;
  }
  
  .blog-article p {
    font-size: 16px;
  }
  
  .blog-article p.lead {
    font-size: 18px;
  }
  
  .blog-article ul li {
    font-size: 16px;
    padding: 15px 0 15px 35px;
  }
  
  .cta-box {
    padding: 35px 25px;
  }
  
  .cta-box h3 {
    font-size: 24px !important;
  }
  
  .highlight-box {
    padding: 25px 20px;
  }
  
  .sidebar-widget {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .blog-header-section {
    padding: 60px 0 25px;
  }
  
  .blog-meta {
    gap: 12px;
  }
  
  .blog-article {
    padding: 25px 15px;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-box .btn-white {
    padding: 12px 30px;
    font-size: 15px;
  }
}