@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
 html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #000;
}

  
}

/* NAVBAR */
.custom-navbar {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

/* LOGO (BIGGER)   font-family: 'Poppins', sans-serif; */
.logo {
    width: 200px;
    height: 80px;
    
    
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 10px;
        margin-left: 20px;
    }
}
/* NAV LINKS */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 4px;
    position: relative;
    transition: 0.3s;
}

/* HOVER UNDERLINE */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ea512e;
    left: 50%;
    bottom: 0;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: #f15a29;
}

/* ACTIVE LINK */
.navbar-nav .nav-link.active {
    color: #ea512e;
    font-weight: 600;
}

/* ADMISSION BUTTON */
/*.admission-btn {
    background: #dc3545;
    color: #fff;
    padding: 8px 22px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    animation: blink 1.5s infinite;
    transition: 0.3s;
}

.admission-btn:hover {
    background: #b02a37;
    color: #fff;
}*/

.admission-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #ea512e;
  color: #ffffff !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}



.admission-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #f5890d;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.admission-btn:hover {
  color: #ffffff;
}

.admission-btn:hover::before {
  height: 100%;
}
/* BLINKING EFFECT */
/*@keyframes blink {
    0% { box-shadow: 0 0 0px rgba(220,53,69,0.6); }
    50% { box-shadow: 0 0 12px rgba(220,53,69,0.9); }
    100% { box-shadow: 0 0 0px rgba(220,53,69,0.6); }
}*/

/* MOBILE */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/* PINK BANNER */
.pink-banner {
   background: url("../img/hostel1.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #73548f; /* purple-pink mix */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* CONTENT */
.pink-banner-content h1 {
  color: white;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pink-banner-content p {
  color: #f5e9ff;
  font-size: 16px;
  max-width: 500px;
}

/* IMAGE */
.pink-banner-img {
  max-width: 100%;
  height: auto;
  animation: floatImage 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* BUTTON ALIGN */
.banner-btn {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* OPTIONAL BUTTON */
.optional-btn {
  background: #ff8fa3;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.optional-btn:hover {
  background: #ff6f91;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pink-banner {
    text-align: center;
  }

  .pink-banner-content h1 {
    font-size: 38px;
  }

  .banner-btn {
    justify-content: center;
  }
}
 /*amenities*/
=================================================*/
.activities-area {
  background-image: url(../img/activities-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
}

.single-activities {
  position: relative;
  margin-bottom: 30px;
}

.single-activities .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 30px;
  color: #1b0238;
  background-color: #ea512e;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: bold;
}

.single-activities .number span::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 1px solid #ea512e;
  border-radius: 50px;
  top: -5px;
  left: -5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-activities .number .bg-2 {
  background-color: #fdbea8;
}

.single-activities .number .bg-2::before {
  border: 1px solid #fdbea8;
}

.single-activities .number .bg-3 {
  background-color: #b6fdd6;
}

.single-activities .number .bg-3::before {
  border: 1px solid #b6fdd6;
}

.single-activities .number .bg-4 {
  background-color: #fd91a8;
}

.single-activities .number .bg-4::before {
  border: 1px solid #fd91a8;
}

.single-activities .number .bg-5 {
  background-color: #fce0ad;
}

.single-activities .number .bg-5::before {
  border: 1px solid #fce0ad;
}

.single-activities .number .bg-6 {
  background-color: #cca0fe;
}

.single-activities .number .bg-6::before {
  border: 1px solid #cca0fe;
}

.single-activities .activities-content {
  padding-left: 90px;
}

.single-activities .activities-content h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.single-activities .activities-content h3 a {
  color: #1b0238;
}

.single-activities .activities-content p {
  margin-bottom: 12px;
}

.single-activities .activities-content .activities-btn {
  font-size: 16px;
  color: #ea512e;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-activities:hover .number span {
  background-color: #f5890d;
  color: #ffffff;
}

.single-activities:hover .number span::before {
  border: 1px solid #f5890d;
}

.single-activities:hover .activities-content h3 a {
  color: #ea512e;
}

.single-activities:hover .activities-content .activities-btn {
  letter-spacing: 1px;
}

/*================================================
Facilities Area CSS
/*================================================
Activities Area (Facilities Look)
=================================================*/
.activities-area {
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* Card */
.single-activities {
  position: relative;
  margin-bottom: 35px;
}

/* Number Circle */
.single-activities .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 26px;
  color: #1b0238;
  background-color: #ea512e;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  transition: 0.4s ease;
}

/* Outer Ring */
.single-activities .number span::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 70px;
  border: 1px solid #ea512e;
  border-radius: 50%;
  top: -5px;
  left: -5px;
  transition: 0.4s ease;
}

/* Color Variants */
.single-activities .number .bg-2 { background: #fdbea8; }
.single-activities .number .bg-2::before { border-color: #fdbea8; }

.single-activities .number .bg-3 { background: #b6fdd6; }
.single-activities .number .bg-3::before { border-color: #b6fdd6; }

.single-activities .number .bg-4 { background: #fd91a8; }
.single-activities .number .bg-4::before { border-color: #fd91a8; }

.single-activities .number .bg-5 { background: #fce0ad; }
.single-activities .number .bg-5::before { border-color: #fce0ad; }

.single-activities .number .bg-6 { background: #cca0fe; }
.single-activities .number .bg-6::before { border-color: #cca0fe; }

/* Content */
.single-activities .activities-content {
  padding-left: 90px;
}

.single-activities .activities-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.single-activities .activities-content h3 a {
  color: #1b0238;
  transition: 0.3s ease;
}

.single-activities .activities-content p {
  color: #6b6b84;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Hover Effects */
.single-activities:hover .number span {
  background-color: #f5890d;
  color: #ffffff;
}

.single-activities:hover .number span::before {
  border-color: #f5890d;
}

.single-activities:hover .activities-content h3 a {
  color: #ea512e;
}


/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: #fdf9f4;
}

.partner-item img {
  width: auto !important;
  margin: auto;
  max-width: 170px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
}
/* HOSTEL ABOUT SECTION */
.hostel-about-section {
  background-color: white;
  padding: 70px 0;
  
}

/* Image Styling */
.hostel-image {
  position: relative;
  display: inline-block;
}

.hostel-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #f15a29;
}

/* Content */
.hostel-content .sub-title {
  color: #f15a29;
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
}

.hostel-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2d1b4e;
  margin-bottom: 20px;
}

.hostel-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #6b6b84;
  margin-bottom: 15px;
}

.hostel-name {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 700;
  color: #2d1b4e;
}

.hostel-tagline {
  color:#be5a71;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hostel-content h2 {
    font-size: 30px;
  }

  .hostel-image img {
    width: 250px;
    height: 250px;
  }
}


/* WHY CHOOSE US */
.why-choose-us {
  padding: 25px 0;
  background:#fdeee9;
}

.small-title {
  color:#be5a71;
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.why-choose-us h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2d1b4e;
}

/* BOX */
.choose-box {
  padding: 0 40px;
}

.choose-box .icon {
  font-size: 40px;
  color: #2d1b4e;
  margin-bottom: 15px;
}

.choose-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d1b4e;
}

.choose-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6b84;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 30px;
  }
  .choose-box {
    padding: 0 15px;
  }
}
.newsletter-area {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background: #f15a29;
}

.newsletter-area .container {
  max-width: 2500px;
}

.newsletter-area h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
}

.newsletter-area .button {
  background: #ea512e;
  color: #ffffff;
  padding: 14px 50px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.4s;
}

.newsletter-area .button:hover {
  background: #f5890d;
}
.footer-area {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background: #121212;
  color: #ffffff;
}
.footer-area h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-area h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #ea512e;
}
.single-footer-widget p {
  font-size: 15px;
  line-height: 1.8;
  color: #dcdcdc;
}

/* LINKS */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.quick-links li a:hover {
  color: #f5890d;
  padding-left: 5px;
}
.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 20px;
  font-size: 15px;
  color: #dcdcdc;
}

.footer-contact-info li i {
  color: #ea512e ;
  font-size: 18px;
  margin-right: 8px;
}

.footer-contact-info li span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-info a:hover {
  color: #d85fa3;
}
.single-footer-widget iframe {
  width: 100%;
  border-radius: 8px;
  border: none;
}
.copyright-area {
  width: 100%;
  margin: 0;
  padding: 20px 0;
  background: #0b0b0b;
  text-align: center;
}

.copyright-area-content p {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
}

.copyright-area-content a {
  color: #ea512e;
  text-decoration: none;
}

.copyright-area-content a:hover {
  text-decoration: underline;
}
.go-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: #ea512e;
  color: #ffffff;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
  z-index: 999;
}

.go-top:hover {
  background: #ea512e;
}
.footer_logo {
    text-align: center;   /* center on all devices */
}

.footer_logo img {
    width: 200px;         /* your required size */
    max-width: 100%;      /* responsive */
    height: auto;
    padding: 10px;
}



/* nowwwwwwwww bwginnnnn about pageeeeeeee */

/* ===== ABOUT BANNER ===== */
/* ===== ABOUT BANNER ===== */
.about-banner {
  height: 50vh;
  width: 100%;
  background: url("../img/hostel2.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */



/* TEXT */
.banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.banner-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.banner-content p {
  font-size: 18px;
  margin-top: 10px;
}

.banner-content span {
  color: #f15a24;
}
/*gallery banner*/


.gallery-banner {
  height: 50vh;
  width: 100%;
  background: url("../img/gallery.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */


/* TEXT */
.gallery-banner .banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.gallery-banner .banner-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.gallery-banner .banner-content p {
  font-size: 18px;
  margin-top: 10px;
}

.gallery-banner .banner-content span {
  color: #f15a24;
}

/* ===== 
 ===== */
.-banner {
  height: 65vh;
  width: 100%;
  background: url("../img/hostel2.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.food-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* TEXT */
.food-banner .banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.food-banner .banner-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.food-banner .banner-content p {
  font-size: 18px;
  margin-top: 10px;
}

.food-banner .banner-content span {
  color: #f15a24;
}


/* ===== facilities banner ===== */
.facilities-banner {
  height: 50vh;
  width: 100%;
  background: url("../img/a19.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */


/* TEXT */
.facilities-banner .banner-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.facilities-banner .banner-content h1 {
  font-size: 56px;
  font-weight: 700;
}

.facilities-banner .banner-content p {
  font-size: 18px;
  margin-top: 10px;
}

.facilities-banner .banner-content span {
  color: #f15a24;
}


/* ===== GALLERY AREA ===== */
/* ===============================
   GALLERY AREA
================================ */
.gallery-area {
  background: #f8f9fa;
}

.single-gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.single-gallery-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

/* DARK OVERLAY */
.single-gallery-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 15px;
  z-index: 1;
}

/* SLIDE BUTTON */
.single-gallery-box .gallery-btn {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  font-size: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.45s ease;
  z-index: 2;
}

/* HOVER EFFECTS */
.single-gallery-box:hover::before {
  opacity: 1;
}

.single-gallery-box:hover img {
  transform: scale(1.1);
}

.single-gallery-box:hover .gallery-btn {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

/* BUTTON HOVER */
.single-gallery-box .gallery-btn:hover {
  background: #6f42c1;
  color: #ffffff;
}

/* ===============================
   VIEW MORE BUTTON
================================ */
.view-btn {
  text-align: center;
  margin-top: 25px;
}

.view-btn .default-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #ea512e;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-btn .default-btn:hover {
  background:#ea512e ;
  transform: translateY(-2px);
}


/* ABOUT SECTION */
.about-main {
  background: #fff;
}

.about-tag {
  color: #f0542d;
  font-family: cursive;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.about-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a014f;
  margin-bottom: 20px;
}

.about-text {
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #1a014f;
}

.feature-number {
  background: #f0542d;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

/* BUTTON */
.about-btn {
  background: #f0542d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background:#ffc107 ;
  color: #fff;
  transform: translateY(-3px);
}

/* IMAGE STYLING */
.about-image-wrapper {
  position: relative;
  display: inline-block;
}



.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8f1ff;
  border-radius: 10%;
  z-index: -1;
  transform: scale(1.15);
}

.about-image-wrapper img {
  width: 500px;
  height: 380px;
  object-fit: cover;
  border-radius: 10%;
 
}

.about-image-wrapper img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 30px;
  }

  .about-image-wrapper img {
    width: 280px;
    height: 280px;
  }
}
/* WE PROVIDE SECTION */
.we-provide {
  background: white;
}

.provide-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.provide-list li {
  font-size: 16px;
  color: #1a014f;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ROUND IMAGES GRID */
.provide-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}

.round-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
   border: 5px solid #f15a29;
}

.round-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(240, 84, 45, 0.2),
    rgba(26, 1, 79, 0.2)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.round-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.round-img:hover {
  transform: translateY(-8px) scale(1.05);
}

.round-img:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .provide-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .round-img {
    width: 130px;
    height: 130px;
  }
}
.gallery-section {
  background: #f9fbff;
}

.gallery-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

.gallery-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-box:hover img {
  transform: scale(1.1);
}

.gallery-box:hover {
  transform: translateY(-8px);
}
.banner-subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  opacity: 0.9;
}
/* FACILITIES SECTION */
.facilities-section {
  background: #f9fbff;
}

.facility-row {
  padding: 30px 0;
}

.facility-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.facility-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.facility-content {
  padding: 20px;
}

.facility-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a014f;
  margin-bottom: 15px;
}

.facility-content p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .facility-image img {
    height: 250px;
  }

  .facility-content h3 {
    font-size: 26px;
  }
}
/* FAQ SECTION */
.faq-section {
  background: #ffffff;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: #ea512e;
}

.accordion-button {
  font-weight: 600;
  color: #1a014f;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: black;
}

.accordion-body {
  color: black;
  line-height: 1.7;
}




/*contact.php */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== BANNER ===== */
/* ================= CONTACT PAGE ONLY ================= */
.contact-page {
  padding: 80px 20px;
  background: #f9f9fc;
  display: flex;
  justify-content: center;
}

/* Wrapper */
.contact-page .contact-wrapper {
  width: 100%;
  max-width: 500px;
  background: #400040;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Heading */
.contact-page h2 {
  text-align: center;
  font-size: 32px;
  color: #2d1b54;
  margin-bottom: 10px;
}

/* Subtitle */
.contact-page .contact-subtitle {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* Form */
.contact-page .contact-form {
  width: 100%;
}

/* Input group */
.contact-page .form-group {
  margin-bottom: 18px;
}

/* Inputs */
.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  transition: 0.3s;
}

/* Focus */
.contact-page input:focus,
.contact-page textarea:focus {
  border-color: #6a4bc4;
}

/* Button */
.contact-page button {
  width: 100%;
  padding: 14px;
  background: #6a4bc4;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-page button:hover {
  background: #5637a5;
}
  .contact-information h3 {
  margin-bottom: 25px;
  font-size: 25px;
  padding: 10px;
}

.contact-information .contact-list {
  padding-left: 0;
  margin-bottom: 25px;
  list-style-type: none;
}

.contact-information .contact-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.contact-information .contact-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #ea512e;
  font-size: 20px;
}

.contact-information .contact-list li span {
  font-weight: 600;
  color: #1b0238;
}

.contact-information .contact-list li a {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.contact-information .contact-list li a:hover::before {
  width: 100%;
}

.contact-information .contact-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #ea512e;
}

.contact-information .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-information .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-information .opening-hours li {
  margin-bottom: 10px;
}

.contact-information .opening-hours li:last-child {
  margin-bottom: 0;
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.contact-form #contactForm .form-group {
  margin-bottom: 15px;
}

.contact-form #contactForm .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.contact-form #contactForm .form-group .form-control:focus {
  border-color: #ea512e;
}

.contact-form #contactForm .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control:focus::placeholder {
  color: transparent;
}

.contact-form #contactForm .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contactForm .form-group textarea.form-control {
  height: auto;
  padding: 15px 0 0 15px;
}

.contact-form #contactForm .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-form #contactForm #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #contactForm #msgSubmit.text-danger, .contact-form #contactForm #msgSubmit.text-success {
  margin-top: 15px;
}

.contact-form #contactForm .default-btn {
  border: none;
  position: relative;
  z-index: 1;
  border: none;
}

#map iframe {
  border: none;
  width: 100%;
  height: 450px;
  margin-bottom: -8px;
}
  
  
/* ================= FOOD & CANTEEN PAGE ================= */
/* ================= FOOD BANNER ================= */
.food-banner {
  position: relative;
  height: 60vh;
  background: url("../img/canteen.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.food-banner .banner-content {
  position: relative;
  color: #fff;
}

.food-banner h1 {
  font-size: 48px;
  font-weight: 700;
}

.food-banner h4 {
  color: #ff9800;
}

/* ================= FOOD & CANTEEN SECTION ================= */
.food-canteen {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* ================= DESCRIPTION ================= */
.food-description {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* ================= FOOD TIMINGS ================= */
.food-timings {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.food-timings h4 {
  color: #ff9800;
  font-weight: 600;
  margin-bottom: 15px;
}

.food-timings ul {
  list-style: none;
  padding-left: 0;
}

.food-timings ul li {
  padding: 8px 0;
  font-size: 16px;
}

.food-timings ul li strong {
  color: #ff9800;
}

/* ================= MENU TABLE ================= */
/* ================= WEEKLY MENU TABLE ================= */

/* Table box */
.menu-chart table {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
}

/* 🔶 ORANGE FIRST ROW (HEADER) */
.menu-chart table thead tr {
  background: #f25c22;
}

.menu-chart table thead th {
  color: white;
    background: #f25c22;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border: 1px solid #f25c22;
}

/* Body rows */
.menu-chart table tbody td {
  padding: 14px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #dcdcdc;
}

/* Hover like fee table */
.menu-chart table tbody tr:hover {
  background: #fff3e0;
}

/* Rounded corners */
.menu-chart table thead th:first-child {
  border-top-left-radius: 6px;
}

.menu-chart table thead th:last-child {
  border-top-right-radius: 6px;
}


 
 /* ================= FEE STRUCTURE ================= */
.fee-structure {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.fee-description {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.fee-table h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.fee-table table th {
  background-color: #f15a29;
  color: #ffffff;
  text-align: center;
}

.fee-table table td {
  text-align: center;
  vertical-align: middle;
}

.total-row td {
  background-color: #fce0ad;
  font-size: 16px;
}

.fee-notes {
  margin-top: 30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.fee-notes h5 {
  margin-bottom: 12px;
  color: #2c3e50;
}

.fee-notes ul li {
  margin-bottom: 8px;
  color: #555;
} 



/* Contact Banner Section */
.contact-banner {
    position: relative;
    width: 100%;
    min-height: 350px;
    background: #db6ca9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.contact-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.banner-content h4 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #f1f1f1;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Call Button */
.call-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffb703;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn:hover {
    background: #ffc933;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content h4 {
        font-size: 16px;
    }

    .banner-content p {
        font-size: 15px;
    }
}


/*form*/
/* Base layout */
:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --border: #e5e7eb;
  --success: #16a34a;
  --error: #dc2626;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Page container */
.form-wrapper {
  max-width: 720px;
  margin: 40px auto;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.08);
}

/* Header */
.form-header {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.form-header h1 {
  font-size: 22px;
  margin: 0 0 6px;
}
.form-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Grid layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full {
  grid-column: 1 / -1;
}

/* Field */
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Focus & invalid */
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.field input:invalid,
.field textarea:invalid {
  border-color: var(--error);
}

/* Helper text & errors */
.helper {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.error {
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  display: none; /* toggle via JS if needed */
}

/* Actions */
.actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn:active { transform: translateY(1px); }

/* Success banner */
.banner {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--success);
  border: 1px solid #86efac;
  display: none; /* show after successful submit */
}

/* Responsive */
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-wrapper { margin: 20px; padding: 16px; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #eef3fb;
    padding: 0px;
}

/* Card */
.form-container {
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #1f3c88;
}

/* Field block */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    height: 90px;
    resize: none;
}

/* Button */
button {
    width: 30%;
    padding: 12px;
    background: #1f3c88;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #ffffff;
}



/* CONTACT FORM */
.contact-area {
  padding: 100px 0;
  background: #ffffff;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  color: #1d1145;
  margin-bottom: 30px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: 16px;
  outline: none;
}

.contact-form textarea {
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8bb0;
}

.contact-form button {
  background: #ea512e;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f5890d;
}

/* RIGHT INFO */
.contact-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1145;
  padding:10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.contact-info .icon {
  font-size: 18px;
  margin-right: 12px;
  color: #ea512e;
}

.contact-info .mt {
  margin-top: 30px;
}

.contact-info .hours p {
  margin-bottom: 10px;
  font-size: 16px;
}


/* Testimonials Item Box */
.testimonials-area {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #f0542d;
    font-family: cursive;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  color: #1d1145;
}

/* Slider Wrapper */
.testimonials-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Sliding Track */
.testimonials-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Circle Card */
.testimonial-circle {
  width: 300px;
  height: 300px;
  background: #fee9ca;
  border-radius: 50%;
  margin: 0 25px;
  padding: 60px 40px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Quote */
.quote-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  color: #ea512e;
  border-radius: 50%;
  font-size: 36px;
  line-height: 60px;
  margin: 0 auto 20px;
  font-weight: bold;
}

.testimonial-circle p {
  font-size: 16px;
  font-style: italic;
  color: #5c5c7b;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-circle h3 {
  font-size: 24px;
  color: #1d1145;
  margin-bottom: 5px;
}

.testimonial-circle span {
  color: #ea512e;
  font-weight: 600;
  font-size: 15px;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 576px) {
  .testimonial-circle {
    width: 260px;
    height: 260px;
    padding: 40px 25px;
  }
}
.admission-info-section {
  background: #f9f9f9;
}

.admission-info-section h2 {
  font-weight: 700;
  color: #2d1b54;
}

.admission-info-section p {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
}


