  /*───────────── CONTACT US SECTION ───────────── */
/*───────────── BASIC ───────────── */
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

/*───────────── BASIC END ───────────── */
  .contact-section {
   padding: 50px 20px;
   background-color: #ffffff;
   font-family: 'Open Sans', sans-serif;
   border-top: 5px solid rgb(0, 153, 255);
 }

 .contact-container {
   display: flex;
   flex-wrap: wrap;
   max-width: 1200px;
   margin: auto;
   background: #ffffff;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
 }

 .contact-info,
 .contact-form {
   flex: 1 1 300px;
   padding: 30px;
 }

 .contact-info h2,
 .contact-form h2 {
   color: #008cff;
   margin-bottom: 30px;
   font-size: 2rem;
   text-align: center;
   position: relative;
   display: block;
   width: fit-content;
   margin-left: auto;
   margin-right: auto;
 }

 .contact-info h2::after,
 .contact-form h2::after {
   content: "";
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 100%;
   height: 3px;
   background-color: #008cff;
   border-radius: 2px;
 }

 .contact-info p {
   font-size: 16px;
   margin: 10px 0;
   color: #333;
   display: flex;
   align-items: center;
 }

 .contact-info i {
   color: #008cff;
   margin-right: 10px;
   font-size: 18px;
 }

 .contact-info a {
   color: #333;
   text-decoration: none;
 }

 .contact-info a i {
   font-size: 20px;
   margin-right: 10px;
   color: #008cff;
   transition: color 0.3s;
 }

 .contact-info a:hover i {
   color: #001bc1;
 }

 .map-container {
   margin-top: 20px;
   border-radius: 8px;
   overflow: hidden;
   border: 3px solid rgb(0, 153, 255);
 }

 .contact-form form {
   display: flex;
   flex-direction: column;
 }

 .contact-form input,
 .contact-form textarea {
   padding: 12px;
   margin-bottom: 15px;
   border: 1px solid #000000;
   border-radius: 5px;
   font-size: 16px;
   resize: none;
   font-family: 'Open Sans', sans-serif;
 }

 .contact-form button {
   background-color: #008cff;
   color: #fff;
   padding: 12px;
   border: none;
   font-weight: 600;
   border-radius: 5px;
   cursor: pointer;
   transition: background 0.3s ease;
 }

 .contact-form button:hover {
   background-color: #001bc1;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .contact-container {
     flex-direction: column;
   }
 }
  /*───────────── CONTACT US SECTION END ───────────── */