

.hero {
  height: 100vh;
 
  background: url(img/happycoworkers2.jpg) no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
  color: white;
  text-align: center;
}

.hero-content {
  position: relative;
    margin-top: 100px;
    margin-bottom: 150px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(155, 155, 155, 0.5); /* Dark overlay for better text readability */
}


/* Parallax Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('img/happycoworkers.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.1)
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

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

/* Media Queries for Mobile */
@media (max-width: 508px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

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

  .hero-content p {
    font-size: 1rem;
  }
}
/* Next section styling */
.next-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 20px;
  text-align: center;
}

.next-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.next-section p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
    margin-top: 250px;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar ul li {
    margin: 0 10px;
  }
  .hero {
  height: 100vh;
  background: url(img/happycoworkers.jpg) no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Staff Section Styles */
.staff-section {
  padding: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.staff-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.staff-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

/* Flipcard Styles */
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 400px;
  perspective: 1000px; /* Enables the 3D effect */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Ensures that the back is hidden when not flipped */
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: white;
  color: #d83333;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
}

.flip-card-back h2 {
  font-size: 1.5rem;
}

.flip-card-back p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .flip-card {
    width: 250px;
    height: 350px;
  }

  .staff-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .flip-card {
    width: 200px;
    height: 300px;
  }

  .flip-card-back h2 {
    font-size: 1.2rem;
  }

  .flip-card-back p {
    font-size: 1rem;
  }

  .staff-section h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .flip-card {
    width: 180px;
    height: 260px;
  }

  .flip-card-back h2 {
    font-size: 1rem;
  }

  .flip-card-back p {
    font-size: 0.9rem;
  }

  .staff-section h1 {
    font-size: 1.5rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* About Us Section Styles */
.about-us-section {
  padding: 10px;
  margin-bottom: 50px;
  background-color: white;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 140px;
}

.about-image img {
  width: 100%;
  height: auto;
  
}

.about-text {
  max-width: 700px;
  padding: 20px;
  
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d83333;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.about-btn:hover {
  background-color: #eaaa00;
}

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

  .about-text h1 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-text h1 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-btn {
    font-size: 0.9rem;
  }
}

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

  .about-text p {
    font-size: 0.9rem;
  }

  .about-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.locations-section {
  padding: 50px;
  background-color: white;
  padding-bottom: 0px;
}

.location-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.location-box {
  flex: 1;
  min-width: 250px;
  max-width: 700px; /* Set max width for responsiveness */
  text-decoration: none;
  position: relative;
}

.location-image {
  width: 100%;
  height: 400px; /* Fixed height */
  background-size: cover;
  background-position: center;
 
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.location-image:hover {
  transform: scale(1.05);
}

.location-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-box:hover .location-text {
  opacity: 1;
}

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

  .location-box {
    max-width: 100%;
  }
}

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

.footer {
  background-color: #333;
  color: white;
    margin-top: 20px;
    height: auto;
  align-content: center;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  align-content: center;
  text-align: center;
  line-height: normal;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;


}

.footer-logo {
  flex: 1;
  max-width: 200px;
  text-align: left;
  margin-left: 200px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-address {
  flex: 1;
  line-height: normal;
  max-width: 200px;
  text-align: left;

}

.footer-links {
  flex: 1;
  max-width: 200px;
  text-align: left;
  margin-right: 200px;
}

.footer-links h3,
.footer-address h3 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #D83333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;

    height: auto;
  }

  .footer-logo,
  .footer-address,
  .footer-links {
    min-width: auto;
    margin-bottom: 20px;
     justify-content: center;
    margin-left: -200px;
  }
}


.benefits-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Evenly space the cards */
  padding: 2rem;
  gap: 0rem; /* Add some spacing between cards */
  padding-bottom: 0px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 1.5rem;
  margin: 1rem;
  border: 2px solid black;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  background-color: #Eaaa00;
  color: white;
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  color: #D83333;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  color: #ff4757;
  font-size: 3.5rem;
}

.benefit-text {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #333;
}
/* styles.css */


.text-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f9f9f9;
  height: 100vh; /* Full viewport height */
}

.text-block {
  flex: 1;
  padding-right: 2rem;
}

.text-block h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.text-block p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

.image-block {
  flex: 1;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Two section styling */
.hero2 {
  height: 100vh;
 
  background: url(img/happycoworkers2.jpg) no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
  color: white;
  text-align: center;
}

.hero2-content {
  position: relative;
  margin-top: 50px;
  margin-bottom: 150px;
  margin-left: 50px;
  margin-right: 50px;
  z-index: 2;
}

.hero2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(155, 155, 155, 0.5); /* Dark overlay for better text readability */
}

.hero2 h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero2 p {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-left: 150px;
  margin-right: 150px;
  
}

/* Parallax effect */
.hero2 {
  background-attachment: fixed;
}

/* Hero Three section styling */
.hero3 {
  height: 70vh;
  background: url(img/warehouse_header.jpg) no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
 
}

.hero3-content {
  position: relative;
  z-index: 2;
   margin-bottom: 100px;
   margin-top: 100px;
}

.hero3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(155, 155, 155, 0.5); /* Dark overlay for better text readability */
}

.hero3 h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero3 p {
  font-size: 1.5rem;
  margin-top: 10px;
   margin-left: 200px;
  margin-right: 200px;
  
}

/* Parallax effect */
.hero3 {
  background-attachment: fixed;
}

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #f9f9f9;
}
.mapwrapper {
  margin-top: 50px;
}