
/* css for the contact page start from here */

/* Section 1: Hero Section with Background Image */
.contact-hero {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(248, 87, 0, 0.75), rgba(0, 0, 0, 0.5)),
      url("https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding: 20px;
    margin-bottom: 5rem;
  }
  
  .svg-color{
    filter: invert(54%) sepia(61%) saturate(5113%) hue-rotate(349deg) brightness(100%) contrast(94%);
}

  .contact-hero-content {
    max-width: 1100px;
    margin: auto;
    width: 100%;
  }
  
  .contact-hero h1 {
    color: #fff;
    font-size: 68px;
    font-weight: 300;
    padding-bottom: 15px;
    line-height: normal;
    margin-bottom: 1rem;
  }
  
  .contact-hero p {
    color: #fff;
    font-size: 22px;
    line-height: 29px;
    max-width: 730px;
    margin-bottom: 2rem;
  }
  
  /* Section 2: Emergency Assistance Section */
  .emergency-assistance-box {
    max-width: 1100px;
    width: 100%;
    margin: auto;
  }
  .emergency-assistance-wrap {
    max-width: 700px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.36);
  }
  .emergency-assistance-top {
    padding: 2rem;
    padding-bottom: 0;
  }
  .emergency-assistance-bottom {
    padding: 2rem;
    background-color: #f3f4f6;
    text-align: center;
  }
  .bottom-subtitle {
    color: #24201f;
    font-size: 1.25rem;
  }
  .emergency-assistance-box .icon {
    margin-bottom: 1rem;
  }
  .emergency-assistance-box .phone-icon {
    height: 60px;
  }
  .emergency-assistance-box .aus-icon {
    height: 90px;
  }
  .emergency-assistance-box .mail-icon {
    height: 60px;
    margin: 1.5rem 0;
  }
  .emergency-assistance-box .overseas-icon {
    height: 90px;
  }
  
  .emergency-assistance-box .title {
    color: #f97316;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  
  .emergency-assistance-box .flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .emergency-assistance-box .icon-text {
    color: #23201f;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .emergency-assistance-box .text-orange {
    color: #f97316;
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
  }
  
  .emergency-assistance-box .text-sm {
    font-size: 0.875rem;
  }
  
  .emergency-assistance-box .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .emergency-assistance-box .mb-4 {
    margin-bottom: 1rem;
  }
  
  .emergency-assistance-box .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  /* Section 3: Info Section */
  .contact-info-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
  }
  
  .contact-info-block {
    padding: 22px 100px;
    background: #fff;
    max-width: 800px;
    margin: auto;
  }
  
  .contact-info-block h3 {
    color: #f97316;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 500;
  }
  
  li::marker {
    color: #f97316;
  }
  
  .contact-info-list li {
    margin-bottom: 0.8rem;
    color: #000000c7;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .emergency-assistance-box {
      grid-template-columns: 1fr;
      margin: -30px 20px 30px;
      padding: 20px;
    }
  
    .contact-hero h1 {
      font-size: 2rem;
    }
  
    .contact-hero p {
      font-size: 1rem;
    }
  }
  
  /* css for the  page end  here */
  