
:root {
    --primary-color: #ff7a00;
    --primary-dark: #d65f2f;
  }
  
  body {
    font-family: "Arial", sans-serif;
    background-color: #f8f9fa;
     overflow-x: hidden;
  }
   
  
  .text-primary-custom {
    color:#ff7a00;
  }
  
  .btn-primary-custom {
    background-color:#ff7a00;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .btn-primary-custom:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("./assets/img/banner2.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 130px;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .contact-info-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-icon {
    font-size: 2rem;
    color:#ff7a00;
    margin-bottom: 10px;
  }
  
  .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  