/* ---------- Global ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Background slides */
.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: slideShow 24s infinite; /* Increased duration to 24s */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: fade 24s infinite;
}

/* Corrected animation delays for 4 slides */
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 6s;
}
.slide:nth-child(3) {
  animation-delay: 12s;
}
.slide:nth-child(4) {
  animation-delay: 18s;
}

/* Fade animation keyframes */
@keyframes fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes fade {
  0%, 33.33% { opacity: 1; }
  40%, 100% { opacity: 0; }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  background: #004c3f;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #037c63;
}
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #faf9f8;
  color: #333;
}

/* Section Container */
.choose {
  padding: 33px 10%;
  background: #fdfcfb;
}

.choose-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.choose-header {
  text-align: center;
  margin-bottom: 50px;
}

.choose-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.choose-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Main content layout */
.choose-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left grid */
.choose-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Cards */
.choose-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.choose-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.choose-card h3 {
  font-size: 1.2rem;
  margin: 15px 15px 8px 15px;
  color: #222;
  font-weight: 600;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 15px 15px 15px;
  line-height: 1.5;
}

.choose-card a {
  display: inline-block;
  margin: 0 15px 20px 15px;
  font-size: 0.95rem;
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.choose-card a:hover {
  color: #005fa3;
}

/* Right side column */
.choose-side {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Side Boxes */
.choose-side-box {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-side-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.side-icon {
  font-size: 28px;
  color: #0077cc;
}

.choose-side-box h4 {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
}

.choose-side-box a {
  display: block;
  font-size: 0.9rem;
  color: #0077cc;
  text-decoration: none;
  margin-top: 3px;
}

.choose-side-box a:hover {
  text-decoration: underline;
}

/* ===== Global Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== Other Facilities Section ===== */
.facilities {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* ===== Background Video ===== */
.facilities .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: c;
  z-index: 0;
}

/* ===== Overlay Layer ===== */
.facilities .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* ===== Content Container ===== */
.facilities-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Section Heading ===== */
.facilities-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.facilities-content p {
  font-size: 1rem;
  color: #e5e5e5;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ===== Facilities Grid ===== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== Facility Card ===== */
.facility-box {
  background: linear-gradient(  rgba(8, 8, 22, 0.12) , rgba(42, 104, 148, 0.12) ), rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  text-align: center;
}

.facility-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

/* ===== Icons ===== */
.facility-box i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

/* ===== Facility Title ===== */
.facility-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

/* ===== Facility Description ===== */
.facility-box p {
  font-size: 0.95rem;
  color: #f2f2f2;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ===== Trust Section ===== */
.trust {
  background: #fff;
  color: #333;
  padding: 50px 20px;
  text-align: center;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Headings ===== */
.trust-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.trust-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ===== Feature Cards ===== */
.trust-features {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
}

/* ===== Individual Card ===== */
.trust-card {
  flex: 1;
  min-width: 300px;
  color: #fff;
  border-radius: 14px;
  padding: 45px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== Gradient Backgrounds ===== */
.gradient1 {
  background: linear-gradient(135deg, #250d0d, #185a9d);
}

.gradient2 {
  background: linear-gradient(135deg, #250d0d, #185a9d);
}

.gradient3 {
  background: linear-gradient(135deg, #250d0d, #185a9d);
}

/* ===== Hover Animation ===== */
.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* ===== Icons ===== */
.trust-card i {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

/* ===== Texts ===== */
.trust-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.trust-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f8f8f8;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #f9f8f7;
  color: #333;
}

.faq-section {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.faq-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '\25BC';
  font-size: 0.9rem;
  color: #555;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  text-align: left;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

.faq-answer p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 10px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 992px) {
  .trust {
    padding: 40px 20px;
  }

  .trust-features {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .trust {
    padding: 40px 15px;
  }

  .trust-title {
    font-size: 1.8rem;
  }

  .trust-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .trust-features {
    flex-direction: column;
    align-items: center;
  }

  .trust-card {
    width: 100%;
    max-width: 350px;
  }
}


/* ===== Responsive Design ===== */

/* Tablets */
@media (max-width: 992px) {
  .facilities-content {
    padding: 80px 20px;
  }

  .facilities-content h2 {
    font-size: 2rem;
  }

  .facilities-content p {
    font-size: 0.95rem;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .facilities-content {
    padding: 60px 15px;
  }

  .facilities-content h2 {
    font-size: 1.8rem;
  }

  .facilities-content p {
    font-size: 0.9rem;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-box {
    padding: 25px 15px;
  }

  .facility-box i {
    font-size: 1.8rem;
  }
}

/* Responsive Design */

/* Tablet view */
@media (max-width: 992px) {
  .choose-content {
    flex-direction: column;
  }

  .choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .choose-side {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .choose-side-box {
    flex: 1 1 45%;
  }
}
/* ===== Reset & Global ===== */

/* Mobile view */
@media (max-width: 600px) {
  .choose {
    padding: 50px 5%;
  }

  .choose-title {
    font-size: 1.6rem;
  }

  .choose-subtitle {
    font-size: 0.95rem;
  }

  .choose-content {
    gap: 30px;
  }

  .choose-side {
    flex-direction: column;
  }

  .choose-side-box {
    flex: 1 1 100%;
  }

  .choose-card img {
    height: 160px;
  }

  .choose-card h3 {
    font-size: 1.1rem;
  }

  .choose-card p {
    font-size: 0.9rem;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 360px) {
 .hero-slides{
    width: 49vh;
 }
}

