/* Reset some basic styles */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "quicksand", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
/* General body styling */
body {
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar */
#navbar {
    z-index: 10000;
    position: sticky;
  top:-10px;
  /*overflow: auto;*/
  display: flex;
  align-items: center;
  padding: 10px 0 0 30px;
  /*background-color: #001e3dd9;*/
  /*color: #fff;*/
  backdrop-filter: blur(10.85px) brightness(100%);
      background-color: #ffffff82;
    color: #0066cc;
}

#navbar .logo img {
  /*width: 250px;*/
  height: 60px;
}

#navbar .nav {
  list-style: none;
  display: flex;
  gap: 20px;
  z-index: 2;
  margin: 0 0 0 50px;
}

#navbar .nav a {
  padding: 33px 10px;
  text-decoration: none;
  color: #003366;
  /*color: #fff;*/
    font-weight: 700;
}

/* Mega Menu Styling */

.megaMenu {
  position: absolute;
  top: 100%;
  z-index: 2;
  width: 100%;
  left: 0;
  padding: 20px;
  background: #fff;
  float: left;
  overflow: hidden;
  font: inherit;
  margin: 0 auto;
  display: none; /* Keep this for initial state */
  visibility: hidden !important; /* Start hidden */
  opacity: 0 !important; /* Start with opacity 0 */
  transform: translateY(-10px) !important; /* Start slightly above */
  transition: opacity 0.3s ease, transform 0.3s ease !important; /* Smooth transition */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Displaying Mega Menu on clicking Industries */
.mActive {
  display: block;
  visibility: visible !important; /* Make it visible when active */
  opacity: 1 !important; /* Fade in */
  transform: translateY(0) !important; /* Move to original position */
  transition: opacity 0.3s ease, transform 0.3s ease !important; /* Smooth transition */
}

.megaContent {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 40px;
  width: 90%;
  justify-content: center;
}

.megaColumnTitle {
  color: #000;
  font-weight: 700;
  margin: 0 30px;
}

.megaGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 50px;
  place-content: center;
  place-items: center;
}

.megaItem {
  display: flex;
  align-items: center;
  padding: 25px 15px;
  width: 300px;
  border-right: 1px solid #ccc;
  text-align: left;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  transition: 350mns ease-in-out;
}

.megaItem:hover {
  background: #ccc;
  transition: 350mns ease-in-out;
}
.megaItem:nth-child(3),
.megaItem:nth-child(6) {
  border-right: none;
}

.iconPlaceholder {
  width: 24px;
  height: 24px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iconPlaceholder ion-icon {
  color: #000;
  font-size: 20px;
}

.megaItem a {
  text-decoration: none;
  color: #333;
  margin-left: 10px; /* Spacing for text */
}

/* Home Section */
#home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  background-color: #f4f4f4;
  /*overflow: hidden;*/
}

/* Home Container Styling */
.homeContainer {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Slider Styling */
.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  position: relative;
  cursor: grab; /* Indicate draggable content */
}

.slider:active {
  cursor: grabbing; /* Change cursor when dragging */
}

/* Individual Slides */
.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center; /* Vertically center the content */
}

/* Overlay Content */
.overlay {
  position: absolute;
  color: white;
  padding: 20px;
  z-index: 2; /* Places content above the image */
  max-width: 50%; /* Prevents text from stretching too wide */
}

/* Left-aligned content (default) */
.overlay.left {
  left: 10%; /* Adds padding from the left edge */
  text-align: left;
}

.slide:nth-child(1) .overlay.left {
  color: #000;
  width: 25%;
}

.slide:nth-child(2) .overlay.right {
  color: #000;
  width: 45%;
}

.slide:nth-child(3) .overlay.left {
  color: #000;
  width: 40%;
}

.slide:last-child .overlay.right {
  width: 40%;
}

/* Right-aligned content for the 4th slider */
.overlay.right {
  right: 10%; /* Adds padding from the right edge */
  text-align: right;
}

.overlay.right .btn {
  background-color: #ffd700;
  color: #000;
}

.overlay.right .btn:hover {
  background-color: #feee90;
  transform: scale(1.05);
}

/* Title in Overlay */
.overlay h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
/* .overlay .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
} */

/* .overlay .btn:hover {
  background: #0056b3;
} */

.indicators {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #007bff;
}

/* Chevron Buttons */
.leftChevron,
.rightChevron {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 3rem !important;
  color: #000 !important;
  border: none !important;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 350ms ease-in-out;
}

.leftChevron {
  left: 10px;
}

.rightChevron {
  right: 10px;
}

.leftChevron:hover,
.rightChevron:hover {
  color: #ffd700 !important;
  transition: 350ms ease-in-out;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #003366;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #ffd700;
  color: #000;
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.blob-background {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: #ffdd57;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  clip-path: polygon(65% 0%, 100% 45%, 60% 100%, 20% 80%, 0% 20%);
}

.blob-background-bottom {
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 450px;
  height: 450px;
  background-color: #003366;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  clip-path: polygon(60% 0%, 100% 35%, 75% 100%, 35% 80%, 0% 50%);
}

/* About, Services, Testimonials, and Contact Sections */
/* About Section Styling */
#about {
  background-color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.aboutContainer {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.aboutContainer h2 {
  font-size: 40px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.aboutContainer h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #ffdd57;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.aboutContainer p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
  font-weight: 500;
}

.aboutContainer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -80px;
  width: 300px;
  height: 300px;
  background-color: #003366;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  filter: blur(30px);
}

#services {
  background-color: #f4f4f4;
  padding: 80px 20px;
}

.servicesContainer {
  margin: auto;
  text-align: center;
}

.servicesContainer h2 {
  font-size: 40px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 40px;
}

.servicesCards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.serviceCard {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.serviceCard h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 15px;
}

.serviceCard p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.serviceCard:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Optional Decorative Effect */
.serviceCard::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #ffdd57; /* Accent color */
  top: -20px;
  right: -20px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  transition: transform 0.3s ease;
}

.serviceCard:hover::before {
  transform: scale(6);
}

/* section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  color: #003366;
  margin-bottom: 20px;
} */

.aboutContainer,
.testimonialsContainer,
.contactContainer {
  max-width: 800px;
  margin: auto;
}
.servicesContainer {
  margin: auto;
}
/* Services List */
.servicesContainer ul {
  list-style-type: none;
}

.servicesContainer li {
  margin: 10px 0;
  padding: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.servicesContainer li:hover {
  background-color: #ffdd57; /* Accent color */
}

/* Testimonials Section Styling */
#testimonials {
  width: 80%;
  margin: 0 auto;
}

#testimonials h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #003366;
}

.testimonial-container {
  color: #000;
  border-radius: 5px;
  margin: 20px auto;
  padding: 50px 80px;
  max-width: 768px;
  position: relative;
}

.fa-quote {
  color: #ffd369;
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-left {
  left: 40px;
  color: #003366;
}

.fa-quote-right {
  right: 40px;
}

.testimonial {
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  border: 3px solid #ffd369;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
}

.user .role {
  font-weight: normal;
  margin: 10px 0;
}

.progress-bar {
  background-color: #ffd369;
  height: 4px;
  width: 100%;
  margin-bottom: 40px;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

/* Contact Section Styling */
#contact {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.contactContainer {
  margin: auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contactContainer h2 {
  font-size: 36px;
  color: #003366;
  margin-bottom: 20px;
}

/* Input and Textarea Styling */
.contactContainer input,
.contactContainer textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contactContainer input:focus,
.contactContainer textarea:focus {
  border-color: #003366;
  box-shadow: 0 0 8px rgba(0, 51, 102, 0.2); /* Adds a subtle glow on focus */
  outline: none;
}

/* Button Styling */
.contactContainer button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #003366;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contactContainer button:hover {
  background-color: #00509e;
  transform: translateY(-3px); /* Slight lift on hover */
}

.contactContainer button:active {
  transform: translateY(0); /* Return to normal on click */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #003366;
  color: #fff;
}

/* Food Nutrition */

/* Container Styling */
#food-nutrition .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Category Section Styling */
#food-nutrition {
  padding: 40px 20px;
}

#food-nutrition h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

#food-nutrition p {
  color: #555;
  margin-bottom: 30px;
}

/* Category Cards Styling */
#food-nutrition .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#food-nutrition .category-card {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#food-nutrition .category-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

#food-nutrition .category-card p {
  color: #666;
  margin-bottom: 10px;
}

#food-nutrition .category-card a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

#food-nutrition .category-card a:hover {
  text-decoration: underline;
}

/* Popup Overlay Styling */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  width: 80%;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.popup-content h3 {
  margin-top: 0;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Table Styling in Popup */
.popup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.popup-table th,
.popup-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.popup-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}
.popup-table .request-quote {
  background: none;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid rgb(1, 2, 3, 40%);
  transition: 0.3s ease-in-out;
}

.popup-table .request-quote:hover {
  background: #0066cc;
  transition: 0.3s ease-in-out;
  color: #fff;
  cursor: pointer;
}

/* Disable scrolling when popup is open */
.no-scroll {
  overflow: hidden;
}

/* Common Popup Overlay Styling */
#quoteFormPopup .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#quoteFormPopup .popup-content {
  width: 80%;
  max-width: 500px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

#quoteFormPopup .popup-content h3 {
  margin-top: 0;
  text-align: center;
}

#quoteFormPopup .close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

/* Form Styling in the Quote Popup */
#quoteForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

#quoteForm input[type="email"],
#quoteForm input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#quoteFormPopup .submit-quote {
  width: 100%;
  padding: 10px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#quoteFormPopup .submit-quote:hover {
  background-color: #0055aa;
}

/* About Us Page */

#aboutContainer {
  background: #f4f4f4;
}

.aboutHome {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.aboutBreadcrumbs {
  padding: 15px;
  margin: 0 40px;
}
.aboutBreadcrumbs a {
  text-decoration: none;
  color: #0066cc;
}

.aboutBreadcrumbs a:hover {
  color: #daba01;
  transition: 350ms ease-in-out;
}

.aboutSection {
  border-radius: 15px;
  background: #fff;
  width: 45%;
}
.aboutSection:first-child {
  padding: 20px;
}

.aboutSection:first-child h1 {
  text-transform: uppercase;
  font-size: 64px;
  padding: 20px 0;
  color: #003366;
}

.aboutSection:first-child p {
  padding: 15px 0;
  font-size: 18px;
}

.aboutSection:nth-child(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.aboutSection:nth-child(3) {
  padding: 20px;
}

.aboutSection:nth-child(3) h3 {
  color: #a58c00;
}

.aboutSection:nth-child(3) h2 {
  color: #003366;
  font-size: 30px;
}

.aboutSection:nth-child(3) p {
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
}

.missionImg {
  width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.missionImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Black Transparent Overlay */
.missionImg::before {
  content: "";
  position: absolute;
  top: 100%; /* Initially positioned below the image */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensures the overlay is above the image */
  transition: transform 0.5s ease-in-out; /* Smooth animation */
  transform: translateY(0); /* No vertical translation initially */
}

/* On Hover: Wipe the overlay upwards */
.missionImg:hover::before {
  transform: translateY(-100%); /* Moves the overlay completely off the image */
}

/* Content Styling */
.missionImg .content {
  position: absolute;
  z-index: 2; /* Places content above the overlay */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0; /* Hidden initially */
  transition: opacity 0.5s ease-in-out; /* Smooth fade-in effect */
}

/* Show Content When Hovering */
.missionImg:hover .content {
  opacity: 1; /* Content becomes visible on hover */
}
/* 
.missionImg .content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
} */

.aboutSection:nth-child(4) {
  padding: 20px;
}
.aboutSection:nth-child(4) h3 {
  color: #a58c00;
}

.aboutSection:nth-child(4) ul {
  list-style-type: none; /* Remove default bullet points */
  padding: 0;
  margin: 20px 0;
}

.aboutSection:nth-child(4) ul li {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.aboutSection:nth-child(4) ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #b0bec5;
}

/* Highlighting strong (value names) */
.aboutSection:nth-child(4) ul li strong {
  font-size: 1rem;
  font-weight: bold;
  color: #003366; /* Modern blue accent */
}

/* Styling the text content */
.aboutSection:nth-child(4) ul li span {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Styling specifically for the 5th .aboutSection */
.aboutSection:nth-child(5) {
  margin: 30px 0;
  padding: 20px;
  background: #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.aboutSection:nth-child(5) h2 {
  font-size: 3rem;
  color: #003366;
  text-align: center;
}

/* Styling the ul in the 5th .aboutSection */
.aboutSection:nth-child(5) ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Styling the li items */
.aboutSection:nth-child(5) ul li {
  background: linear-gradient(to right, #ffffff, #eef2f7);
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Hover effect for li */
.aboutSection:nth-child(5) ul li:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-color: #c3cbd5;
}

/* Styling strong (key phrases) */
.aboutSection:nth-child(5) ul li strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

/* Styling additional text */
.aboutSection:nth-child(5) ul li span {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Styling specifically for the 6th .aboutSection */
.aboutSection:nth-child(6) {
  margin: 40px 0;
  padding: 25px;
  background: #f9fbfd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.aboutSection:nth-child(6) h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

/* Decorative line under the heading */
.aboutSection:nth-child(6) h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff; /* Blue accent color */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Styling the paragraph */
.aboutSection:nth-child(6) p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 auto;
  max-width: 800px; /* Centers and limits text width */
  text-align: justify;
  text-justify: inter-word;
  transition: color 0.3s ease;
}

/* Hover effect for paragraph */
.aboutSection:nth-child(6):hover p {
  color: #333; /* Darkens text color slightly */
}

/* Optional: Add subtle animation on section load */
.aboutSection:nth-child(6) {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* Animation keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sustainability page */

#sustainableHome #navbar {
  background-color: none;
  /*background: transparent;*/
  color: #000 !important;
}
/* Landing Section */
.landing-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../Assets/slider3.jpg") no-repeat center center/cover;
}

.landing-overlay {
  position: absolute;
  top: 40%;
  left: 10%;
  max-width: 40%;
  color: white;
  text-align: left;
}

.landing-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.landing-overlay p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;

  background: #ffd700;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

  cursor: pointer;
}

.cta-btn:hover {
  color: #000;
  cursor: pointer;
  transform: scale(1.05);
}

/* Detailed Section */
.detailed-section {
  padding: 50px 10%;
  background: #f9f9f9;
  text-align: center;
}

.detailed-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #003366;
  font-weight: 700;
}

.detailed-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.cta-section {
  margin-top: 40px;
}

.cta-section h3 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    /*padding: 10px;*/
  }

  /* Chevron Buttons */
  .leftChevron,
  .rightChevron {
    font-size: 1.5rem; /* Reduce font size for smaller screens */
    padding: 8px; /* Adjust padding */
    top: 50%; /* Center vertically */
    width: 40px;
    height: 40px;
  }

  .leftChevron {
    left: 5px; /* Reduce horizontal margin */
  }

  .rightChevron {
    right: 5px; /* Reduce horizontal margin */
  }

  /* Slider */
  .slider {
    transition: transform 0.3s ease-in-out;
  }
  .slide img {
    object-fit: contain; /* Adjust image to fit within the slide, avoiding cropping */
  }
  /* Indicators */
  .indicators {
    gap: 5px; /* Adjust spacing between dots */
    bottom: 10px; /* Adjust position for smaller screens */
  }

  .indicator {
    width: 8px; /* Reduce size for smaller screens */
    height: 8px;
  }

  /* Slide Content (if applicable) */
  .slide .overlay {
    font-size: 1rem; /* Reduce font size for text overlays */
    padding: 10px; /* Adjust padding */
    text-align: center; /* Center-align for better readability */
  }

  .slide .overlay h2 {
    font-size: 1.2rem; /* Smaller headings */
  }

  .slide .overlay p {
    font-size: 0.9rem; /* Smaller text for paragraphs */
  }

  .slide .overlay .btn {
    padding: 8px 15px; /* Adjust button size */
    font-size: 0.9rem;
  }

  #aboutContainer {
    padding: 20px;
  }

  .aboutSection h1 {
    font-size: 2.5rem;
  }

  .aboutSection h2 {
    font-size: 1.8rem;
  }

  .aboutSection p,
  .aboutSection ul li {
    font-size: 1rem;
  }
  .categories {
    flex-direction: column;
    align-items: center;
  }

  .category-card {
    max-width: 100%;
  }
  .menu-icon {
    display: flex; /* Show hamburger icon on mobile */
  }

  #navbar .nav {
    display: none;
    flex-direction: column;
    position: sticky;
    top: 60px;
    right: 20px;
    background-color: #003366;
    width: 200px;
    padding: 20px;
    padding: 20px 20px 10px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #navbar .nav li {
    margin: 10px 0;
  }

  #navbar .nav.active {
    display: flex; /* Show menu when active */
    margin: 40px 0 0 0;
  }

  .homeContainer h2 {
    font-size: 36px; /* Smaller heading size */
    max-width: 100%;
  }

  .homeContainer p {
    font-size: 16px; /* Adjust paragraph size */
  }

  .blob-background {
    width: 300px;
    height: 300px;
    top: -30px;
    right: -60px;
  }

  .blob-background-bottom {
    width: 300px;
    height: 300px;
    bottom: -30px;
    left: -60px;
  }

  /* About Container */
  #aboutContainer {
    padding: 10px;
  }

  .aboutHome {
    width: 100%;
    padding: 10px;
    gap: 10px;
  }

  .aboutBreadcrumbs {
    margin: 0 20px;
    padding: 10px;
  }

  .aboutSection {
    width: 100%; /* Stack sections vertically on smaller screens */
    padding: 15px;
    margin-bottom: 20px;
  }

  /* First Section (How It Started) */
  .aboutSection:first-child h1 {
    font-size: 36px; /* Smaller font for mobile */
  }

  .aboutSection:first-child p {
    font-size: 16px; /* Slightly smaller text for readability */
  }

  /* Images */
  .aboutSection:nth-child(2) img {
    height: auto; /* Adjust image height to fit within container */
  }

  /* Third Section (Mission & Values) */
  .aboutSection:nth-child(3) h2 {
    font-size: 24px; /* Reduce font size for smaller screens */
  }

  .aboutSection:nth-child(3) h3 {
    font-size: 18px; /* Adjust heading size */
  }

  .aboutSection:nth-child(3) p {
    font-size: 14px;
    padding: 10px 0;
  }

  /* Lists in Sections */
  .aboutSection:nth-child(4) ul li,
  .aboutSection:nth-child(5) ul li {
    padding: 10px 15px; /* Reduce padding for compactness */
    font-size: 14px;
  }

  .aboutSection:nth-child(4) ul li strong,
  .aboutSection:nth-child(5) ul li strong {
    font-size: 1rem; /* Adjust font size for key phrases */
  }

  /* Sixth Section (Our Team) */
  .aboutSection:nth-child(6) h2 {
    font-size: 1.8rem; /* Reduce title size */
  }

  .aboutSection:nth-child(6) p {
    font-size: 1rem;
    max-width: 100%; /* Allow full width for smaller screens */
  }

  .landing-overlay h1 {
    font-size: 2.5rem;
  }

  .landing-overlay p {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .testimonial-container {
    padding: 20px 30px;
  }

  .fa-quote {
    display: none;
  }
}

@media (max-width: 480px) {
  .homeContainer h2 {
    font-size: 20px;
  }

  .homeContainer p {
    font-size: 14px;
  }

  /* Chevron Buttons */
  .leftChevron,
  .rightChevron {
    font-size: 1.2rem;
    padding: 6px;
    width: 35px;
    height: 35px;
  }

  /* Indicators */
  .indicators {
    gap: 3px;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }

  .slide:first-child .overlay {
    width: 50% !important;
    position: relative !important;
    top: 1rem !important;
  }

  .slide img {
    object-fit: contain; /* Ensure the entire image is visible on smaller devices */
  }

  /* Overlay Text */
  .slide .overlay {
    font-size: 0.8rem;
  }

  .slide .overlay h2 {
    font-size: 1rem;
  }

  .slide .overlay p {
    font-size: 0.8rem;
  }

  .slide .overlay .btn {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .blob-background,
  .blob-background-bottom {
    width: 200px;
    height: 200px;
    filter: blur(60px); /* Slightly reduce blur */
  }
  /* Breadcrumbs */
  .aboutBreadcrumbs {
    font-size: 12px;
  }

  /* Headings */
  .aboutSection h1,
  .aboutSection h2 {
    font-size: 20px; /* Ensure titles remain readable */
  }

  /* Text */
  .aboutSection p {
    font-size: 14px; /* Compact text for small screens */
    line-height: 1.5;
  }

  /* Lists */
  .aboutSection ul li {
    font-size: 13px;
    padding: 8px 10px;
    gap: 5px;
  }

  .aboutSection ul li strong {
    font-size: 0.9rem;
  }

  .landing-overlay {
    max-width: 80%;
    left: 5%;
  }

  .landing-overlay h1 {
    font-size: 2rem;
  }

  .landing-overlay p {
    font-size: 0.9rem;
  }
}
