
/*------------ slider----------- */
.hero-contact-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/contact-us-2.jpg') center/cover no-repeat;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 5;
  animation: fadeInUp 1.2s ease forwards;
}

.cursor {
  color: #00e0ff;
  animation: blink 0.8s infinite;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 500px;
  color: white;
  margin: 20px 0 30px;
  position: relative;
  z-index: 5;
}

.btn-gradient {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  border: none;
  transition: all 0.4s;
  z-index: 5;
}
.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,198,255,0.6);
}

.glass-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
  max-width: 360px;
  animation: floatCard 5s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

.contact-item i {
  font-size: 22px;
  color:white;
}
.contact-item span { font-size: 12px; color: white !important; }
.contact-item p { margin: 0; font-size: 15px; color:white; }

.floating-icons i {
  position: absolute;
  font-size: 50px;
  color: rgba(0,224,255,0.2);
  animation: floatIcons 6s ease-in-out infinite;
}
.floating-icons i:nth-child(1){ top: 20%; left: 10%; animation-delay: 0s;}
.floating-icons i:nth-child(2){ top: 60%; left: 20%; animation-delay: 2s;}
.floating-icons i:nth-child(3){ top: 40%; left: 70%; animation-delay: 4s;}
.floating-icons i:nth-child(4){ top: 75%; left: 50%; animation-delay: 1s;}

@keyframes fadeInUp { from {opacity:0; transform: translateY(40px);} to {opacity:1; transform: translateY(0);} }
@keyframes blink { 0%,50%,100%{opacity:1;} 25%,75%{opacity:0;} }
@keyframes floatCard {0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
@keyframes floatIcons {0%,100%{transform:translateY(0);}50%{transform:translateY(-20px);}}
/*------------ slider end----------- */


/*----------- Questions----------- */
.faq-pro {
  padding: 90px 0;
  background: linear-gradient(135deg, #0c1320, #0f1c30);
  color: #fff;
}

/* HEADER */
.faq-header h2 {
  font-weight: 800;
  margin-top: 12px;
  color: white;
}

.faq-header p {
  max-width: 600px;
  margin: 10px auto 0;
  opacity: 0.85;
  color: white;
}

.faq-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  background: #00e5ff;
  color: #000;
  border-radius: 50px;
}

/* FAQ CARD */
.faq-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  height: 100%;
}

.faq-card:hover {
  transform: translateY(-6px);
  background: rgba(0,229,255,0.15);
}

.faq-icon {
  min-width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00e5ff, #0077ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
}

.faq-content h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-content p {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

/* CTA */
.faq-cta {
  margin-top: 60px;
}

.faq-cta h4 {
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #00e5ff, #0077ff);
  color: #000;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  transform: translateX(6px);
}
/*----------- Questions end----------- */

/*------------ info----------- */
.contact-hero-pro {
  padding: 80px 0;
  background: #0c1320;
  color: #fff;
}

/* LEFT IMAGE */
.contact-image-box {
  height: 100%;
  background: url('../images/dmes.png') center/cover no-repeat;
  position: relative;
  border-radius: 18px 0 0 18px;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(15,52,96,0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-content i {
  font-size: 55px;
  color: #00e5ff;
}

.image-content h3 {
  margin-top: 15px;
  font-weight: 700;
}

.image-content p {
  opacity: 0.85;
}

/* RIGHT INFO */
.contact-info-pro {
  padding: 60px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 0 18px 18px 0;
}

.mini-tag {
  display: inline-block;
  background: #00e5ff;
  color: #000;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-pro h2 {
  font-weight: 800;
  margin-bottom: 20px;
}

.desc {
  opacity: 0.85;
  margin-bottom: 30px;
}

/* INFO CARDS */
.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  display: flex;
  gap: 15px;
  background: rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(0,229,255,0.15);
  transform: translateY(-4px);
}

.info-card i {
  font-size: 26px;
  color: #00e5ff;
}

.info-card h6 {
  margin: 0;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

/* BUTTON */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #00e5ff, #0077ff);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateX(6px);
}
/*------------ info END----------- */

/*------------ CONTACT SECTION -----------*/
.contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
}

/* FORM CARD */
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.contact-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-card-header i {
  font-size: 44px;
  color: #0d6efd;
}

.contact-card-header h3 {
  font-weight: 700;
  margin-top: 10px;
}

.contact-card-header p {
  font-size: 15px;
  color: #6c757d;
}

/* INPUTS */
.contact-card .input-group-text {
  background: #f1f4f9;
  border: none;
  color: #0d6efd;
}

.contact-card .form-control,
.contact-card .form-select {
  border: none;
  background: #f1f4f9;
  padding: 12px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
  box-shadow: 0 0 0 2px rgba(13,110,253,0.25);
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #0d6efd, #084298);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13,110,253,0.35);
}

/* TRUST */
.contact-trust {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  font-size: 14px;
  color: #6c757d;
}

/* INFO CARD */
.contact-info-card {
  background: linear-gradient(135deg, #0b3c5d, #0d6efd);
  color: #fff;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.contact-info-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 15px;
  opacity: 0.9;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.contact-info-list i {
  font-size: 20px;
  margin-right: 12px;
  color: #fff;
}

.contact-info-cta .btn {
  border-radius: 50px;
  font-weight: 600;
}

/* MOBILE */
@media(max-width: 768px){
  .contact-card,
  .contact-info-card{
    padding: 30px 25px;
  }
}
