/* ================= GLOBAL ================= */
body {
  padding-top: 70px;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fb;
  color: #1a1a1a;
  line-height: 1.6;
}

.section {
  padding: 70px 0;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

/* ================= HERO ================= */
.hero {
background: linear-gradient(135deg,#0e675f,#28868e, #44b2bc);
  color: #fff;  border-bottom: 1px solid #eee;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  font-weight: 600;
}

/* ================= CONTACT CARDS (TOP SMALL BOXES) ================= */
/* .contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  margin: 20px 0;
  transition: 0.3s;
} */

/* .contact-card:hover {
  transform: translateY(-5px);
} */

.icon-box {
  width: 60px;
  height: 60px;
  background: #eaf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 10px;
}

.icon-box i {
  font-size: 22px;
  color: #0d6efd;
}

/* ================= FORM ================= */
.form-box {
  position: relative;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-box h3 {
  font-size: 17px;
  font-weight: 600;
}

.form-box img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 1rem;
}

/* Inputs */
.form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

/* Button */
.submit-btn {
  background: linear-gradient(45deg, #0d6efd, #2563eb);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

/* ================= RIGHT PANEL ================= */
.info-box {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
  margin-bottom: 30px;
}

.info-item i {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 10px;
}

.info-item .title {
  color: #0d6efd;
  font-weight: 600;
}

.info-item h5 {
  font-weight: 500;
}

/* ================= GRID FIX ================= */
/* Fix your top cards alignment */
.col-md-4 {
  float: left;
  width: 33.33%;
}

/* Clear float */
.contact-section::after {
  content: "";
  display: block;
  clear: both;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

  .section-title {
    font-size: 32px;
  }

  .info-box {
    margin-top: 20px;
  }

  .col-md-4 {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
    text-align: center !important;
  }

  .hero p {
    text-align: center;
    font-size: 15px;
  }

  .form-box h3 {
    font-size: 18px;
    text-align: center;
  }

  .submit-btn {
    width: 100%;
  }

  .info-box {
    text-align: center;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .form-control {
    height: 45px;
  }
}