@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&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #111;
  }
  
  .contact-main {
    width: 100%;
  }
  
  .hero-section {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
  }
  
  .hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 5vw;
    transform: translateY(-50%);
    color: #fff;
  }
  
  .hero-text h1 {
    font-size: 3vw;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .hero-text p {
    font-size: 1.2vw;
    margin-top: 0.5vw;
    max-width: 40vw;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5vw;
    gap: 2vw;
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 40%;
  }
  
  .contact-info h2 {
    font-size: 2vw;
    margin-bottom: 1vw;
  }
  
  .contact-info p {
    font-size: 1vw;
    margin-bottom: 2vw;
  }
  
  .office h3 {
    font-size: 1.2vw;
    color: #1775BB;
    margin-bottom: 0.5vw;
  }
  
  .office p {
    font-size: 1vw;
    margin-bottom: 1.5vw;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 55%;
    background: #f6f6f6;
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  
  .form-row {
    display: flex;
    gap: 1vw;
  }
  
  input, textarea {
    width: 100%;
    padding: 1vw;
    border: none;
    border-radius: 0.5vw;
    font-size: 1vw;
    background: #fff;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
  }
  
  textarea {
    min-height: 120px;
    resize: none;
  }
  
  button {
    background-color: #5b3fdb;
    color: white;
    font-size: 1.2vw;
    border: none;
    padding: 1vw;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #3f2aad;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 6vw;
    }
    .hero-text p {
      font-size: 3.5vw;
      max-width: 90vw;
    }
    .contact-container {
      flex-direction: column;
    }
    .contact-info h2,
    .office h3 {
        font-size: 6.2vw;
        font-weight: 600;
        padding: 1vw 0;    }
    .contact-info{
        max-width: 97%;
    }
    .contact-info p, .office p {
      font-size: 4vw;
    }
    button {
      font-size: 4vw;
    }
    .contact-form {
        max-width: 98%;
        margin-top: 10vw;
    }
    input, textarea {
        padding: 3vw;
        font-size: 3.5vw;
}
.office{
    padding-top: 6vw;
}
  }
  