
.about-image img {
  width: 500px;
  height: 1111px;
  
}
.container {
  position: relative;
  max-height: 300px;
    max-width: 300px;
    margin: 10px;
    display: inline-block;
}

.image {
  display: inline-block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #EAAA00;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: black;
    font-family: Gotham, sans-serif;
  font-size: 16px;
    line-height: 1.4;
    width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {...}

/* Resetting margins and padding */

@media only screen and (max-width: 600px){
body {
 max-width: 100vw;

overflow-x: hidden;
}

/* Navbar styling */
.navbar {
  background-color: #eaaa00;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem;
    
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.navbar ul li {
  margin: 0 20px;
}

.navbar ul li a {
  color: black;
     font-family: rift, sans-serif;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #d83333;
}

/* Hero section styling */
.hero {
  height: 100vh;
  background: url(img/happycoworkers.jpg) no-repeat center center/cover;
  position: relative;
     max-width: 100%;
    min-width: 300px;
    
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  position: relative;
  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 */
}

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

.hero p {
  font-size: 1.5rem;
  margin-top: 10px;
}

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

/* 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: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .navbar ul li {
    margin: 0 10px;
  }
}

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


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

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

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

/* 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: 520px) {
  .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-top: -100px;
  background-color: white;
}

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

.about-image img {
  width: 100%;
  height: auto;
  margin-top: 100px;
  overflow: hidden;
  
}

.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;
  
  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;
    top: 0;
  }

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

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

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

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

@media (max-width: 525px) {
  .about-text h1 {
    font-size: 35px;
    margin-top: -20px;
    
  }

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

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





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

.footer-container {
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: left;
  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;
  max-width: 200px;
  text-align: left;
  justify-content: center;
}

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

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

.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: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

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

  }
}


.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: 50px;
}

.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;
  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: 16px;
  letter-spacing: 2px;
}

.hero2 p {
  font-size: 12px;
  margin-top: 10px;
  margin-left: 50px;
  margin-right: 50px;
  
}

/* 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;
    object-fit: cover;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
 
}

.hero3-content {
  position: relative;
  z-index: 2;
   margin-bottom: 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: 16px;
  letter-spacing: 2px;
}

.hero3 p {
  font-size: 12px;
  margin-top: 10px;
   margin-left: 50px;
  margin-right: 50px;
  
}

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

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 50px;
  background-color: #f9f9f9;
  
}
 .video-section > iframe {
        width:300px;
            height: 150px;
    }
}

.contact-section {
    padding: 50px;
    background-color: white;
    margin-left: 50px;
    margin-right: 50px;


