* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-align: center;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebc59;
  }
  

  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
 .aboutUS{
    text-align: center;
    font-size: 40px;
    padding:5px;
    margin-bottom: 20px;
  }
  .container1 h2, p{
    text-align: center;
  }  
  .container1 h2{
    text-decoration:underline;
  }
  .container-content{
    padding: 100px 0px;
  }
  .container-content h1{
    font-size: 35px;
  }
  .navbar {
    background: rgb(229, 245, 55)  ;
    color: black;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
  }
  
  nav a:hover {
    color: green;
  }
  

  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  .hero  {
    background-image: url('./images/pexels-cottonbro-4911793.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 1;
  }
  
.hero .container {
  position: relative;
  z-index: 2;
}

.section1 h2{
text-align: center;
font-size: 40px;
margin-top: -40px;
}
  
  .btn {
    margin:20px;
    background: green;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
  }

  .light-bg h1{
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
  

#chicken {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .service {
    flex-direction: column;
    align-items: center;
  }
  .services ul {
    text-align: center;
  }
}

 
  .section1{
    padding: 60px 0px;
    margin-bottom: 80px;
  }
  
 
.section1 {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section1 h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.formContact,
.informo {
  flex: 1 1 300px;
  background-color:rgb(229, 245, 55);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: white;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color:green;
}


.informo ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.informo li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: white;
}

   
  #services .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .service-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .service-item h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #333;
  }
  
  .service-item p {
    padding: 0 1rem 1rem;
    font-size: 1rem;
    color: #666;
  }
  
  .section.light-bg {
    background-color: #f9f9f9;
    padding: 3rem 1rem;
  }
  
  #services h1 {
    text-align: center;
    color: #222;
  }
  
 
  .social-icons {
    margin-bottom: 10px;
  }
  
  .social-icons a {
    color: black;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icons a:hover {
    color: red;
    transform: scale(1.2);
  }
}

#services .services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.service-item h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #333;
}

.service-item p {
  padding: 0 1rem 1rem;
  font-size: 1rem;
  color: #666;
}

.section.light-bg {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

#services h1 {
  text-align: center;
  color: #222;
}

.contact-section {
  background: #f7f7f7;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.form-box, .info-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 450px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: rgb(229, 245, 55);
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: green;
}

.info-box h4 {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #333;
}

.info-box li {
  margin-bottom: 12px;
}

.info-box a {
  color: black;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}
.info-box ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-box ul li i {
  color: brown;
  min-width: 20px;
  margin-top: 4px;
}

.container2{
  display: flex;
  gap:30px;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}








.footer {
  background-color:rgb(229, 245, 55);
  padding: 40px 20px;
  text-align: center;
  color: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer .icons {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer .icons li a {
  font-size: 1.5rem;
  color: black;
  background-color: #0d6efd;
  padding: 12px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer .icons li a:hover {
  background-color: #084298;
  transform: scale(1.1);
}

.footer .copyright {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

.footer .copyright a {
  color: #0d6efd;
  text-decoration: none;
}

.footer .copyright a:hover {
  text-decoration: underline;
}
.footer {
  background: rgb(229, 245, 55);
  color: black;
  text-align: center;
  padding: 20px;
}

.icons {
  list-style: none;
  padding: 0;
}

.icons li {
  display: inline-block;
  margin: 0 10px;
}

.icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.icons a:hover {
  color: #0d6efd;
}

/* Responsive */
@media (max-width: 600px) {
  .footer .icons {
    gap: 15px;
  }
}