/* Main Container */
#main-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 166, 0, 0.384);
}

/* Header Section */
.pra {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-heading {
  font-size: 3rem;
  font-weight: bold;
  color: #222;
}

.clients {
  font-size: 1.5rem;
  color: #555;
  margin-top: 10px;
}

/* Cards Container */
#main-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 250px;
  justify-content: center;
}

/* Individual Card */
.card {
  width: 280px;
  padding: 20px;
  background-color: rgba(255, 0, 0, 0.253);
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  border-radius: 40px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Quote mark */
.quote {
  font-size: 50px;
  color: #555;
  margin-bottom: 10px;
}

/* Testimonial Text */
.lorem {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

/* Horizontal Line */
.line {
  width: 50px;
  margin: 10px auto;
  border: none;
  border-top: 2px solid #000;
}

/* Image */
.testi-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px 0;
}

/* Client Name */
.name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  font-style: italic;
}

/* footer question-2 */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
}

.main-section {
  flex: 1;
  text-align: center;
  background-color: #f0f2f5;
}

/* --- Footer --- */
.footer {
  background: #3A0519;
  color: #bfbfbf;
  padding: 60px 20px 30px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-col p {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col form {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.footer-col input {
  flex: 1;
  padding: 10px;
  border: 1px solid #7489C6;
  background: transparent;
  color: #fff;
  border-radius: 4px;
}

.footer-col input::placeholder {
  color: #ccc;
}

.footer-col button {
  background: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-col button:hover {
  background: #cecccc;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #afb6c7;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2c3550;
  margin-top: 40px;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-col form {
    flex-direction: column;
  }

  .footer-col input,
  .footer-col button {
    width: 100%;
  }
}
