
	/* === WHY CHOOSE US SECTION (White Background + Black Text) === */
.why-choose-us-section {
  background: #ffffff !important;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 50px;
  color: #000000; /* main text color */
}

.why-choose-us-section h2 {
  color: #000000;
  font-size: 2.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-us-section .intro {
  color: #333333;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Card container */
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

/* Individual cards */
.why-card {
  background: #f9f9f9;
  border-radius: 15px;
  width: 250px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  color: #000000;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}

.why-card i {
  font-size: 18px;
  color: #007bff; /* accent color for icons */
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000000;
}

.why-card p {
  font-size: 0.95rem;
  color: #333333;
}

/* Contact info card */
.why-card.contact-info {
  background: #f5f5f5;
  color: #000000;
}

.why-card.contact-info hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}

.why-card.contact-info a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.why-card.contact-info a:hover {
  text-decoration: underline;
  color: #0056b3;
}

	
	
	
	
	
	
h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    th, td {
      border: 1px solid #ddd;
      padding: 12px 15px;
      text-align: left;
      vertical-align: top;
    }
    th {
      background-color: #f2f2f2;
      font-weight: bold;
    }
    tr:hover {
      background-color: #f9f9f9;
    }
    a {
      color: #0073e6;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }	
	
	
	
	
	.marquee-container {
      width: 100%;
      overflow: hidden;
      background: #fff;
      border: 2px solid #ddd;
      padding: 10px 0;
      position: relative;
    }

    .marquee {
      display: flex;
      width: max-content;
      animation: scroll 10s linear infinite; /* slow speed (increase value = slower) */
    }

    .marquee img {
      height: 210px;
      width: auto;
      margin: 0 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Duplicate marquee for continuous loop */
    .marquee::after {
      content: "";
      display: flex;
    }

    /* Pause on hover (optional) */
    .marquee-container:hover .marquee {
      animation-play-state: paused;
    }

    /* Trick: duplicate content for infinite loop */
    .marquee > * {
      flex-shrink: 0;
    }