/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: #c00;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.8rem;
    color: white;
  }
  
  h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #c00;
  }
  
  h3 {
    color: #c00;
    font-size: 1.5rem;
  }
  
  a {
    color: #c00;
    text-decoration: none;
    font-weight: 500;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .btn {
    display: inline-block;
    background-color: white;
    color: #c00;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e60014;
    color: white;
    transform: scale(1.05);
  }
  
  /* Header & Navigation */
  header {
    background-color: white;
    color: #c00;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 60px;
    border-radius: 8px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav a {
    color: #c00;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #8b0000;
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    color: #c00;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(192, 0, 0, 0.85), rgba(160, 0, 0, 0.8)), url('https://source.unsplash.com/random/1600x900/?construction,workers') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 140px 20px 100px;
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
  }
  
  /* Sections */
  section {
    padding: 80px 0;
  }
  
  .about, .why-us, .services, .accreditations, .contact {
    background-color: #fff;
  }
  
  /* About Section */
  .about-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .director {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background-color: #fdf2f2;
    border-left: 4px solid #c00;
    border-radius: 6px;
  }
  
  .vm-box {
    background: #fdf2f2;
    padding: 1.6rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    border: 1px dashed #c00;
  }
  
  .vm-box h4 {
    color: #c00;
    margin-bottom: 1rem;
  }
  
  .values {
    margin: 2rem 0;
    text-align: center;
  }
  
  .values ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #c00;
  }
  
  /* Why Us */
  .why-us {
    background-color: #fdf2f2;
  }
  
  .reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
  }
  
  .reason {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .reason h3 {
    color: #c00;
  }
  
  /* Services */
  .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 2rem;
  }
  
  .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(192, 0, 0, 0.15);
  }
  
  .card h3 {
    color: #c00;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  /* Accreditations */
  .accreditations {
    background-color: #c00;
    color: white;
  }
  
  .accreditations h2 {
    color: white;
  }
  
  .badges {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin: 2rem 0;
  }
  
  .badge {
    background: white;
    color: #c00;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .tagline {
    text-align: center;
    font-style: italic;
    color: #ffe6e6;
    margin-top: 1.5rem;
    font-size: 1.2rem;
  }
  
  /* Contact */
  .contact {
    background-color: #fff;
    text-align: center;
  }
  
  .contact-info {
    max-width: 650px;
    margin: 2.5rem auto;
    line-height: 2.2;
    font-size: 1.1rem;
  }
  
  .contact-info a {
    color: #c00;
    font-weight: 600;
  }
  
  /* Footer */
  footer {
    background-color: white;
    color: #333;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 12px;
    opacity: 0.9;
  }
  
  footer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
  
    h2 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      padding: 1rem 0;
      text-align: center;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }
  
    nav ul.show {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  
    .values ul {
      flex-direction: column;
      gap: 1rem;
    }
  }