/* fonts */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scrollbar container */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* light background for the track */
  border-radius: 10px; /* rounded corners */
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #05a19a; /* primary color for the thumb */
  border-radius: 10px; /* rounded corners */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #04827e; /* slightly darker shade for hover */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  scrollbar-width: thin;
  scrollbar-color: #05a19a #f1f1f1; /* thumb color, track color */
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Styles */
header {
  background-color: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-logo img {
  max-height: 50px;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar-links a:hover {
  color: #048d85;
}

.navbar-icons {
  display: flex;
  gap: 15px;
}

.navbar-icons a {
  color: #333;
  font-size: 1.2rem;
}

.navbar-icons a:hover {
  color: #048d85;
}

/* Language Switcher Button Styles */
.btn-lang {
  padding: 5px 10px;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

.btn-lang:hover {
  background-color: #07312f;
}

.navbar-icons .btn-lang {
  margin-left: 10px;
}

.navbar-icons .btn-lang .flag-icon {
  width: 24px;
  height: auto;
}

/* Landing Section Styles */
.landing {
  background-color: #ffffff;
  padding: 50px 20px;
  height: 100vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

/* SVG Circles */
.circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle {
  position: absolute;
  fill: rgba(4, 141, 133, 0.2); /* Light color for the circles */
  animation: moveCircle 20s infinite ease-in-out;
}

.circle1 {
  width: 150px;
  top: 20%;
  left: 10%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.circle2 {
  width: 100px;
  top: 40%;
  left: 70%;
  animation-duration: 22s;
  animation-delay: 2s;
}

.circle3 {
  width: 200px;
  bottom: 10%;
  right: 20%;
  animation-duration: 16s;
  animation-delay: 4s;
}

/* Circle Animation */
@keyframes moveCircle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.landing h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.landing h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 20px;
}

.landing p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.landing-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
  background-color: #048d85;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-scale {
  transition: transform 0.3s ease;
}

.animate-scale:hover {
  transform: scale(1.05);
}

/* About Section Styles */
.about {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.about-images {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-images img {
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Our Commitment Section Styles */
.commitment {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.commitment-image {
  text-align: center;
  margin-bottom: 40px;
}

.commitment-image img {
  max-width: 20%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
}

.commitment h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.commitment p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: justify;
}

/* Our Services Section Styles */
.services {
  background-color: #fff;
  padding: 60px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.services-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  text-align: center;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #048d85;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-learn-more {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #048d85;
  border: 1px solid #048d85;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-learn-more:hover {
  background-color: #048d85;
  color: #fff;
}

/* Stock Take Services Section Styles */
.stock-services {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.stock-services h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.stock-services-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stock-service-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stock-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stock-service-card.reverse {
  flex-direction: column-reverse;
}

.stock-service-image {
  width: 100%;
}

.stock-service-image img {
  width: 100%;
  height: auto;
}

.stock-service-text {
  padding: 20px;
}

.stock-service-text h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.stock-service-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Gallery Section Styles */
.gallery {
  background-color: #fff;
  padding: 60px 20px;
}

.gallery h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.gallery-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.gallery-group {
  flex: 1;
  max-width: 600px;
}

.gallery-group h3 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  width: calc(33.333% - 20px); /* Default size */
}

.gallery-item img {
  width: 100%;
  height: auto;
}

.gallery-item p {
  padding: 10px;
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Team Image Specific Styles */
.team-item {
  width: calc(50% - 20px); /* Default size for team images */
}

.team-item img {
  object-fit: cover; /* Ensure landscape images cover the container */
}

/* Stock Arrangement Image Specific Styles */
.stock-item {
  width: calc(40% - 20px); /* Larger size for portrait images */
}

.stock-item img {
  height: 300px; /* Fixed height for portrait images */
  object-fit: cover; /* Ensure portrait images cover the container */
}

/* Why Choose Us Section Styles */
.why-choose-us {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.why-choose-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.why-choose-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(33.333% - 20px);
  max-width: 300px;
}

.why-choose-icon {
  font-size: 2rem;
  color: #048d85;
  margin-bottom: 15px;
}

.why-choose-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.why-choose-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.why-choose-button {
  text-align: center;
  margin-top: 40px;
}

.why-choose-button .btn {
  display: inline-block;
  background-color: #048d85;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
}

.why-choose-button .btn:hover {
  background-color: #0056b3;
}

/* Our Strength Section Styles */
.our-strength {
  background-color: #fff;
  padding: 60px 20px;
}

.our-strength h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.strength-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.strength-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.strength-list i {
  font-size: 1.5rem;
  color: #048d85;
  margin-right: 15px;
}

/* Stock Takes / Cycle Counts Section Styles */
.stock-takes {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.stock-takes h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.stock-takes-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stock-takes-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  max-width: 300px;
}

.stock-takes-item h3 {
  font-size: 1.2rem;
  color: #048d85;
  margin-bottom: 15px;
}

.stock-takes-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Additional Services Section Styles */
.additional-services {
  background-color: #fff;
  padding: 60px 20px;
}

.additional-services h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(33.333% - 20px);
  max-width: 350px;
}

.service-item h4 {
  font-size: 1.25rem;
  color: #048d85;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Our Clients Section */
.our-clients-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.our-clients-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.client-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(33.333% - 20px);
  max-width: 150px;
}

.client-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-card img:hover {
  transform: scale(1.1);
}

.client-card p {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.contact-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #05a19a;
}

.contact-note {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe58;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.email-btn {
  display: inline-block;
  background-color: #243b79;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 8px;
}

.email-btn:hover {
  background-color: #06325c;
}

.email-btn i {
  margin-right: 8px;
}

/* Footer Section */
.footer-section {
  background-color: #030101;
  color: #fff;
  padding: 40px 20px;
}

.footer-section .wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-column h5 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-credits {
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #05a19a;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #05a19a;
}

.office-info {
  background-color: rgb(2, 7, 7);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.office-info h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.office-info p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.office-details {
  list-style: none;
  padding: 0;
}

.office-details li {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 10px;
}

/* scroll to top button style */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  background-color: #0056b3;
}

/* Show normal navbar on larger screens */
@media (min-width: 769px) {
  .navbar-hamburger {
    display: none;
  }

  .navbar-links {
    display: flex;
  }

  .navbar-icons {
    display: flex;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
   /* Hide navbar links on mobile */
  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  /* Show navbar links when active */
  .navbar-links.active {
    display: flex;
    max-height: 500px; /* Adjust as needed */
  }

  /* Hamburger icon visibility */
  .navbar-hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger-icon {
    font-size: 1.5rem;
    color: #333;
    background: none;
    border: none;
  }

  /* Hide the normal navbar on mobile */
  .navbar {
    position: relative;
  }

  /* Right icons and language switcher alignment on mobile */
  .navbar-icons {
    display: block; /* Hide icons on mobile */
  }

  /* Optional: If you want to show the language switcher on mobile */
  /*.navbar-icons .btn-lang {*/
  /*  display: block;*/
  /*  margin-top: 10px;*/
  /*}*/

  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-images {
    flex-direction: column;
  }

  .about-images img {
    max-width: 100%;
  }

  .commitment-content {
    padding: 0 10px;
  }

  .commitment-image img {
    max-width: 40%;
    height: auto;
  }

  .services-content {
    flex-direction: column;
    align-items: center;
  }

  .stock-services-content {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    width: calc(50% - 20px); /* Larger images on medium screens */
  }

  .why-choose-item {
    width: calc(50% - 20px);
  }

  .strength-list {
    flex-direction: column;
  }

  .strength-list li {
    font-size: 0.875rem;
  }

  .strength-list i {
    font-size: 1.25rem;
  }

  .stock-takes-item {
    width: 100%;
  }

  .service-item {
    width: calc(50% - 20px);
  }

  .client-card {
    width: calc(50% - 20px);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 100%; /* Full width on small screens */
  }

  .why-choose-item {
    width: 100%;
  }
  .service-item {
    width: 100%;
  }

  .client-card {
    width: 100%;
  }
}
