



/* ====== ABOUT US HERO SECTION ====== */

/* Background + Animations */
@keyframes fadeInBg {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1366&q=80") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeInBg 1.5s ease-in-out forwards;
  overflow: hidden;
}

/* Dark overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Brush stroke divider at the bottom */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://ibb.co/rV0BRfW') repeat-x bottom;
  background-size: contain;
  z-index: 2;
}

/* Text content styling */
.about-hero-content {
  position: relative;
  z-index: 3;
  animation: slideUp 1.2s ease-out forwards;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero h1 {
    font-size: 2.6rem;
  }

  .about-hero p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 65vh;
    padding: 0 20px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
}
.faq-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #d8232a;
  border: none;
  margin-right: 10px;
  vertical-align: middle;
  animation: expandLine 1.2s ease-in-out;
}

@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to { width: 40px; opacity: 1; }
}


.faq-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-left,
.faq-right {
  flex: 1 1 48%;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.faq-left:hover,
.faq-right:hover {
  transform: translateY(-5px);
}

.faq-left small {
  color: #d8232a;
  letter-spacing: 2px;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 2.2rem;
  margin: 10px 0 20px;
  color: #222;
}

.faq-left p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #222;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #d8232a;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Right Side */
.faq-right h3 {
  font-size: 1.6rem;
  color: #d8232a;
  margin-bottom: 15px;
}

.faq-right p {
  margin-bottom: 25px;
  color: #222;
  line-height: 1.6;
  font-size: 1.2rem;
}

.faq-form input,
.faq-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.faq-form button {
  background: #d8232a;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-form button:hover {
  background: #b61b22;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .faq-wrapper {
    flex-direction: column;
  }
}

/* faq que/ans */

.benefits-section {
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.benefits-image {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 15px;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.benefits-image:hover img {
  transform: scale(1.1);
}

.benefits-content {
  flex: 1 1 45%;
}

.benefits-content h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
}

.benefits-content h2 {
  color: #d8232a;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefits-content p {
  color: #222;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Accordion */
.accordion-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #d8232a;
}

.icon {
  font-size: 20px;
  color: #d8232a;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  color: #555;
  font-size: 1rem;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  opacity: 1;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-container {
    flex-direction: column;
  }
  .benefits-image,
  .benefits-content {
    flex: 1 1 100%;
  }
}

/* why us */

.why-choose-section {
  background: #f9f9f9;
  padding: 90px 10%;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.why-header h5 {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
}

.why-header h2 {
  color: #d8232a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 340px;
  transition: all 0.4s ease;
}

.why-card i {
  font-size: 40px;
  color: #d8232a;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.why-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-card p {
  color: #666;
  font-size: 15px;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-card:hover i {
  transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }
}














