
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .navbar {
      position: absolute;
      width: 100%;
      top: 0;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.3);
    }
    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
    }
    .dropdown-menu {
      background-color: white;
    }
    .carousel-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 0.8rem 1rem;
      border-radius: 10px;
      max-width: 70%;
      max-height: 10%;
    }
    .carousel-caption h5 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    .carousel-caption p {
      font-size: 1rem;
      margin: 0;
    }
    .section-title {
      text-align: center;
      margin: 3rem 0 2rem;
    }
    .team-member {
      text-align: center;
    }
    .service-card {
      border: 1px solid #ddd;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
    }
    footer {
      background-color: #003366;
      color: white;
      padding: 2rem 0;
    }
    footer a {
      color: #fff;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
      /* Team Section Styling */
      .team-card {
        transition: all 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 35, 102, 0.1);
    }
    
    .team-img-container {
        position: relative;
        overflow: hidden;
        height: 250px;
    }
    
    .team-img-container img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .team-card:hover .team-img-container img {
        transform: scale(1.05);
    }
    
    .team-social {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        background: rgba(0, 35, 102, 0.8);
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .team-card:hover .team-social {
        bottom: 0;
    }
    
    .team-social a {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        background: #0056b3;
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .team-social a:hover {
        background: #002366;
        transform: scale(1.1);
    }
    
    .team-contact {
        padding-top: 10px;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }
    
    .section-title {
        color: #002366;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        background: #0056b3;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .card-title {
        color: #002366;
        font-weight: 600;
    }
    
    @media (max-width: 767px) {
        .team-card {
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .team-img-container {
            height: 220px;
        }
    }

     /* WhatsApp Button Styling */
  .whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
  }
  
  .whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
  }
  
  .whatsapp-btn i {
    font-size: 24px;
    margin-right: 10px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .whatsapp-btn {
      padding: 12px 15px;
    }
    .whatsapp-btn span {
      display: none;
    }
    .whatsapp-btn i {
      margin-right: 0;
      font-size: 28px;
    }
  }
