    /* Background Image */
    .membership-section {
      background-image: url(Assets/images/bg.jpg);
      background-size: cover;
      padding: 200px 15px 80px 15px ;
      /* border-radius: 20px; */
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
      /* padding: 60px 40px; */
    }

    .membership-title {
      color: #8B4513;
      font-weight: 700;
      margin-bottom: 25px;
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .membership-text p {
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 15px;
    }

    .membership-text .highlight {
      color: #e4a11b;
      font-weight: 600;
    }

    .membership-images img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease;
    }

    .membership-images img:hover {
      transform: scale(1.03);
    }

    .membership-plans {
      margin-top: 35px;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .membership-features {
      margin-top: 20px;
      text-align: left;
    }

    .membership-features ul {
      list-style: disc;
      margin-left: 30px;
      line-height: 1.8;
    }

    /* Responsive */
    @media (max-width: 767px) {
      .membership-section {
        padding: 60px 15px;
      }
      .membership-title {
        font-size: 1.5rem;
      }
      .membership-images img {
        height: 180px;
      }
    }

    /* Project Tag */
    .project-tag {
      text-align: center;
      margin-top: 50px;
      color: #777;
      font-style: italic;
    }

.membership-cards-section {
  background: url('Assets/images/bg.jpg') center/cover no-repeat;
  position: relative;
}
.membership-cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}
.membership-cards-section .container {
  position: relative;
  z-index: 2;
}
.glass-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  height: 100%;
}
.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.glass-card ul {
  list-style: disc;
  margin-left: 20px;
  line-height: 1.8;
}
.btn {
  border-radius: 50px;
}
.call-ethos-section {
  background-image: url('Assets/images/bg.jpg'); /* You can replace it yourself */
  background-size: cover;
  background-position: center;
  color: #000;
}

.call-ethos-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 15px;
}

.call-ethos-section h4 {
  color: #4a2e00;
  font-size: 2  rem;
}

.call-ethos-section img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}


    .details-section {
     background-image: url(Assets/images/bg.jpg);
      background-size: cover;
      font-family: 'Poppins', sans-serif;
      padding-top: 100px;
      /* max-width: 1100px; */
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .details-section img {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
    }
    .details-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .details-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #ddd;
    }
    @media (max-width: 768px) {
      .details-section {
        flex-direction: column;
        text-align: center;
      }
    }
