/* ===== Base Styles ===== */
/* Reset & Base */

html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
 scroll-behavior: smooth;
}


.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5%;
  min-height: 100vh;
  gap:250px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.heading {
  font-size:6rem;
  color: rgb(38, 82, 171); /* Logo blue */
 font-family: 'Quintessential', cursive;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  line-height:120px;
}

.subtext {
  font-size:1.5rem;
  color: #000000;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #a7a7a7;
  color: rgb(0, 0, 0);
}

.contact-method {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: #000000;
}

button {
  background: rgb(38, 82, 171); /* Logo blue */
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e87c2a;
}

.contact-image {
  flex: 1;
  min-width: 280px;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
}






@media (max-width: 768px) {


.contact-section{
  flex-direction: column-reverse;
}

  .hero {
     text-align: center;
    padding-top:50px;
  }
    .hero-img { max-width: 80%; margin-bottom:70px; }

  .hero-content { max-width: 100%; padding-bottom:60px;
  
  }

  .heading {
  font-size:3.5rem;
  color: rgb(38, 82, 171); /* Logo blue */
 font-family: 'Quintessential', cursive;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  line-height:80px;
}
    .brand-tagline {
    font-size:4.5rem;
    text-align: center;
    font-size: 300;
    }
  
  .contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 3%;
  min-height:0vh;
  gap: 50px;
}
  
  } 