.elementor-59 .elementor-element.elementor-element-ac4de57:not(.elementor-motion-effects-element-type-background), .elementor-59 .elementor-element.elementor-element-ac4de57 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-59 .elementor-element.elementor-element-ac4de57{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-59 .elementor-element.elementor-element-ac4de57 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-af8a818 *//* ===== SECTION ===== */
.contact-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* ===== ORBITS ===== */
.orbits {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.orbits span {
  position: absolute;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 1%;
  animation: rotateOrbit linear infinite;
}

.orbits span:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -150px;
  animation-duration: 25s;
}

.orbits span:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  animation-duration: 18s;
}

.orbits span:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  animation-duration: 12s;
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.contact-header h1 {
  font-size: 42px;
  font-weight: 700;
  color:#fff;
}

.contact-header span {
  color: #f5c14b;
}

.contact-header p {
  color: #ccc;
  margin-top: 10px;
}

/* ===== CONTAINER ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===== FORM ===== */
.form-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
}

.form-box h3 {
  font-size: 22px;
    color:#f5c14b;

}

.sub-text {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 15px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.row {
  display: flex;
  gap: 10px;
}

textarea {
  height: 100px;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(to right, #5a6cff, #3b82f6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* ===== CONTACT INFO ===== */
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color:#f5c14b;
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.info-item span {
  font-size: 30px;
}

.info-item strong {
  display: block;
}

.info-item p {
  color: #ccc;
  font-size: 13px;
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  .contact-header h1 {
    font-size: 28px;
  }
}/* End custom CSS */