.elementor-1093 .elementor-element.elementor-element-193052c{--display:flex;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5681eca *//* ===========================
   CONTACT SECTION – NDM THEME
   =========================== */
.contact-section {
  padding: 80px 20px;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading */
.contact-section h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #9333ea, #3b82f6, #ec4899, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-subtext {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Cards */
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 35px 25px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45),
              0 0 20px rgba(147, 51, 234, 0.25);
}

/* Icons */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  transition: 0.3s;
}

.contact-card:hover .icon-circle {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(147, 51, 234, 0.5);
}

.icon-circle i {
  font-size: 1.5rem;
  color: #fff;
}

/* Text in cards */
.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 600px) {
  .contact-section h1 {
    font-size: 2.3rem;
  }

  .contact-subtext {
    font-size: 0.98rem;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
  }
}/* End custom CSS */