body {
    /* font-family: 'Poppins', sans-serif; */
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-family: 'Cairo', sans-serif;

  }



  
  .navbar {
    transition: background-color 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .icon-container {
    margin-bottom: 16px;
  }
  
  .bi {
    font-size: 3rem;
    color: #EC9C40;
  }
  
  .navbar.scrolled {
    background-color: #000000;
  }
  
  .navbar .nav-link {
    color: white;
  }
  
  .navbar .nav-link:hover {
    color: #EC9C40;
  }
  
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-section video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    padding-top: 20%;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    color: #EC9C40;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }
  .btn-warning2 {
    background-color: #EC9C40;
    border-color: #EC9C40;
    
  }
  .btn-warning2:hover {
    background-color: #EC9C40;
    border-color: #1f1004;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2.8rem;
    color: #EC9C40;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .card, .highlight-card, .testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
  }
  
  .card:hover, .highlight-card:hover, .testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  
  footer {
    background-color: #000;
    padding: 2rem 0;
    color: #b2b2b2;
  }
  
  footer a {
    color: #EC9C40;
  }
  
  footer a:hover {
    color: white;
  }
  