      /* ----------------------------Navbar------------------------- */
      .custom-navbar {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1200px;
      background: white;
      border-radius: 50px;
      padding: 10px 30px;
      z-index: 999;
      transition: all 0.4s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .custom-navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    .logo-container {
      position: relative;
      width: 40px;
      height: 40px;
    }
    .logo-circle {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .menu-links a {
	text-decoration: none;
	color: black;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
}

/* --------Dropdown--------- */
  .navbar-collapse {
  transition: height 0.3s ease;
}

.dropdown-menu {
  transition: opacity 0.3s ease;
}

.dropdown-toggle::after {
  content: none !important;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 0;
	align-items: center;
}

.dropdown-item:hover {
    background: transparent;
    margin-left: 3px;
    overflow: hidden;
    color: #b85c5c;
    transition: all 0.3s;
    font-weight: 550;
}



.social-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #b85c5c;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

body {
  background: #EFEBE4;
  /* background: url('./pexels-francesco-ungaro-281260(1).jpg'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.text-shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.btn-gif {
  background: #ffffffe9;
  /* background-image: url('./BG-BTN.gif'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s;
}
.btn-gif:hover {
  background: #ffffff2d;
  color: #FFF;
  transform: translateY(-2px);
}

h2, h3, h4, h5 {
  color: #1d0f5c;
  font-weight: 700
}

.shadow-head {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

	.facility-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
}

.facility-card .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.59); /* semi-transparent overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.facility-card .icon {
  width: 48px;
  height: auto;
}

.facility-card .divider {
  width: 30px;
  height: 4px;
  background-color: #8cc63f;
  margin-top: 6px;
  border-radius: 2px;
}

/* -----------------Footer---------------------- */

  .footer-with-video {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 50px 0;
    z-index: 1;
  }

  .footer-with-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6; /* optional for video visibility */
  }

  .footer-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #1c468b, #6397d0, #1c468b);
    opacity: 0.8;
    z-index: 1;
  }

  .footer-content {
    position: relative;
    z-index: 2;
  }



  .back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #ffc107;
	color: white;
	width: 40px;
	height: 40px;
	padding: 10px 14px;
	border-radius: 50%;
	display: none;
	z-index: 999;
	transition: all 0.4s;
}
.back-to-top::after {
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 1;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}



/* ----------------------Page Design------------------------- */

.hero-about {
	/* height: 55vh; */
	min-height: 50px;
	background: #EFEBE4;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 160px auto 80px auto;
}

.hero-title h1 {
    	text-transform: uppercase;
	color: transparent;
	font-weight: 700;
	background: linear-gradient(180deg,#b85c5c 0%,#b85c5c 55%,rgb(29, 15, 92) 100%) no-repeat;
	/* background: linear-gradient(180deg,#b46f9d 0%,#b46f9d 55%,rgba(220,118,3,0.39) 100%) no-repeat; */
	-webkit-background-clip: text;
	line-height: 1;

}

.hero-title {
	position: relative;
	z-index: 5;
	text-align: center;

}

.hero-title h6 {
    color: #1d0f5c;
    font-weight: 600;
    text-transform: capitalize;
}

.yellow-divider {
    width: 900px;
    height: 5px;
    /* background-color: #ffc107; */
    background: linear-gradient(180deg,#b85c5c 0%,#b85c5c 55%,rgb(29, 15, 92) 100%) no-repeat;
    margin: 10px auto 0 auto;
    border-radius: 20px;
}


.style-gtext {
    background: linear-gradient(180deg,#b85c5c 0%,#b85c5c 55%,rgb(29, 15, 92) 100%) no-repeat;
}



.intro-sec ul li {
	line-height: 18px;
	background: url(../images/icons/right-arrow_2026844.png) no-repeat left 2px;
	padding: 5px 11px 15px 31px;
	list-style: none;
	margin: 0;
	vertical-align: middle;
	/* font-size: 14px; */
	font-weight: 400;
	color: #312f2c;

}

/* ---------------------------Accordian--------------------------------------- */

 .accordion {
    border: none;
  }

  .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .accordion-item:first-of-type,
  .accordion-item:first-of-type .accordion-button {
    border-radius: 10px;
  }

  .accordion-button .hero-about {
display: flex;
align-items: center;
width: 100%;
font-size: 1rem;
font-weight: 600;
color: #000;
background-color: #ffffff;
border: none;
border-radius: 10px;
/* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
position: relative;
overflow: hidden;
transition: all 0.4s ease;
}

.accordion-button span {
position: relative;
z-index: 1;
transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.accordion-button:hover span {
transform: translateX(5px);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


.accordion-button:not(.collapsed) {
background-color: #1d0f5c;
color: #fff;
border-radius: 10px;
}

.accordion-button:focus {
outline: none;
box-shadow: none;
}

  .accordion-item:last-of-type .accordion-button.collapsed {
border-radius: 10px;
}

.accordion-button:not(.collapsed)::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* ----------------Audio Mesasage------------------ */

.hym_songs {
	width: 100%;
	text-align: center;
	padding: 15px 0px;
	box-sizing: border-box;
}
.hym_songs audio {
	width: 100%;
	max-width: 600px;
  border-radius: 10px;
}


/* ----------------------Table Model----------------------------- */

      .table-wrapper {
      /*border: 2px solid #1a2e5c;*/
      /* border-radius: 18px; */
      overflow: hidden;
      padding: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      background-color: white;
    }

    .custom-table {
      margin: 0;
      border: none;
    }

    .custom-table thead {
      background: linear-gradient(90deg, #1a2e5c, #f9d07a);
      color: #333;
      transition: background 0.6s ease-in-out;
    }



.custom-table th {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 1rem;
	text-align: center;
	border-bottom: 2px solid #b85c5c;
	background: #1d0f5c;
	color: #fff;
}
    .custom-table td {
      text-align: center;
      vertical-align: middle;
      padding: 0.9rem;
      font-size: 0.9rem;
      border-bottom: 1px solid #eee;
    }


    /* ------------------Button------------------- */
    .read-more {
      background: linear-gradient(180deg,#b85c5c 0%,#b85c5c 55%,rgb(29, 15, 92) 100%) no-repeat;
      color: white;
      text-decoration: none;
      padding: 8px 20px;
      border-radius: 40px;
      border: 2px solid #ffffff;
      transition: all 0.3s;
    }

    .read-more:hover {
        background: #ffc107;
        color: #1d0f5c;
        border: 1px solid #1d0f5c;
        border-radius: 10px;
        font-weight: 600;
    }


/* -------------------------Media Query------------------- */

  @media (min-width: 992px) {
  .hero {
    height: 1300px;
  }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
  }

  .yellow-divider {
    width: 100%;
  }

}




      @media (max-width: 575.98px) {
    .about-img {
      width: 100% !important;
      margin-top: 95%;

    }
  }
    
  @media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-toggle::after {
    transform: rotate(90deg);
  }
}


  @media (max-width: 575.98px) { 
    .logo-mobile {
      width: 70px !important;
      margin-left: 0 !important; /* Optional: reset margin for mobile */
    }

  }

