.sub-mg {
  background: black !important;
  color: white !important;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* Remove unnecessary shadows & borders */
* {
  border: 0;
  outline: none !important;
}

/* ------------------------------
   NAVBAR SPACING FIX
--------------------------------*/
.navbar {
  padding: 15px 40px !important; /* reduced from typical 30–60px */
}

.navbar .nav-item {
  margin-left: 18px; /* tighter, clean spacing */
}

/* ------------------------------
   CONTACT LEFT SECTION
--------------------------------*/
.sec-head {
  margin-top: -125px; /* reduced from big empty space */
}
.back-image {
  height: 15vh;
  min-height: 50px;
  overflow: hidden;
}
.sec-head h6 {
  font-size: 20px;
  letter-spacing: 2px;
}

.sec-head h2 {
  font-size: 52px; /* slightly smaller to match screenshot */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px; /* reduced */
}

.sec-head p {
  color: white !important;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 5px; /* less gap */
}

/* Tighten gap between text & form area */
.contact-section {
  padding-top: 40px !important;
}

/* ------------------------------
   FORM RIGHT SIDE – LESS SPACE
--------------------------------*/
form {
  margin-top: 10px; /* tightened */
}

form .form-group {
  background: black !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px !important; /* smaller padding */
  margin-bottom: 15px; /* reduced margin */
}

form input,
form textarea {
  background: transparent;
  font-size: 14px;
  // color: white !important;
}

form textarea {
  min-height: 180px; /* reduced */
}

/* Checkbox label */
form label {
  color: #ccc !important;
  font-size: 12.5px;
  line-height: 1.4;
}

/* Reduced checkbox spacing */
form .checkbox-area {
  margin-top: 8px;
  margin-bottom: 15px;
}

/* Submit Button */
.butn {
  padding: 12px 24px; /* smaller button */
  border-radius: 30px;
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  transition: 0.3s;
  font-weight: 500;
  margin-top: 10px; /* reduced */
}

.butn:hover {
  background: #fff !important;
  color: #000 !important;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.mt-160 {
  background: #0e0e0e;
  padding: 40px 0 10px; /* smaller top and bottom spacing */
}

.mt-160 .row {
  margin-bottom: 0; /* remove large gaps between columns */
}

/* Footer column titles */
footer h6 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Footer text + links */
footer p,
footer a {
  color: #bbb;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.5;
}

footer a:hover {
  color: #fff;
}

/* Remove extra spacing in contact address */
footer p:last-child {
  margin-bottom: 0 !important;
}

/* Footer Logo Area */
.footer-logo-wrapper {
  padding: 20px 0 10px; /* Tight spacing like screenshot */
  text-align: left;
}

.footer-logo-wrapper img {
  max-width: 180px;
}

/* Bottom copyright bar */
.sub-footer {
  border-top: 1px solid #222;
  padding: 12px 0; /* exact tight spacing */
  margin-top: 15px; /* small gap */
  text-align: center;
}

.sub-footer p {
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
  color: #ddd;
  margin: 0;
}
.hc h4,h1,h6 {
  font-size: 38px;
  color: #fff !important;
}
/* ------------ Responsive ------------ */
@media (max-width: 992px) {
  footer .col-lg-2,
  footer .col-lg-3,
  footer .col-lg-4 {
    margin-bottom: 30px;
    text-align: left;
  }

  footer .logo img {
    margin-bottom: 20px;
  }

  footer .sub-footer .text-right,
  footer .copyright {
    text-align: left !important;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  footer .sub-footer p {
    text-align: center;
  }

  footer .logo {
    text-align: center;
    margin-bottom: 20px;
  }
}
/* progress circle container (fixed corner) */
.progress-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  z-index: 9999;
  cursor: pointer;
}
svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}
/* background circle */
.bg {
  stroke: rgba(255, 255, 255, 0.2);
}
/* progress circle */
.progress {
  stroke: #00bfff;
  stroke-dasharray: 251; /* circumference = 2 * π * r (r=40) */
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 0.1s linear;
}
