/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fffaf0; /* Light white like eggshell */
  color: #333;
}

/* Header Styles */
header {
  position: relative;
  z-index: 1; /* Makes sure the header is above the hero section */
  padding: 1rem;

}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar .logo {
  color: #ffcc00;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 30px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 2rem;
}

.navbar ul li a {
  color: #474747;
  text-decoration: none;
  font-weight: 500;
}

.navbar .logo img {
  width: 100px; /* Adjust this value as needed */
  height: auto; /* Ensures the aspect ratio is maintained */
}


/* Hero Two Section Styles */
.hero-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60vh;
  padding: 80px 50px;
  position: relative;

  margin-top: -80px; /* Negative margin to push the hero section up above the header */
}

.hero-two .hero-content {
  flex: 1;
  padding-right: 30px;
  padding-top: 30px;
}

.hero-two .hero-content h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-two .hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-two .hero-content button {
  font-size: 1rem;
  padding: 10px 20px;
  background-color: #f1c40f;
  color: black;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-two .hero-content button:hover {
  background-color: #d4b60f;
}

.hero-two .hero-image {
  flex: 1;
  background-image: url('/images/food-2b.jpg');
  background-position: center; 
  background-size: cover; /* Ensures the image covers the container */
  background-position: 10% 30%; /* Moves the image 10% from the left and 0% from the top */

  height: 90%; /* Makes the image take up the full height of its parent */
  width: 50%; /* Makes the image take up the full width of its parent */
  position: absolute; /* Absolute positioning within its parent container */
  top: 0; /* Position the image at the top */
  right: 0; /* Position the image at the right */
  overflow: hidden; /* Ensures no image overflows outside the container */
  border-bottom-left-radius: 90px; /* Round the bottom-left corner */
}


/* /////////// -----------SECTION  -----------/////////// */


.icon-background {
  background-color: #ffe100;
  border-radius: 12px; /* Make it a circle */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Optional: For positioning */
}

.icon-background i {
  color: #333; /* Icon color */
  font-size: 24px; /* Size of the FontAwesome icon */
}



/* First Features Section */
.features-one {
  text-align: left;
  padding: 12px 3rem;
}

.features-one h2 {
  color: #333;
}

.features-one .feature-cards-one {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.features-one .card-one {
  background-color: #fff;
  border-radius: 3px;
  padding: 2rem;
  width: 22%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.features-one .card-one h3 {
  color: #333;
  margin-bottom: 1rem;
}

.features-one .icon-container-one {
  background-color: #ffe100;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px; /* Icon positioned slightly above the card */
  left: -20px; /* Icon positioned in the top-left corner */
}

.features-one .icon-container-one i {
  color: #333;
  font-size: 24px;
}

.features-one .card-info-one {
  padding-top: 32px;
}

.features-one .card-one p {
  margin-top: 1rem;
}


/* Second Features Section */
.features-two {
  text-align: center;
  padding: 12px 3rem;
}

.features-two h2 {
  color: #333;
}

.features-two .feature-cards-two {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.features-two .card-two {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 22%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.features-two .card-two h3 {
  color: #333;
  margin-bottom: 1rem;
}

.features-two .icon-container-two {
  background-color: #ffe100;
  border-radius: 9px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px; /* Adjust position to move it inside the card */
  left: 10px; /* Move it to the top left corner */
}

.features-two .icon-container-two i {
  color: #333;
  font-size: 24px;
}

.features-two .card-info-two {
  padding-top: 32px;
}

.features-two .card-two p {
  margin-top: 1.5rem;
}










/* /////////// -----------SECTION  -----------/////////// */

/* Teaching Section */
.teaching {
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.teaching img {
  width: 500px;
  height: 500px;
  object-fit: cover; /* Ensures the image covers the area without stretching */
  background-position: center;
  border-top-left-radius: 60px; /* Round the top-left corner */
  border-bottom-right-radius: 60px; /* Round the bottom-right corner */
  border-top-right-radius: 0; /* Keep the top-right corner straight */
  border-bottom-left-radius: 0; /* Keep the bottom-left corner straight */
}


.teaching .text {
  margin-left: 2rem;
}

.teaching .text h2 {
  color: #333;
}

.teaching .text p {
  color: #333;
}












