/* Importing Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Body */
body {
  background-color: #F0FDF5;
  color: black;
}

/* Global Headings */
h1, h2, h3, h4, h5, h6 {
  color: #117A65;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #117A65;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.quote-btn {
  background: #117A65;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.quote-btn:hover {
  background: #0d5f4f;
}

/* Dropdown */
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  z-index: 999;
}

.dropdown-menu.open {
  max-height: 500px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  padding: 12px 16px;
  display: block;
  color: black;
  transition: background 0.3s ease-in-out;
}

.dropdown-menu a:hover {
  background: #e5f7ed;
}

/* Services Section */
.services {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-item h3 {
  margin: 20px 0;
  font-size: 24px;
  color: #117A65;
}

.service-item a {
  display: inline-block;
  background-color: #117A65;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
}

.service-item a:hover {
  background-color: #0d5f4f;
}

/* Testimonials */
.testimonials {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 250px;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  color: black;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: black;
}

/* Call to Action */
.cta {
  background-color: #F0FDF5;
  color: #117A65;
  text-align: center;
  padding: 50px 20px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #117A65;
}

.cta p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta .quote-btn {
  background-color: #117A65;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta .quote-btn:hover {
  background-color: #0d5f4f;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: white;
    transition: 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
  }

  .nav-right {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 90%;
  }

  /* CTA */
  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 18px;
  }

  .cta .quote-btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  /* Mobile quote button */
  .mobile-quote-btn {
    display: block;
    padding: 15px 0;
  }

  .mobile-quote-btn .quote-btn {
    color: white;
    width: 80%;
    margin: 0 auto;
    display: block;
    padding: 12px;
    font-size: 16px;
  }

  .desktop-quote-btn {
    display: none;
  }
}

/* Desktop View */
@media (min-width: 769px) {
  .mobile-quote-btn {
    display: none;
  }
}



/* About US Page */

/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  background: #f0fdf5;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h1{
    text-align: center;
    margin: 0px 0px 30px 0px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #117a65;
  margin-bottom: 10px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: center;
    padding: 20px 100px 20px 100px;
}

.info-group h4 {
  margin: 10px 0 5px;
  font-weight: 600;
  color: #1c7044;
}

.info-group p {
  margin: 0;
  color: #333;
  margin-bottom: 5px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #117a65;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cce5d1;
  border-radius: 8px;
  background-color: #f9fefb;
  font-size: 1rem;
  resize: none;
}

.submit-btn {
  padding: 12px 25px;
  background-color: #117A65;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #0e5f4f;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
.contact-location {
  background-color: #f8f8f8;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #117a65;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

.map-side {
  flex: 1 1 60%;
  min-height: 400px;
}

.info-side {
  flex: 1 1 40%;
  padding: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-side h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.info-side h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #4a4a4a;
}

.info-side p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.info-side a {
  color: #007bff;
  text-decoration: none;
}

.info-side a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }

  .map-side {
    min-height: 300px;
  }
}

/*  */
/*  */
/*  */
.offices-section {
background-color: #f0fdf5; /* BioShine light beige */
padding: 60px 20px;
font-family: 'Segoe UI', sans-serif;
}

.office-box {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 60px;
flex-wrap: wrap;
}

.office-box.reverse {
flex-direction: row-reverse;
}

.office-image {
  flex: 1 1 50%;
  padding: 10px;
  text-align: center; /* Centers the image */
}

.office-image img {
  width: 525px;  /* Adjust width */
  height: 350px; /* Adjust height */
  object-fit: cover; /* Ensures the image fits within the box without distortion */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.office-info {
flex: 1 1 50%;
padding: 20px 40px;
color: #1a1a1a;
}

.office-info h3 {
  color: #117a65;
font-size: 1.5rem;
margin-bottom: 15px;
}

.office-info strong {
display: block;
margin-top: 15px;
font-weight: bold;
font-size: 0.95rem;
color: #117a65;

}

.office-info p {
margin: 5px 0;
font-size: 1rem;
color: #333;
}

.office-info a {
color: #000000;
text-decoration: none;
}

.office-info a:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.office-box,
.office-box.reverse {
  flex-direction: column;
}

.office-info {
  padding: 20px;
}
}

/* Request Page */
/* Info Section */

.info-section {
/* background-color: white; */
text-align: center;
padding: 3rem 1rem;
}

.info-section h2 {
font-size: 1.8rem;
font-weight: bold;
margin-bottom: 2rem;
}

.info-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
max-width: 1000px;
margin: 0 auto;
text-align: left;
}

@media (min-width: 768px) {
.info-grid {
  grid-template-columns: 1fr 1fr;
}
}

.info-box h3 {
font-weight: 600;
}

.info-box p {
margin-top: 0.5rem;
font-size: 0.9rem;
color: #555;
}

.info-box a {
color: #117A65;
text-decoration: underline;
}

/* Banner Section */
.banner-section {
background: #117A65;
padding: 3rem 1rem;
}

.banner-container {
max-width: 1100px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
justify-content: space-between;
}

@media (min-width: 1024px) {
.banner-container {
  flex-direction: row;
}
}

.banner-text {
background: white;
padding: 2rem;
border-radius: 0.5rem;
max-width: 600px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-text .label {
font-size: 0.85rem;
color: #666;
font-weight: 500;
}

.banner-text h3 {
font-size: 1.5rem;
font-weight: bold;
margin: 1rem 0;
}

.banner-text p {
font-size: 0.9rem;
color: #444;
margin-bottom: 1rem;
}

.badge {
display: flex;
justify-content: center;
align-items: center;
}

.badge-content {
background: #22c55e;
color: white;
padding: 2rem;
border-radius: 0.5rem;
text-align: center;
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.badge-title {
font-size: 1.5rem;
font-weight: bold;
}

.badge-subtitle {
font-size: 1rem;
margin-top: 0.5rem;
}

.stars {
font-size: 1.2rem;
margin-top: 1rem;
}

/* Section for Form */

.form-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    padding: 40px; /* increased padding */
    margin: 50px; /* adds spacing on smaller screens */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.container .title {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}
.container .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(135deg, #71b7e6, #9b59b6);
}
.content form .user-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
form .user-details .input-box {
  margin-bottom: 15px;
  width: calc(100% / 2 - 20px);
}
form .input-box span.details {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.input-box select {
  height: 45px;
  width: 100%;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.3s ease;
}

.input-box select:focus {
  border-color: #117a65;
  outline: none;
}

.input-box.full-width {
  width: 100%;
}

.user-details .input-box input {
  height: 45px;
  width: 100%;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}
.user-details .input-box input:focus,
.user-details .input-box input:valid {
  border-color: #117a65;
}
form .gender-details .gender-title {
  font-size: 20px;
  font-weight: 500;
}
form .category {
  display: flex;
  width: 80%;
  margin: 14px 0;
  justify-content: space-between;
}
form .category label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
form .category label .dot {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  margin-right: 10px;
  background: #d9d9d9;
  border: 5px solid transparent;
  transition: all 0.3s ease;
}
#dot-1:checked ~ .category label .one,
#dot-2:checked ~ .category label .two,
#dot-3:checked ~ .category label .three {
  background: #9b59b6;
  border-color: #d9d9d9;
}
form input[type="radio"] {
  display: none;
}
form .button {
  height: 45px;
  margin: 35px 0;
}
form .button input {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #117A65;
}
form .button input:hover {
  background: #0d5f4f;
}
/* Responsive media query code for mobile devices */
@media (max-width: 584px) {
  .container {
    max-width: 100%;
  }
  form .user-details .input-box {
    margin-bottom: 15px;
    width: 100%;
  }
  form .category {
    width: 100%;
  }
  .content form .user-details {
    max-height: 300px;
    overflow-y: scroll;
  }
  .user-details::-webkit-scrollbar {
    width: 5px;
  }
  .input-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
  }
  
}
/* Responsive media query code for mobile devices */
@media (max-width: 459px) {
  .container .content .category {
    flex-direction: column;
  }
}
/* Service Page*/
/* Hero Section */

.image-section-services {
background: url('images/residential.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: cover;
}

.image-section-office{
background: url('images/office.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-events{
background: url('images/events.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-laundry{
background: url('images/laundry.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-window{
background: url('images/window.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-deep{
background: url('images/deep.webp') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-carpet{
  background: url('images/carpet.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-education{
  background: url('images/education.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-hotel{
  background: url('images/hotel.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-recreation{
  background: url('images/recreation.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-industry{
  background: url('images/industry.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-retail{
  background: url('images/retail.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-transport{
  background: url('images/transport.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
.image-section-logistics{
  background: url('images/logistics.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
  object-fit: fill;
  }
  .image-section-government{
    background: url('images/government.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 30px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    object-fit: fill;
    }
  .image-section-health{
    background: url('images/health.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 30px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    object-fit:cover;
    }
.image-section-staff {
background: url('images/staff2.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
object-fit: fill;
}
.image-section-eco {
background: url('images/eco_fre3.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}
.image-section-waste {
background: url('images/innovation.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}
.image-section-carbon {
background: url('images/carbon3.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}

.image-section-tech {
background: url('images/new_tech4.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}
.image-section-request {
background: url('images/qoute_page.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
border-radius: 30px;
margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
overflow: hidden;
}

/* About Section */
/* Hero Section */
.image-section {
  background: url('images/about_us.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  border-radius: 30px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}

.image-section h1 {
  font-size: 2.8em;
  margin: 0.5em 0 0.2em;
}

.image-section p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.quote-btn {
  background-color: #2d5e42;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  .section h2 {
    font-size: 2em;
    margin-bottom: 1em;
  }
  
  .grid {
    column-count: 2;
    column-gap: 20px;
    padding: 60px 20px;
  }
  
  .card {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    background-color: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  }
  
  .section-price {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  /* --- Responsive Updates --- */
  @media (max-width: 768px) {
    .grid {
      column-count: 1; /* 1 column on tablets and mobiles */
      padding: 40px 10px; /* Slightly smaller padding */
    }
  
    .card {
      padding: 20px 10px; /* Slightly tighter padding */
    }
  
    .section h2 {
      font-size: 1.8em;
    }
  }
  
  @media (max-width: 480px) {
    .section {
      padding: 40px 15px;
    }
  
    .section h2 {
      font-size: 1.6em;
    }
  
    .card {
      padding: 18px 10px;
    }
  
    .quote-btn {
      font-size: 1em;
      padding: 12px 20px;
    }
  }
/* Hover Effect */
.card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animation Keyframes */
@keyframes fadeUp {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

/* Optional stagger delay */
.card:nth-child(1) {
animation-delay: 0.1s;
}
.card:nth-child(2) {
animation-delay: 0.2s;
}
.card:nth-child(3) {
animation-delay: 0.3s;
}
.card:nth-child(4) {
animation-delay: 0.4s;
}



/* Footer Styles */
footer {
  background-color: #117A65;
  color: white;
  padding: 50px 20px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* LEFT SIDE: logo + tagline + newsletter */
.footer-logo {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  margin-bottom: 40px;
}

.newsletter {
  text-align: left;
}

.newsletter h4 {
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.social-icons a img {
  height: 24px;
  width: 24px;
  transition: transform 0.3s ease-in-out;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
}

.newsletter input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: 2px solid white;
  border-radius: 8px;
  background-color: #F0FDF5; 
  color: #117A65;
}

.newsletter input::placeholder {
  color: #117A65;
}

.newsletter button {
  background: #f0fdf5;
  color: #117A65;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.newsletter button:hover {
  background: #0d5f4f;
}

/* RIGHT SIDE: all footer links */
.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 40px;
}

.footer-links div {
  min-width: 150px;
  text-align: left;
}

.footer-links h4 {
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #cde4b1;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #ffffff;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 10px 0 0;
}

.footer-bottom ul li a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease-in-out;
}

.footer-bottom ul li a:hover {
  text-decoration: underline;
  color: #cde4b1;
}

.footer-bottom p {
  font-size: 12px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-logo, .newsletter {
      width: 100%;
      text-align: center;
  }

  .footer-links {
      justify-content: center;
      text-align: center;
  }

  .footer-links div {
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }

  .footer-bottom ul {
      flex-direction: column;
      gap: 5px;
  }
}
/* Blog Banner */
.blog-banner {
background: linear-gradient(to right, #1e90ff, #00bfff);
color: white;
text-align: center;
padding: 60px 20px;
}

.blog-banner h1 {
font-size: 2.8rem;
margin-bottom: 10px;
}

.blog-banner p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    justify-content: space-between;
  }
  
  .blog-post {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(33% - 30px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-5px);
  }
  
  .blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-post h2 {
    padding: 20px;
    font-size: 1.5rem;
    color: #333;
  }
  
  .blog-post p {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #666;
  }
  
  .blog-post .read-more {
    display: block;
    margin: 0 20px 20px;
    color: #1e90ff;
    font-weight: bold;
    text-decoration: none;
  }
  
  /* Responsive Styling */
  @media (max-width: 1024px) {
    .blog-post {
      width: calc(50% - 20px); /* 2 columns on tablet */
    }
  }
  
  @media (max-width: 600px) {
    .blog-post {
      width: 100%; /* 1 column on mobile */
    }
  }
  


/* Sidebar */
.sidebar {
background: #f9f9f9;
padding: 40px 5%;
border-top: 1px solid #ddd;
}

.sidebar h3 {
font-size: 1.3rem;
margin-top: 20px;
color: #117A65;
}

.sidebar ul {
list-style: none;
padding: 0;
margin: 10px 0 20px;
}

.sidebar ul li {
margin-bottom: 10px;
}

.sidebar ul li a {
text-decoration: none;
color: #333;
transition: color 0.3s;
}

.sidebar ul li a:hover {
color: #117a65;
}

.sidebar input[type="text"] {
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
/* Main Layout */
.blog-container {
display: flex;
flex-direction: row;
gap: 2rem;
padding: 2rem;
max-width: 1200px;
margin: auto;
}

/* Blog Content */
.blog-content {
flex: 3;
}

.featured-image {
width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 1.5rem;
}

.post-title {
font-size: 2.5rem;
margin: 0.5rem 0;
line-height: 1.3;
}

.post-meta {
font-size: 0.9rem;
color: #777;
margin-bottom: 2rem;
}

.category {
background-color: #f2f2f2;
padding: 2px 8px;
border-radius: 4px;
}

/* Body Content */
.post-body p {
line-height: 1.8;
margin-bottom: 1.5rem;
font-size: 1.05rem;
color: #333;
}

.post-body h2 {
margin-top: 2rem;
margin-bottom: 0.5rem;
font-size: 1.75rem;
}

.inline-image {
width: 100%;
height: auto;
border-radius: 8px;
margin: 1.5rem 0;
}

blockquote {
background-color: #f9f9f9;
padding: 1rem 1.5rem;
border-left: 4px solid #ccc;
margin: 2rem 0;
font-style: italic;
color: #555;
}

/* Sidebar */
.blog-sidebar {
flex: 1;
padding-top: 1rem;
}

.blog-sidebar h3 {
font-size: 1.2rem;
margin-bottom: 0.75rem;
}

.blog-sidebar ul {
list-style: none;
padding-left: 0;
margin-bottom: 2rem;
}

.blog-sidebar li {
margin-bottom: 0.5rem;
}

.blog-sidebar a {
text-decoration: none;
color: #0077cc;
transition: color 0.3s;
}

.blog-sidebar a:hover {
color: #005fa3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
.blog-container {
  flex-direction: column;
  padding: 1rem;
}

.blog-sidebar {
  order: -1;
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2rem;
}

.post-body h2 {
  font-size: 1.5rem;
}
}

@media (max-width: 600px) {
.blog-container {
  padding: 1rem 0.75rem;
}

.post-body p {
  font-size: 1rem;
}

.blog-sidebar {
  display: none; /* Optional: Hide sidebar on mobile */
}
}

.recipes{
  display: flex;
  justify-content: space-evenly;
  padding-top: 5%;
}
