body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff7f8;
    overflow-x: hidden;
  }
  
  header {
    position: relative;
    top: 0;
    width: 100%;
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    transition: top 0.4s;
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  header.hidden {
    top: -100px;
  }
  
  
  header img.logo {
    height: 65px;
  }
  
 nav {
  display: flex;
  gap: 30px; /* Adjust spacing between links */
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s;
}

  
  nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #b00020;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
  }
  
  nav a:hover {
    color: #b00020;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  .hero {
    position: relative;
    height: 92vh;
    background: url('assets/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  
  .hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
  
  .hero button {
    padding: 14px 28px;
    font-size: 1rem;
    background-color: #b00020;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .hero button:hover {
    background-color: #8a0018;
    transform: translateY(-2px);
  }
  
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 2.6rem;
    color: #b00020;
    margin-bottom: 20px;
  }
  
  .about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
  }
  
  .services, .why, .footer {
    background: #fceeee;
  }
  
  .services-container, .why-container, .testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  /* Flip Card */
  .flip-card {
    background: transparent;
    width: 280px;
    height: 180px;
    perspective: 1000px;
  }
  
  .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
  
  .flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .flip-front h3, .flip-back p {
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .flip-back {
    transform: rotateY(180deg);
  }
  
  .why-card, .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
  }
  
  .why-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-card img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  
  footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .footer a {
    color: #b00020;
    margin: 0 10px;
    text-decoration: none;
  }

  /* Existing styles omitted for brevity */

.testimonial-carousel {
    max-width: 100%;
    width: 1000px;
    overflow: hidden;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .carousel-track {
    display: flex;
    animation: scrollTestimonials 30s linear infinite;
    will-change: transform;
  }
  
  .carousel-track .testimonial-card {
    width: 300px;
    flex-shrink: 0;
    margin-right: 40px;
  }
  
  @keyframes scrollTestimonials {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (300px + 40px) * 5));
    }
  }
  
  @media (max-width: 960px) {
    .testimonial-carousel {
      width: 100%;
    }
  
    .carousel-track .testimonial-card {
      width: 250px;
      margin-right: 30px;
    }
  
    @keyframes scrollTestimonials {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-1 * (250px + 30px) * 5));
      }
    }
  }
  

  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #b00020;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  
  .mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #b00020;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    nav {
      display: none;
    }
    .hamburger {
      display: flex;
    }
    .mobile-nav.active {
      display: flex;
    }
  }
  
  .hero-slider {
    position: relative;
    height: 65vh;
    overflow: hidden;
    padding-top: 90px; 
  }
  .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .slide.active {
    opacity: 1;
  }
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
  }


  
  
  .hero-content button {
    padding: 14px 28px;
    font-size: 1rem;
    background-color: #b00020;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .hero-content button:hover {
    background-color: #8a0018;
    transform: translateY(-2px);
  }

  .header-info {
    background-color: #b00020;
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 999px;
    text-align: right;
    display: inline-block;
    margin-bottom: 20px;
    
  }
  .header-center-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
  }
  
  @media (max-width: 768px) {
    .header-info {
      display: none;
    }
  }
  
  
  
  /* Add spacing between work hours and menu */
  header > div[style*="margin-left"] {
    margin-right: 30px !important;
  }
  
  .job-application-form {
    background-color: #f9f9f9;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
  }
  
  .job-application-form h2 {
    text-align: center;
    color: #b00020;
    margin-bottom: 25px;
  }
  
  .job-application-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .job-application-form label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .job-application-form input,
  .job-application-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .job-application-form button {
    background-color: #b00020;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .job-application-form button:hover {
    background-color: #a0001a;
  }

  
  .file-wrapper {
    display: flex;
    justify-content: flex-end;
  }
  
  .file-wrapper input[type="file"] {
    width: 100%;
    cursor: pointer;
  }
  
  .custom-upload-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .custom-upload-box #file-name {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
  }
  
  .upload-btn {
    background-color: #b00020;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
  }
  
  .upload-btn:hover {
    background-color: #99001a;
  }
  
  .custom-upload-box input[type="file"] {
    display: none;
  }
  
  