/* ===============================
   OUR SERVICES PAGE STYLES (UPDATED + RENAMED)
   =============================== */

/* ===== BASE LAYOUT ===== */
.services-invite-section,
.sunday-section,
.midweek-section,
.friday-section,
.online-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ===== INVITE SECTION ===== */
.services-invite-section {
  background: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.services-invite-content {
  max-width: 800px;
  margin: 0 auto;
}

.invite-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
}

.invite-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

.invite-btn-primary,
.invite-btn-secondary {
  display: inline-block;
  background: #f4b400;
  color: #111;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.invite-btn-primary:hover,
.invite-btn-secondary:hover {
  background: #111;
  color: #fff;
}

/* ===== SUNDAY SECTION ===== */
.sunday-section {
  position: relative;
  background: #111;
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sunday-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 1400px;
}

.sunday-image {
  width: 48%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sunday-image:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.sunday-text-block {
  text-align: center;
  color: #fff;
  margin-top: 50px;
  max-width: 700px;
}

.sunday-text-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f4b400, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sunday-text-block p {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

/* Decorative Floating Circle */
.sunday-circle-decor {
  position: absolute;
  bottom: -40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border: 3px solid #f4b400;
  border-radius: 50%;
  opacity: 0.8;
  animation: sundayCircleFloat 4s ease-in-out infinite;
}

@keyframes sundayCircleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== MIDWEEK SECTION ===== */
.midweek-section {
  background: #ffffff;
  padding: 120px 20px;
}

.midweek-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.midweek-text {
  flex: 1;
  min-width: 300px;
}

.midweek-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.midweek-text p {
  color: #444;
  line-height: 1.7;
}

.midweek-image {
  width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

/* ===== FRIDAY SECTION ===== */
.friday-section {
  background: linear-gradient(180deg, #faf5ef, #fff);
  padding: 120px 20px;
}

.friday-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.friday-text {
  flex: 1;
  min-width: 300px;
}

.friday-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.friday-text p {
  color: #444;
  line-height: 1.7;
}

.friday-image {
  width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

/* ===== ONLINE SECTION ===== */
.online-section {
  background: #111;
  color: #fff;
  padding: 100px 20px;
}

.online-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
}

.online-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.online-text {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.online-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.online-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.online-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .sunday-text-block h2 {
    font-size: 2.1rem;
  }

  .sunday-text-block p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .sunday-wrapper {
    flex-direction: column;
  }

  .sunday-image {
    width: 90%;
  }

  .midweek-content,
  .friday-content,
  .online-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .midweek-text,
  .friday-text,
  .online-text {
    text-align: center;
  }

  .midweek-image,
  .friday-image {
    width: 90%;
  }
}


.ourServices_img_Section {
  width: 100%;
  max-width: 1500px;
  height: 100%;
  z-index: 2;
  /* filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.4)); */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ourServices-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* matches desktop image dimensions (example: 1920x1080) */
  background-image: url("../images/ourServices_Main.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: sticky;

  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* ✅ Responsive (swap image + adjust ratio for mobile) */
.scrollable-parent {
  height: 100vh; /* Or a specific height that allows content to overflow */
  overflow-y: scroll; /* Add a vertical scrollbar when content overflows */

    -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
.scrollable-parent::-webkit-scrollbar {
  display: none;
}