  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Sans-serif', sans-serif;
    }

    body {
      background-color: #ffffff;
    }

/* Default Header */
    .header {
      background-color: #a41c1c;
      padding: 10px 40px;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

/* On Scroll */
    .header.scrolled {
      background-color: #630707; /* slightly darker or solid */
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      padding: 8px 40px; /* optional */
    }


    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: auto;
    }

    .logo {
      flex-shrink: 0;
      margin-right: auto;
    }

    .logo img {
      height: 70px;
      transition: transform 0.3s ease-in-out;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    .nav {
      flex-grow: 0;
    }

    .nav-list {
      list-style: none;
      display: flex;
      gap: 35px;
      justify-content: flex-end;
    }

    .nav-list li a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      position: relative;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .nav-list li a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      background: gold;
      left: 0;
      bottom: -4px;
      transition: 0.3s;
    }

    .nav-list li a:hover {
      color: gold;
    }

    .nav-list li a:hover::after {
      width: 100%;
    }
    /* .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
} */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  color: white;
}


    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      margin-left: 20px;
    }

    .menu-toggle span {
      background-color: #fff;
      height: 3px;
      width: 25px;
      margin: 4px 0;
      transition: all 0.3s ease;
    }

    @media screen and (max-width: 768px) {
      .nav-list {
        display: none;
        flex-direction: column;
        background-color: #a41c1c;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        padding: 15px;
        border-radius: 8px;
      }

      .nav-list.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out forwards;
      }

      .menu-toggle {  
        display: flex;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }




  .team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .member {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
    align-items: center;
  }

  .member.reverse {
    flex-direction: row-reverse;
  }

  .member-image, .member-info {
    flex: 1 1 500px;
    padding: 10px;
  }
  .member-image{
    display: flex;
    justify-content: center;
  }
  .member-image img {
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .member-image img:hover {
    transform: scale(1.03);
  }

  .member-info h2 {
    color: #a41c1c;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .member-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }

  .member-info p {
    line-height: 1.7;
    color: #444;
  }

  /* Chairman highlight */
  .chairman {
    background: #fdf2f2;
    padding: 40px 20px;
    border: 2px solid #a41c1c22;
    border-radius: 16px;
    margin-bottom: 60px;
  }

  .chairman h2::after {
    /* content: " (Chairman & Managing Director)"; */
    font-size: 16px;
    font-weight: 400;
    color: #a41c1c;
  }

  @media (max-width: 768px) {
    .member {
      flex-direction: column;
      text-align: center;
    }

    .member.reverse {
      flex-direction: column;
    }
    
    .member-image, .member-info {
        flex-basis: 100%;
        padding: 15px 0;
    }

    .member-image img {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
    }
  }

  /* footer  */
  .footer {
  background-color: #240303;
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer a:hover {
  color: #e3b04b;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-logo {
  max-width: 180px;
}

.footer-center h4,
.footer-right h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #e3b04b;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 10px;
  color: #e3b04b;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer h5{
  text-align: center;
  font-family: 'Sans-serif', sans-serif;

}

.social-links i {
  margin-right: 8px;
  color: #e3b04b;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right,
  .footer-column {
    margin: 20px 0;
  }
}