*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --orange_background :#de5928;
    --yellow_li : #FED65D;

}
/* header */
header {
  min-height: 100vh;
  background: var(--orange_background) ;
  box-shadow: 7px 4px 9.6px rgba(0, 0, 0, 0.3);
  
}
a
{text-decoration: none;}
/* nav */
/* li */
.nav-item a  {
 color: white;
 text-decoration: none;
}
.nav-item .active {
    color: var(--yellow_li);
    font-weight: 600;
}

/* line below li on hover */
.custom-nav a {
  position: relative;
  color: white;
  padding-bottom: 10px;
}

.custom-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: white;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.custom-nav a:hover::after,
.custom-nav a.active::after {
  transform: scaleX(1);
}
.sign
{
    border-radius: 25px;
    background-color: var(--yellow_li);
    border: none;
}
.sign:hover
{
    background-color: white;
    color: var(--orange_background);
}
/* hero  */

.hero-text {
  flex: 1;
}

.cont {
 width: 495px;
  height: 371px;
  border-radius: 50%;
  flex-shrink: 0;

  display: flex;
  align-items: center;
justify-content: start;
  overflow: hidden;
}

.cont img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.5s ease;
}
#pizza-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  border-radius: 50%;
}
.circle-img-box {
  width: 495px;
  height: 371px;
  overflow: hidden;
}
/* end of header  */
/* start of features section  */
/*  */ 
        .feature {
            background: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /*  */
        /*  best seller  */
       .products {
  padding: 2rem 1rem;
  text-align: center;
}

.heading-section {
  font-size: 2rem;
  color: #d35400;
  margin-bottom: 2rem;
}

.food {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.pizza-card {
  background: #fff8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
  padding: 1rem;
}

.pizza-card img {
  width: 100%;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.pizza-card .title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #2c3e50;
}

.pizza-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

.pizza-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.pizza-card:hover img {
  transform: scale(1.05);
}
/* footer */
  .footer {
           background-color:#fff8f0;  
            padding: 3rem 0;
            color: #333;
        }
        
        .footer-brand {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }
        
        .footer-copyright {
            color: #666;
            margin-bottom: 2rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #333;
        }
        
        .footer-list {
            list-style: none;
            padding: 0;
        }
        
        .footer-list li {
            margin-bottom: 0.8rem;
        }
        
        .footer-list a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-list a:hover {
            color: #000;
        }
        
        .social-icons {
  display: flex;
 
 gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: var(--footer_text);
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: var(--yellow_li);
  transform: scale(1.2);
}

/* END OF HOME PAGE  */
/* contact */
.contact-section {
 max-width: 1000px; 
 margin: 0 auto;
}
.left-con
{
    background: linear-gradient(135deg, #f6b38f, #de5928);
}
.contact-section h3 {
  color: #333;
}

.contact-section .form-control {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}

.contact-section .btn-primary {
  background-color: #d1a054;
  border: none;
}

.contact-section .btn-primary:hover {
  background-color: #b8860b;
}
.lists p
{
    padding: 12px 0;
}
/* end of contact  */
/*  */
/* about page  */
.about_nav
{
    background-color: var(--orange_background);
    padding: 1rem 0;
}
 .about-section, .mission-section {
      padding: 4rem 1rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .highlight {
      color: #ff7f32; 
    }

    .icon-wrapper {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .icon-box {
      background: #fff3e6;
      padding: 1rem;
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #ff7f32;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .about-img {
      max-width: 90%;
      height: 480px;
    }
   /* testimonels  */
 .testimonial-slider .testimonial-card {
  display: none;
  transition: all 0.4s ease-in-out;
}

#t1:checked ~ .testimonial-slider #slide1,
#t2:checked ~ .testimonial-slider #slide2,
#t3:checked ~ .testimonial-slider #slide3 {
  display: block;
}

.arrow-btn {
  font-size: 2rem;
  color: #c39f76;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.arrow-btn:hover {
  color: #9c7c57;
}

.dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

#t1:checked ~ .dots label[for="t1"],
#t2:checked ~ .dots label[for="t2"],
#t3:checked ~ .dots label[for="t3"] {
  background-color: #c39f76;
}

.testimonial-message::before,
.testimonial-message::after {
  font-size: 2rem;
  color: #c39f76;
  font-weight: bold;
}

.testimonial-message::before {
  content: "“";
  margin-right: 5px;
}

.testimonial-message::after {
  content: "”";
  margin-left: 5px;
}
/* Join us */
.join-box {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff5f0;
  border-left: 5px solid orangered;
  margin-bottom: 13px;
}
.join-box h4 {
  color: #d35400;
}

