@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* General Styling */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body {
      font-family: "Poppins", sans-serif;
      display: flex;
      flex-direction: column;
}


/* CONTACT US SECTION */

.contact-us {
      background-color: #fff;
      color: #fff;
      padding: 4rem;
font-family: "Poppins", sans-serif;}

.contact-us .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 4rem;
      max-width: 1400px;
      margin: auto;
      animation: fadeIn 1.5s ease-in-out;
}

/* Get In Touch Form */
.get-in-touch {
      flex: 1 1 48%;
      background-color: #111;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
      animation: slideInLeft 1s ease-out;
}

.get-in-touch h2 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      border-bottom: 2px solid #fff;
      display: inline-block;
      padding-bottom: 0.5rem;
}

.get-in-touch label {
      display: block;
      margin-top: 1rem;
      color: #ccc;
      font-weight: 600;
}

.get-in-touch input,
.get-in-touch textarea {
      width: 100%;
      padding: 0.75rem;
      margin-top: 0.3rem;
      background: #222;
      border: 1px solid #444;
      color: #fff;
      border-radius: 0.5rem;
      outline: none;
      font-size: 1rem;
}

.get-in-touch input:focus,
.get-in-touch textarea:focus {
      border-color: #888;
}

.get-in-touch .required {
      color: red;
      font-weight: bold;
}

.get-in-touch .mandatory {
      font-size: 0.9rem;
      color: #aaa;
      margin-top: -0.5rem;
      margin-bottom: 1rem;
}

.get-in-touch button {
      margin-top: 1.5rem;
      background-color: #fff;
      color: #000;
      padding: 0.75rem 1.5rem;
      border: none;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-in-touch button:hover {
      background-color: #ccc;
      transform: scale(1.05);
}

/* Contact Info */
.contact-info {
      flex: 1 1 45%;
      background-color: #111;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
      animation: slideInRight 1s ease-out;
}

.contact-info h2 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      border-bottom: 2px solid #fff;
      display: inline-block;
      padding-bottom: 0.5rem;
}

.contact-info p {
      margin: 1rem 0;
      font-size: 1rem;
      color: #ccc;
      display: flex;
      align-items: center;
      gap: 0.75rem;
}

.contact-info i {
      color: #fff;
      font-size: 1.2rem;
}

.contact-info iframe {
      width: 100%;
      height: 250px;
      margin-top: 1rem;
      border-radius: 1rem;
      border: none;
}

/* Animations */
@keyframes fadeIn {
      0% {
            opacity: 0;
            transform: scale(0.95);
      }

      100% {
            opacity: 1;
            transform: scale(1);
      }
}

@keyframes slideInLeft {
      0% {
            opacity: 0;
            transform: translateX(-50px);
      }

      100% {
            opacity: 1;
            transform: translateX(0);
      }
}

@keyframes slideInRight {
      0% {
            opacity: 0;
            transform: translateX(50px);
      }

      100% {
            opacity: 1;
            transform: translateX(0);
      }
}

/* Responsive */
@media (max-width: 768px) {
      .contact-us .container {
            flex-direction: column;
      }

      .get-in-touch,
      .contact-info {
            flex: 1 1 100%;
      }

      .get-in-touch h2,
      .contact-info h2 {
            font-size: 1.5rem;
      }
}


/* .contact-us {
      padding: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 90vh;
}

.container {
      display: flex;
      gap: 40px;
      min-height: 620px;
      background-color: #ededed;
      width: 100%;
      padding: 1.5rem;
}

.get-in-touch {
      flex: 1;
}

.get-in-touch h2 {
      color: #000;
}

.get-in-touch form {
      display: flex;
      flex-direction: column;
}

.get-in-touch label {
      color: #000;
}

.get-in-touch label .required {
      color: red;
      font-weight: bold;
}

.get-in-touch input,
.get-in-touch textarea {
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
}

.get-in-touch button {
      padding: 10px 20px;
      font-size: 1.3rem;
      color: white;
      background-color: #000;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
}

.get-in-touch button:hover {
      background-color: #3f3f3f;
}

.contact-info {
      margin-left: 4rem;
      flex: 1;
      color: #333;
      max-width: 600px;
}

.contact-info h2 {
      text-align: left;
      margin-bottom: 20px;
}

.contact-info p {
      margin: 10px 0px;
      font-size: 16px;
      display: flex;
      align-items: center;
}

.contact-info i {
      margin-right: 20px;
      font-size: 18px;
      color: #333;
}

.mandatory {
      margin-bottom: 1rem;
}

@media (max-width: 768px) {

      .contact-us {
            padding: 20px;
            height: fit-content;
            overflow-x: hidden;
      }

      .container {
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
      }

      .contact-info,
      .get-in-touch {
            width: 100%;
      }

      .contact-info {
            margin-left: 1rem;
            margin-top: 1rem;
      }

      .contact-info p {
            font-size: 1rem;
      }

      .social-icons h4 {
            font-size: 0.7rem;
      }

      iframe {
            margin-left: -1rem;
            width: -webkit-fill-available;
      }
}

@media (max-width:370px) {
      .contact-info h2 {
            text-align: left;
      }

      .contact-info p {
            font-size: 0.8rem;
      }
}

@media (max-width:300px) {

      .contact-info p {
            font-size: 0.6rem;
      }
} */