/* Paragraph base style */
.footer-one__bottom-text p {
  margin: 0;
  font-size: 14px;        /* 👈 normal footer font size */
  color: #ffffff;
}

/* Company name (Right Express) */
.footer-company {
  color: #920d0d;
  text-decoration: none;
  font-weight: 500;
}

.footer-company:hover {
  text-decoration: underline;
}

/* Separator spacing */
.footer-separator {
  margin: 0 40px;         /* 👈 gap control */
  color: #be1010;
}

/* 🔥 ONLY Neotech IT Services */
.neotech-link {
  color: #1d076e;         /* 👈 Neotech ka color */
  font-size: 16px;        /* 👈 ONLY Neotech font size */
  font-weight: 600;
  text-decoration: none;
}

.neotech-link:hover {
  color: #4608f0;         /* hover color */
  text-decoration: underline;
}



/* Loader */
.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Result message */
.result {
    margin-top: 12px;
    font-weight: 600;
    color: green;
    display: none;
}

/* Mobile spacing fix */
@media (max-width: 575px) {
    .input-box {
        margin-bottom: 15px;
    }

    .why-choose-one__form-btn button {
        width: 100%;
        text-align: center;
    }
}





.re-contact-pro {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 2400px;
  margin: auto;
}

.re-contact-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card */
.re-contact-pro-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.re-contact-pro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Red accent */
.re-contact-pro-card .accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d90429;
  border-radius: 4px 0 0 4px;
}

/* Icon */
.re-contact-pro-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d90429;
  font-size: 20px;
  flex-shrink: 0;
}

/* Content */
.re-contact-pro-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.re-contact-pro-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.re-contact-pro-card a,
.re-contact-pro-card span {
  font-size: 15px;
  font-weight: 600;
  color: #d90429;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 576px) {
  .re-contact-pro-card {
    padding: 22px;
  }
}







.management-section {
  padding: 70px 20px;
  background: #d8d6d6;   /* Black Background */
}

.container1 {
  max-width: 2400px;
  margin: auto;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid red;
  transition: 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,0,0,0.3);
}

.profile-card.reverse {
  flex-direction: row-reverse;
}

.profile-img img {
  width: 260px;
  border-radius: 8px;
  border: 3px solid red;
}

.profile-content h2 {
  color: rgb(178, 21, 21);
  margin-bottom: 15px;
}

.profile-content p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    text-align: center;
  }

  .profile-card.reverse {
    flex-direction: column;
  }

  .profile-img img {
    width: 100%;
    max-width: 280px;
  }
}
