/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Arial', sans-serif;
    background-color: aliceblue;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Container Styling */
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .heading_container {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .heading_container h2 {
    font-size: 36px;
    color: #444;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .heading_container h2::after {
    content: '';
    width: 50%;
    height: 4px;
    background-color: #444;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Responsive Grid System */
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
  }
  
  .col-lg-8,
  .col-md-7,
  .col-md-5,
  .col-lg-4 {
    padding: 10px;
  }
  
  /* Columns for Different Screen Sizes */
  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
  
  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  
  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  
  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  
  /* Map Container Styling */
  .map_container {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.3s ease-in-out;
    transform: scale(0.98);
  }
  
  .map_container:hover {
    transform: scale(1);
  }
  
  .map-responsive {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
  
  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* Form Styling */
  form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    animation: fadeInUp 0.5s ease-in-out;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #03b6ec;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }
  
  .form-control:focus {
    border-color: #333;
  }
  
  .message-box {
    height: 150px;
  }
  
  .btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    outline: 1px #03b6ec;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #03b6ec;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #03b6ec;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .col-lg-8, .col-md-7, .col-md-5, .col-lg-4 {
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .heading_container h2 {
      font-size: 28px;
    }
  }
  