#container {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 50px;
  }
  #container .main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding:0px 50px 0px 50px;
    gap:60px;
  }
  #container .main .left {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  #container .main .left .contact-info {
  }
  
  #container .main .left .contact-info .top {
  }
  #container .main .left .contact-info .top h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #25252580;
  }
  #container .top{
    display: flex;
   justify-content: center;
    align-items: center;
   
  }
  #container .top h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 49px;
    margin-bottom: 20px;
   
  }
  #container .main .left .contact-info .bottom {
   display: flex;
   flex-direction: column;
    gap: 10px;
  }
  #container .main .left .contact-info .bottom .inner-box {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    background-color: #fdf6f6;
    padding: 24px 50px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
  }
  #container .main .left .contact-info .bottom .inner-box:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  #container .main .left .contact-info  .bottom  .inner-box .image{
    padding-left: 20px;
    
  }
  #container .main .left .contact-info  .bottom  .inner-box .icon-box {
    margin-right: 10px;
    width: 24px;
    
    fill: #af0b0b;
  }
  #container .main .left .contact-info  .bottom  .inner-box  span {
    width: 100%;
    font-size: 18px;
    color:#af0b0b;
  }
  #container .main .left .contact-info  .bottom  .inner-box  a{
    color:#474747;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }
  #container .main .left .asocial-icons {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
   place-self: center;
    width: 30%;
    padding: 10px 0px 10px 0px;
    border-radius: 12px;
    background: #2525251A;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }
  
  #container .main .left .asocial-icons a {
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
        align-items: center;
  }
  
  #container .main .left .asocial-icons:hover {
    background: #252525; /* Change to a darker background on hover */
      color: #fff; /* Change text or icon color */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
      transform: scale(1.05); /* Slightly enlarge the container */
  }
  #container .main .left .asocial-icons a img{
  
  }
  
  
  
  #container .main .right {
    width:38%;
    
  }
  #container .main .right .contact-form {
    padding: 20px;
   background: #FBFBFB ;
   background: #FBFBFB;
    border-radius: 10px;
   
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #container .main .contact-form h2 {
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #333;
  }
  
  #container .main .contact-form input,
  #container .main .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    font-weight: 400;
  }
  #container .main .contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
    appearance: none; /* Removes default dropdown styling */
}

#container .main .contact-form select option{

  font-size: 16px;
   /* Removes default dropdown styling */
}

  #container .main .contact-form button {
    width: 99%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
  }
  #container .main .contact-form button:hover{
    background-color: #d6141a;
    cursor: pointer;
    transform: scale(1.03);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.2s ease;
  }
  #container .main .contact-form input::placeholder,
  #container .main .contact-form textarea::placeholder {
    color: #aaa;
  }
  
  #container .main .contact-form textarea {
    resize: none;
   
  }
  
  #container .main .contact-form button {
    background-color: #af0b0b;
    color: #fff;
    font-weight: 400;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  
  
  @media (max-width: 1024px) {
  
    /* #container .main .left{
      width: 100%;
    } */
    /* #container .main .right {
     
    } */
    #container .main .contact-form button {
      background-color: #af0b0b;
      color: #fff;
      width: 95%;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }
    #container .main .left .asocial-icons {
      width: 80%;
      margin-top: 30px;
    }
  
    #container .main .left .contact-info .top h2 {
      font-size: 30px;
    }
  
    #container .main .left .contact-info .bottom {
      grid-template-columns: 1fr;
    }
  
    #container .main .right .contact-form h2 {
      font-size: 22px;
    }
    #container .main .left .contact-info {
      margin-bottom: 50px;
  }
  }
  
  /* Small screens (phones, 480px and up) */
  @media (max-width: 768px) {
    #container {
      width: 100%;
      padding-top: 0px;
  }
    #container .main {
      flex-direction: column;
      width: 100%;
      padding: 0 20px 0 20px;
  }
  #container {
    width: 100%;
    padding-top: 40px;
    padding-left: 0px;
    padding-bottom: 40px;
  }
  
    #container .main .left,
    #container .main .right {
      width: 100%;
      
    }
  
    #container .main .left .asocial-icons {
      width: 80%;
      margin-top: 30px;
    }
  
    #container .main .left .contact-info .top h2 {
      font-size: 35px;
      line-height: 38px;
    }
  
    #container .main .contact-form input,
    #container .main .contact-form textarea,
    #container .main .contact-form button {
      width: 100%;
    }
  
    #container .main .right .contact-form h2 {
      font-size: 20px;
    }
    #container .main .left .contact-info .bottom .inner-box {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      background-color: #ededed;      ;
      padding: 24px 0px;
      border-radius: 10px;
      
      width: 100%;
    }
  }
  
  /* Extra small screens (phones, 480px and below) */
  @media (max-width: 480px) {
  
  
    #container .main .left .contact-info .bottom {
      grid-template-columns: 1fr;
    }
  
    #container .main .left .contact-info .top h2 {
      font-size: 20px;
      line-height: 30px;
      width: 100%;
  }
    #container .main .contact-form input,
    #container .main .contact-form textarea,
    #container .main .contact-form select {
      width: 100%;
      font-size: 12px;
    }
  
    #container .main .contact-form button {
      font-size: 12px;
      letter-spacing: 1px;
    }
    #container .main .left .contact-info .bottom .inner-box span {
      width: 100%;
      font-size: 16px;
  }
  #container .main .left .contact-info .bottom .inner-box a {
    color: black;
    width: 100%;
    font-size: 16px;
  }
  #container .main .left .asocial-icons {
    width: 60%;
    margin-top: 30px;
  }
  }