* {
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #FCDD06;
  --secondary-color: #FBA919;
  --third-color: #efda20;
  --white-color: #ffff;
  --black-color: #0000;
}

/* SECTION */
.contact-section {
  position: relative;
  background: var(--third-color);
  padding: 120px 0;
  overflow: hidden;
}


.contact-section::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(#fff2cf 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
}


.contact-section::after {
  content: '';
  position: absolute;
  right: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: linear-gradient(180deg, #fff2e1, #ffefe8);
  border-radius: 50% 0 50% 50%;
}


.contact-content {
  position: relative;
  z-index: 2;
}

/* INNER RECTANGLE SHAPE */
.contact-content::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: linear-gradient(180deg, #facc15, #ffffff);
  border-radius: 20px;
  opacity: 0.8;
  z-index: -1;
}

/* TEXT */
.contact-content h2 {
  font-size: 44px;
  font-weight: 700;
  color: #2b1a5a;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  color: #4b3c7a;
  line-height: 1.6;
}


@media (max-width: 992px) {
  .contact-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-content h2 {
    font-size: 30px;
  }

  .contact-content p {
    font-size: 16px;
  }

  .contact-section::after {
    width: 260px;
    height: 260px;
    right: -100px;
  }
}

@media (max-width: 576px) {

  .contact-section::before,
  .contact-content::after {
    display: none;
  }
}



/* =============================contact form area ======================== */


/* Section */
.contact-area {
  background: #fff !important;
}

/* Badge */
.badge-pill {
  background: #ece9ff;
  color: #6a5af9;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* Heading */
.main-heading {
  font-size: 40px;
  font-weight: 800;
  color: #1f1f1f;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #6a5af9;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-box h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

/* Form Card */
.form-card {
  background: linear-gradient(135deg, #ffee56, #fdd360);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid grey !important;
}

.form-card h3 {
  font-weight: 700;
  color: #1f1f1f;
}

/* Inputs */
.form-control {
  border-radius: 10px;
  padding: 12px;
  border: none;
}

.form-control:focus {
  box-shadow: none;
  outline: 2px solid #6a5af9;
}

/* Button */
.send-btn {
  background: #000000 !important;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
}

.send-btn:hover {
  background: #e69447 !important;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) { 
  .main-heading {
    font-size: 32px;
  }

  .form-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 28px;
  }
}



/* =====================map section area ==================== */

/* MAP SECTION */
.map-section {
  background: #fff2ae;
}

.map-heading {
  font-size: 36px;
  font-weight: 800;
  color: #1f1f1f;
}

/* Map Box */
.map-box {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .map-heading {
    font-size: 28px;
  }
  .map-box {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .map-box {
    height: 280px;
  }
}
