body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fdf6f3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  width: 450px;
  height: 100px;
}

.logo img {
  height: 80px;
  margin-right: 0.5rem;
  width: 200px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6b4226;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #7BB6FF;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a.active {
  color: #579DFF; /* Highlighted color for active link */
  text-decoration: underline;
}

.nav-links .cta {
  border: 2px solid #f57328;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #579DFF;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links .cta:hover {
  background-color: #579DFF;
  color: white;
}

.nav-links .cta:hover {
  background-color: #579DFF;
  color: white;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #579DFF;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fdf6f3;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 1rem 0;
  }

  .hamburger {
    display: block;
  }
}

/* Hero Section Styles */
/* General Hero Styles */
.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness */
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  min-height: calc(100vh - 100px);
  gap: 40px;

  /* Background image properties */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fdf5f02a;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

.hero-content h4,
.hero-content h1 {
  opacity: 0;
  transform: translateX(-50px); /* Offscreen initially */
  margin: 0;
  white-space: nowrap; /* Prevent line wrapping */
}

.hero-content h4 {
  color: #f4a261;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.3s; /* Delayed for natural sequence */
}

.hero-content h1 {
  font-size: 4rem;
  margin-top: 10px;
  font-weight: bold;
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.8s; /* Starts after h4 */
}

.hero-content p {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.hero-content .cta {
  margin-top: 20px;
  background-color: #f4a261;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 1.5s;
}

.hero-content .cta:hover {
  background-color: #e76f51;
}

.hero-image {
  max-width: 40%;
  z-index: 2;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-content .cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: #fffaf2;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 2rem;
  }
}

/* Services Section */
/* Services Section */
.services-wrapper {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.services-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.services-carousel {
  overflow: hidden;
  position: relative;
}

.services-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.services-slide {
  display: flex;
  justify-content: space-between;
  flex: 0 0 100%;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  margin: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-top: 15px;
}

.service-details {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  padding: 0 10px;
  list-style-type: disc;
  margin-left: 20px; /* Adds some indentation to the list */
  margin-bottom: 10px; /* Adds space between list items */
  text-align: left; /* Ensure the container aligns the text to the left */
}

.service-details {
  list-style-type: disc; /* Adds default bullet points */
  padding-left: 20px; /* Adjusts the indentation of the bullets */
}

.service-item {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}


.services-controls {
  margin-top: 20px;
}

.services-prev,
.services-next {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #579DFF;
  padding: 10px;
  transition: color 0.3s;
}

.services-prev:hover,
.services-next:hover {
  color: #333;
}

@media (max-width: 768px) {
  .services-slide {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}
.services-slide {
  display: flex;
  justify-content: center; /* Center-aligns the cards */
  gap: 10px; /* Reduces spacing between cards */
}

.service-card {
  width: 90%; /* Adjust width for two cards per slide */
}
///////////el roi sect///////////
.elroi-why-section {
  background-color: #16454a;
  color: #fff;
  padding: 50px 20px;
}

.elroi-why-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.elroi-why-text {
  max-width: 600px;
}

h2 {
  color: #e48713;
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.elroi-why-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.elroi-why-features li {
  background-color: #bd1818;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  color: #fff;
}

.elroi-why-image img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .elroi-why-wrapper {
    flex-direction: row;
    text-align: left;
  }

  .elroi-why-text {
    flex: 1;
  }

  .elroi-why-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .elroi-why-features {
    grid-template-columns: 1fr 1fr;
  }
}

////////about el sect///////

/* General Section Styles */
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 10%;
  background-color: #fff8eb; /* Match the background in the design */
}

.about-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  margin-top: 150px;
  margin-bottom: 150px;
}

/* Left Images Section */
.about-images {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  padding-left: 270px;
}

.honey-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.beekeeper-image {
  width: 60%;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Right Content Section */
.about-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 1.2rem;
  color: #f29722; /* Orange color matching the design */
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.about-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.about-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Features Section */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  font-size: 2rem;
  color: #f29722;
}

.feature-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.feature-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    width: 100%;
    align-items: center;
  }

  .honey-image,
  .beekeeper-image {
    width: 80%;
  }

  .about-container {
    width: 100%;
    text-align: center;
  }
}

/////////faq////////////

/* General FAQ Section Styles */
.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #fff8eb; /* Matching the design's background */
}

.faq-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  padding: 10px 15%;
}

/* Image Section */
.faq-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
}

/* Content Section */
.faq-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-title {
  font-size: 1.2rem;
  color: #f29722; /* Orange color matching the design */
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.faq-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.faq-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FAQ Items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  color: #4a4a4a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: #f29722;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .faq-image img {
    width: 80%;
  }

  .faq-content {
    width: 100%;
    text-align: center;
  }
}

/* Section Styles */
.services-section {
  background-color: #fdf5f0;
  color: black;
  padding: 60px 5%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* Service Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

/* Service Card */
.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Icon Container */
.icon-container {
  width: 60px;
  height: 60px;
  background-color: #15243d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-container img {
  width: 30px;
  height: 30px;
}

/* Title */
.service-card h4 {
  color: #f6b93b;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Description */
.service-card p {
  font-size: 0.95rem;
  color: #c7d3e2;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

/* Timeline Section */
.timeline-section {
  background-color: #1a2948;
  color: #ffffff;
  padding: 100px 5%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  position: relative;
}

/* Timeline Container */
.timeline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  position: relative;
}

/* Individual Year Block */
.timeline-year {
  opacity: 1; /* Ensure content is visible by default */
  transform: translateY(50px); /* Initial transform */
  text-align: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
  visibility: visible; /* Ensure visibility */
}

.timeline-year.active {
  opacity: 1;
  transform: translateY(0);
}

/* Year Text */
.timeline-year .year {
  font-size: 3rem;
  color: #f6b93b;
  margin-bottom: 20px;
}

/* Description Text */
.timeline-year .description {
  font-size: 1rem;
  color: #c7d3e2;
  max-width: 600px;
  line-height: 1.6;
}

/* Motion Line */
.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f6b93b, transparent);
  z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline-year .year {
    font-size: 2.5rem;
  }

  .timeline-year .description {
    font-size: 0.9rem;
  }
}
/* About Me Section */
.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #fff;
}

.about-me-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 20px;
}

.about-me-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-me-image img {
  width: 100%;
  height: 70%;
  border-radius: 8px;
  margin-top: 100px;
}

.about-me-content {
  flex: 1;
  padding: 20px;
}

.about-me-heading {
  font-size: 18px;
  text-transform: uppercase;
  color: #579DFF;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.about-me-title {
  font-size: 36px;
  color: #090909;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-me-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.about-me-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.about-me-quote {
  font-size: 16px;
  font-style: italic;
  color: #444;
  border-left: 4px solid #ff914d;
  padding-left: 15px;
  margin-top: 20px;
}

.quote-author {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #e56a0f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column; /* Stack items vertically */
    text-align: left;
  }

  .about-me-image {
    order: 2; /* Place the image second */
  }

  .about-me-content {
    order: 1; /* Place the content first */
    padding: 0;
  }

  .about-me-heading,
  .about-me-title {
    text-align: center;
  }

  .about-me-image img {
    margin-top: 20px; /* Reduce margin for better spacing */
  }
}

/* Steps Section */
.steps-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: #fff;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 20px;
}

.steps-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-right: 20px;
}

.steps-heading {
  font-size: 16px;
  color: #ffa07a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: bold;
}

.steps-title {
  font-size: 32px;
  color: #e56a0f;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.steps-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-number {
  font-size: 24px;
  color: #fff;
  background-color: #ffa07a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
  margin-top: 20px;
}

.step-text {
  flex: 1;
}

.step-title {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}

.step-detail {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.steps-image {
  flex: 1;
  min-width: 300px;
}

.steps-image img {
  width: 100%;
  height: 70%;
  border-radius: 8px;
  margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    text-align: center;
  }

  .steps-content {
    padding-right: 0;
  }

  .steps-image {
    order: 1;
  }

  .steps-heading,
  .steps-title {
    text-align: center;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    margin-bottom: 10px;
  }
}

/* Book Spotlight Section */
.book-spotlight {
  padding: 50px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.spotlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.book-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.book-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  object-fit: contain;
}

.spotlight-details {
  flex: 1;
  min-width: 300px;
}

.author-name {
  font-size: 14px;
  color: #e56a0f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
}

.spotlight-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.spotlight-subheading {
  font-size: 18px;
  color: #555;
  font-weight: bold;
  margin-bottom: 15px;
}

.spotlight-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.order-button {
  display: inline-block;
  background-color: #e56a0f;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #d2590f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .spotlight-content {
    flex-direction: column;
    text-align: center;
  }

  .book-image img {
    max-width: 300px;
  }

  .spotlight-details {
    text-align: center;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.elroi-footer {
  width: 100%;
  background-color: #111112;
  color: #fff;
  padding: 40px 20px 20px;
  margin: 0;
  clear: both; /* Prevent float issues if any */
  position: relative;
  z-index: 1;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}

.footer-bottom p {
  margin: 5px 0;
}


.footer-container {
  max-width: 1200px;
  margin: 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 400px;
}

.footer-brand {
  flex: 1;
  max-width: 300px;
  margin-right: 20px; /* Add space to the right of the brand */
}

.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links a {
  margin-right: 15px;
  font-size: 0.9rem;
  color: #e48713;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: flex-start;
  gap: 200px; /* Maintain gap between columns */
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer-links {
    flex: 2;
    display: flex;
    justify-content: flex-start;
    gap: 20px; /* Maintain gap between columns */
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 1;
    max-width: 300px;
    margin-right: 20px;
    margin-bottom: 100px;
  }
}
.footer-column {
  max-width: 90px;
}

.footer-column h4 {
  font-size: 1rem;
  color: #579DFF;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #fff;
  background-color: #4a3a35;
  color: #fff;
  border-radius: 5px;
}

.subscribe-form input::placeholder {
  color: #aaa;
}

.subscribe-form button {
  padding: 10px;
  font-size: 0.9rem;
  background-color: #e48713;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #d6750f;
}

@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Maintain gap between columns */
  }

  .footer-column {
    text-align: center;
  }

  .social-links {
    text-align: center;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: -200px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Section Styling */
.mission-vision-values {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  padding: 80px 20px;
  text-align: center;
}

/* Container Styling */
.mission-vision-values .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.mission-vision-values .section-header h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  animation: fadeInDown 1s ease-in-out;
  text-align: center;
}

.mission-vision-values .section-header p {
  font-size: 1.2rem;
  color: #666;
  animation: fadeInDown 1.2s ease-in-out;
  margin-bottom: 40px;
}

/* Card Layout */
.mission-vision-values .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission-vision-values .card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
  text-align: left;
}

.mission-vision-values .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.mission-vision-values .card .icon {
  font-size: 3rem;
  color: #e56a0f;
  margin-bottom: 20px;
}

.mission-vision-values .card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.mission-vision-values .card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* List Styling for Values Card */
.mission-vision-values .card.values ul {
  list-style-type: none;
  margin-top: 15px;
  padding: 0;
}

.mission-vision-values .card.values ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.mission-vision-values .card.values ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e56a0f;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-vision-values .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mission-vision-values .cards {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-range {
  padding: 50px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.product-header h2 {
  font-size: 2.5rem;
  color: #16454a;
  margin-bottom: 10px;
}

.product-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.product-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-content {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.product-range-item {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.product-range-item h3 {
  font-size: 1.8rem;
  color: #e48713;
  margin-bottom: 20px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
}

.product {
  text-align: center;
}

.product img {
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #16454a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow:hover {
  background: #e48713;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

/* Photo Gallery Section */
.photo-gallery {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-heading h2 {
  font-size: 2rem;
  color: #333;
  text-transform: uppercase;
}

.gallery-heading p {
  font-size: 1rem;
  color: #666;
}

/* Gallery Grid */
.gallery-container {
  display: grid;
  gap: 2rem;
}

.gallery-row {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.gallery-item {
  flex: 1;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-row {
    flex-wrap: wrap;
  }

  .gallery-item {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    gap: 1rem;
  }

  .gallery-item {
    height: 120px;
  }
}

/* Contact Us Section */
.contact-us-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.contact-us-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.contact-us-heading {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-info-block {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icons */
.contact-icon {
  font-size: 2rem;
  color: #579DFF;
  margin-bottom: 1rem;
}

/* Contact Info Titles and Text */
.contact-info-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-info-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* Map */
.contact-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-block {
    padding: 1.2rem;
  }

  .contact-us-heading {
    font-size: 1.8rem;
  }
}
.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn i {
  font-size: 28px;
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp-btn i {
    font-size: 24px;
  }
}
.venn-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  flex-wrap: wrap;
}

.circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease; /* Smooth transitions */
  font-size: 18px; /* Base font size */
}

/* Left Circle (grows to the left) */
.left {
  background-color: rgba(93, 86, 185, 0.393);
  left: 0;
  transform: translateX(-28%); /* Adjust to add more space */
  transform-origin: left; /* Grow to the left */
}

/* Right Circle (grows to the right) */
.right {
  background-color: rgba(103, 178, 211, 0.5);
  right: 0;
  transform: translateX(28%); /* Adjust to add more space */
  transform-origin: right; /* Grow to the right */
}

/* Middle Circle */
.middle {
  background-color: rgba(141, 141, 214, 0.568);
  z-index: 1;
}


.text {
  font-size: 13.8px;
}
@media screen and (max-width: 768px) {
  .venn-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .circle {
    position: relative;
    transform: none;
    width: 90%;
    margin-bottom: 20px;
    left: 0 !important;
    right: 0 !important;
  }
}

.venn-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 0 auto;
}
venn-section {
  background-color: #a39b9b;
}
/* Description text */
.venn-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.venn-heading {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}
.circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  font-size: 14px;
}
.left {
  background-color: rgba(77, 108, 153, 0.584);
  left: 14%;
}
.right {
  background-color: rgba(103, 178, 211, 0.5);
  right: 14%;
}
.middle {
  background-color: rgba(75, 121, 164, 0.7);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .venn-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .circle {
    position: relative;
    transform: none;
    width: 90%;
    margin-bottom: 20px;
    left: 0 !important;
    right: 0 !important;
  }
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}