@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap');
* {
  padding: 0;
  margin: 0;
}

.logo-section {
  width: 220px;
  height: 125px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #eee;
}

.logo-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;

}

.top-bar {
  height: 50px;
  background-color: #F05C2B;
  color: white;
  font-size: 14px;
  padding: 2px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;

}

.top-bar .title {
 margin-left: -100px !important;
}

.top-icons {
  display: flex;
  gap: 15px;


}

.top-icons a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  left: 70px;

  transition: transform 0.3s;
}

.top-icons a i {
  transition: transform 0.3s;
  color: #ffffff;
}

.top-icons a .icon-text {
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #f7f4f5;
  font-size: 14px;
}

.top-icons a:hover i {
  transform: translateX(-6px);
}

.top-icons a:hover .icon-text {
  opacity: 1;
  transform: translateX(0);
}

.nav-data {
  color: white;
  text-decoration: none;
  padding: 10px;

}

.nav-data:hover {
  border-radius: 50px;
  /* background: #F05C2B; */
border: 1px solid black;
  padding: 5px;

}


.top-icons a::after {
  content: attr(data-text);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #F05C2B;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.separator {
  height: 5px;
  background-color: #ffffff;
  width: 100%;
}

.main-navbar {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-data i {
  transition: color 0.3s, transform 0.3s;
}

.nav-data:hover i {
  color: #ffffff;      /* Change to your preferred hover color */
  transform: scale(1.2);
}

.nav-data2 i {

    padding: 10px;
}

.nav-data2:hover i {
     color: #AD2627;
}



.navbar-nav .nav-hover{
  position: relative;
  transition: color 0.2s;
}

.navbar-nav .nav-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #AD2627; /* Set your underline color */
  transition: width 0.3s;
}

.navbar-nav .nav-hover:hover::after,
.navbar-nav .nav-hover.active::after {
  width: 100%;
}





.main-navbar .nav-link {
  font-weight: 700;
  color: #F05C2B;
  margin: 0 15px;
  text-transform: uppercase;
  font-size: 17px;
  font-family: "Inria Serif";
}

.main-navbar .nav-link-hover:hover{
  color: #AD2627 !important;
}
.main-navbar .nav-link-hover2:hover{
  color: #ffffff !important;
}

.slide-hover-button {
    position: relative;
    padding: 10px 32px;
    border: none;
    border-radius: 2px;
    background: #AD2627;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-hover-button::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: #F9A226;
    z-index: -1;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-hover-button:hover::after {
    transform: scaleX(1);
}

.slide-hover-button:hover {
    color: #ffffff;
}


@media (max-width: 1190.98px) {
  .main-navbar .nav-link {
    font-size: 12px;
    font-weight: bold;
    margin: 0 10px;
  }
}



.main-navbar .nav-link:hover {
  color: #F05C2B;
}

/* .search-icon {
  background-color: #F05C2B;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  top: 20px;
  right: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 1;

} */


/* .search-icon i {
  color: #ffffff;
  font-size: 20px;
} */

.search-overlay {
  position: fixed;
  top: -150px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 100px;
  overflow: hidden;
  transition: top 0.4s ease;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F05C2B;
}


.search-overlay.active {
  top: 0;
}

.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
  background-color: #F05C2B;
}

.search-box input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #F05C2B;
  outline: none;
}

.search-box .close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  color: #F05C2B;
}

.mobile-menu-overlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: #F05C2B;
  transition: top 0.4s ease;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;

}

.mobile-menu-overlay.active {
  top: 0;
}

.mobile-menu-overlay a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin: 12px 0;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  gap: 5px;
  color: #313030;
  cursor: pointer;
}

.navbar-nav {
  position: absolute;
  top: 10px;
  /* left: 120px; */
  /* gap: 15px; */
  /* padding-left: 228px !important; */
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
}

.carousel-caption2{
  margin-left: -40px !important;
}

@media (max-width: 991px) {
  .main-navbar {
    justify-content: space-between;
  }



  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 18px;
    color: #100f0f;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
  }

  .top-bar {
    height: 55px;
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-data {
    display: none;
  }



  .top-icons {
    justify-content: flex-start;
    box-sizing: border-box;

  }

  .top-icons .nav-data {
    display: none;
  }

  .top-icons i {
    border: 1px solid rgb(47, 46, 46);
    border-radius: 6px;
    padding: 10px;
  }

  .icon-text {
    display: none;
  }

  /* .search-icon {
    position: fixed;
    top: 0px;
    right: 20px;
  } */

  /* .search-icon i {
    font-size: 24px;
  } */

  .logo-section {
    border-bottom: 1px solid #f9f7f7;
    position: relative;
  }
}


@media (max-width: 760px) {
  .main-navbar {
    justify-content: space-between;
  }



  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 13px;
    color: #100f0f;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
  }

  .top-bar {
    height: 55px;
    flex-direction: row;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-data {
    display: none;
  }



  .top-icons {
    display: none;
    justify-content: flex-start;
    padding-left: 0;
    box-sizing: border-box;

  }

  .top-icons .nav-data {
    display: none;

  }

  .icon-text {
    display: none;
  }

  /* .search-icon {
    position: fixed;
    top: 25px;
    right: -2px;
    width: 50px;
    height: 50px;
    padding: 10px;
  } */

  /* .search-icon i {
    font-size: 20px;

  } */

  .logo-section {
    position: fixed;
    border-bottom: 1px solid #f9f7f7;
    position: relative;
    width: 23%;
  }

}

.mobile-navbar {
  background-color: #ffffff;
  color: #fff;
}

.mobile-navbar .navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}



.mobile-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.offcanvas-header {
  border-bottom: 1px solid #dee2e6;
}

.offcanvas-body .nav-link {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
  background-color: #f1f1f1;
  color: #F05C2B;
}

.offcanvas-title {
  font-weight: bold;
}



.bottom-caption {
  position: absolute;
  bottom: 5px;
  left: 5%;
  right: 5%;

  padding: 15px 25px;
  border-radius: 10px;
}

.banner-text {
  font-size: 35px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: 'Inria Serif', serif;
}

p {
  font-family: 'Inria Serif', serif;
}

.banner-text2 {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Inria Serif', serif;
  color: #F9A226;
}





.carousel-indicators-custom {
  display: flex;
  gap: 10px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
}

.download-brochures-btn {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Inria Serif', serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* .download-brochures-btn2 {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Inria Serif', serif;
  transition: all 0.3s ease;
  cursor: pointer;
}
.download-brochures-btn2:hover {
  background-color: #fff;
  color: #000;
  /* Or your brand color 
} */


.download-brochures-btn:hover {
  background-color: #fff;
  color: #000;
  /* Or your brand color */
}

.carousel-indicators-custom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
  background-color: #fff;
}

.carousel-indicators-custom {
  position: absolute;
  bottom: 20px;
  left: 100px;
  /* Adjusted to position left */
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-indicators-custom .dot {
  height: 12px;
  width: 12px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-indicators-custom .dot.active {
  opacity: 1;
  background-color: #fff;
}


.stage-card {

  border-radius: 10px;
  /* background-color: #fff; */
  font-family: 'Inria Serif', serif;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
}

.stage-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

.stage-list {
  color: #F05C2B;
  font-weight: bold;
}

.stage-focus {
  color: #3496CA;
  font-style: italic;
}

.read-more {
  color: #F05C2B;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #F05C2B;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.2s;
}

.read-more:hover i {
  transform: translateX(3px);
}



.campus-icon {
  width: 60px;
  height: 60px;
  background-color: #e8f8f9;
  border-radius: 15px;
  margin: 0 auto 20px;
}

.campus-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.campus-desc {
  font-size: 0.95rem;
  color: #555;


}

.testimonial-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;

  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 13.33px);
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #000;
  text-align: center;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card .quote {
  font-size: 50px;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 0.7;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

.author span {
  font-size: 0.9rem;
  color: #777;
}

.testimonial-dots {
  text-align: center;
  margin-top: 25px;
}

.testimonial-dots .dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-wrap: nowrap;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
  .navbar-nav {
  background-color: #fff !important;
}
}


.faq-section {
  padding: 60px 20px;
  background-color: #fff;
}

.faq-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #2f2f5f;
}

.faq-section p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.146a.5.5 0 0 1 .708 0L8 10.793l5.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");
  background-size: 1rem;
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.accordion-button {
  background-color: #fff;
  font-weight: 500;
  border-radius: 6px;
  padding: 1rem 1.25rem;
}

.accordion-body {
  color: #666;
  font-size: 15px;
  padding: 1rem 1.25rem;
}


.nav-pills .nav-link {
  color: #fff;
  line-height: 40px;
}

.nav-pills .nav-link.active {
  background-color: transparent;
  font-weight: bold;
  opacity: 1;

}

.timeline {
  position: relative;
  margin-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fff;
  border-radius: 2px;
}

.timeline .nav-link {
  position: relative;
  padding-left: 2.5rem;
}

.timeline .nav-link::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  /* border: 5px solid #1ab2ff; */
  z-index: 1;
}

.timeline .nav-link.active::before {
  background: #1ab2ff;
}

.content-box {
  background-color: #5dbbe3;
  padding: 30px;
  color: white;
  border: 2px solid #fff;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
  margin-right: -30px;
}

@media (max-width: 768px) {
  .content-box {
    margin-right: 0;
  }
}

@media (max-width: 576px) {
  .content-box {
    margin-right: 0;
  }
}

.img-box {
  z-index: 1;
  position: relative;
}

.img-box img {
  max-width: 70%;
  height: auto;
  border-radius: 0;
}

.approach-section {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.approach-title {
  color: #5dbbe3;
  font-weight: bold;
  margin-bottom: 10px;
}

.approach-subtitle {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 40px;
}

.approach-box {
  padding: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.3s ease;
  cursor: pointer;

}

.approach-box:hover {
  background-color: #F05C2B;
  /* Hover background color */
}

.approach-box:hover .approach-title-box {
  color: #F9B80A;
  /* Title color on hover */
}

.approach-title-box {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #BEEEFF;
  /* Default title color */
  font-family: 'Inria Serif', serif;
  transition: color 0.3s ease;
}



.approach-description {
  font-size: 0.9rem;
  color: #84caff;
}

.approach-number {
  background-color: #2a7bbd;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-left: 15px;
  flex-shrink: 0;
}

.phone-image {
  max-width: 100%;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }

  .mobile-image {
    display: block;
    margin: 20px auto;
  }
}

@media (min-width: 769px) {
  .mobile-image {
    display: none;
  }
}

.why-card {
  border-radius: 10.464px;
  border: 0.872px solid #FFF;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(43.6px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  background: #fff !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.campus-card-1 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fefd, #f9f7fd);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card-2 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EDFDF3, #FAF7FC);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card-3 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #EEEAFE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card-4 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #E3FAE7, #EEEAFE);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card-5 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FFE6E2, #EEEAFE);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card-6 {
  padding: 30px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #D8F7EE, #FFFFFF);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.campus-card-1:hover,
.campus-card-2:hover,
.campus-card-3:hover,
.campus-card-4:hover,
.campus-card-5:hover,
.campus-card-6:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.footer-section-banner {
  background-image: url('../banner/footer-section-banner.png');
  background-position: center;
  background-size: cover;
  background-repeat: none;
}

.subscribe-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.subscribe-label {
  font-size: 20px;
  font-weight: 600;
  color: #001848;
  font-family: 'Segoe UI', sans-serif;
}

.custom-subscribe {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-subscribe input.form-control {
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 0;
  font-family: 'Segoe UI', sans-serif;
}

.custom-subscribe input.form-control:focus {
  box-shadow: none;
}

.btn-subscribe {
  background-color: #000;
  color: #fff;
  padding: 0 25px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-left: 1px solid #ddd;
  transition: background 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.btn-subscribe:hover {
  background-color: #222;
}

.subscribe-label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.icon-hover-container {
  display: inline-flex;
  padding: 0px 10px 4px 0px;
  align-items: center;
  /* background: #0C5482; */
}

.icon-box {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  margin-right: 0;
  /* No gap by default */
  overflow: hidden;
}

.icon-box img {
  border-left: 2px solid rgba(190, 238, 255, 0.17);
  transition: transform 0.3s ease;
}

.icon-box span {
  color: white;
  font-size: 14px;
  margin-left: 15px;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.icon-box:hover {
  margin-right: 20px;
  /* Add space to next icon on hover */
}

.icon-box:hover img {
  transform: translateX(6px);
  /* Move icon to right */
}

.icon-box:hover span {
  opacity: 1;
  width: auto;
}

.icon-link {
  text-decoration: none;
  display: inline-flex;
}

 .section-wrapper {
      background: #f8f9fa;
      padding: 60px 20px;
    }

    .notice-box {
      background-color: #fff;
      border-left: 6px solid #00184C;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .notice-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #00184C;
      margin-bottom: 10px;
    }

    .enquiry-form {
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
    
    .btn-submit{
      color: #fff !important;
      background-color:#FF5E00 !important;
    }

    .career-hero {
    background: linear-gradient(135deg,#FF5E00, #FF5E00) !important;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.about-banner {
    background: url('../banner/about-banner.png') no-repeat center center/cover;
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
    z-index: 1;
}

.about-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
    .about-banner {
        height: 150px;
    }

    .about-banner h1 {
        font-size: 30px;
        font-weight: bold;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 120px;
    }

    .about-banner h1 {
        font-size: 20px;
        font-weight: bold;
    }
}


    .heading-title{
        font-size: 30px;
        font-weight: bold;
    }



@media (max-width: 480px) {

    .heading-title{
        font-size: 20px;
        font-weight: bold;
    }
}

.chain-network {
    background: #3495C9;
    font-size: 18px !important;
    font-weight: bold;
    padding: 20px;
    border-left: 6px solid #124F8D;
    color: #fff;
    line-height: 1.6;
}

.half-bg-section {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35%, #D9EAFF 35%, #D9EAFF 100%);
    z-index: 1;
}

@media (max-width: 575.98px) {
    h3.responsive-heading {
        font-size: 20px !important;
    }

    .feature-card {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0) !important;
             /* border: 1px solid #ad2627 !important; */
    }

    .phone-font-size{
      font-size: 26px !important;
      text-align: start !important;
    }
     .phone-weight-size{
      width: 40px !important;
      height: 40px !important;
      /* display: none !important; */
    }
.phone-font-size2{
   font-size: 28px !important;
}
  
}










.header-shift-right {
  margin-left: auto;
}


.feature-card {
     background: url('../images/icons/Property\ 1=Default.svg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     border-radius: 30px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     padding: 20px;
     text-align: center;
     position: relative;
     overflow: hidden;
     transition: transform 0.3s;
     /* border: 1px solid #ad2627; */
     height: 200px;
     }
    .feature-title {
     background-color: white;
     color: #ffcc00;
     font-weight: 600;
     padding: 10px 0;
     display: block;
     width: calc(100% + 40px);
     margin-left: -20px;
     margin-right: -20px;
     text-align: center;
     position: relative;
     z-index: 1;
     }

     .hover-overlay {
     position: absolute;
     top: -100%;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #f9a226;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     /* border-radius: 15px; */
     transition: top 0.4s ease-in-out;
     z-index: 3;
     color: white;
     }
     .feature-card:hover {
     transform: scale(1.03); /* Optional zoom effect */
     }
     .feature-card:hover .hover-overlay {
     top: 0;
     }
    .hover-overlay h3 {
     font-size: 24px;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 5px;
     }

     .hover-overlay p {
     font-size: 16px;
     font-weight: 400;
     margin: 0;
     }
    .feature-card img {
      width: 60px;
      margin-bottom: 15px;
    }

    .wave-gradient {
     background: linear-gradient(135deg, #F05C2B, #F9A226);
     background-size: 400% 400%;
     animation: gradientMove 6s ease-in-out infinite;
        }
    .svg-wave {
     animation: waveMotion 1s linear infinite;
        }
     @keyframes waveMotion {
      0% {
             transform: translateX(0);
            }

       100% {
                transform: translateX(-50%);
            }
       }


       /* Heading style */
.fw-bold.mb-3 {
  font-size: 2rem;
  color: #e53935;
  letter-spacing: 1px;
}

/* Paragraph style */
.text-muted.mb-4 {
  font-size: 1.08rem;
  color: #555 !important;
  line-height: 1.7;
}


.row img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}



.mb-1 {
 
  position: relative;
  z-index: 1;
  overflow: visible;
}

.mb-1 .img-fluid {
  transition: 
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  /* height: 20vh; */
  z-index: 1;
  position: relative;
}

/* Zoomed state: only scaleY and move down */
/* .mb-1.zoomed .img-fluid {
  transform: scaleY(2.2) translateY(35%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 10;
} */

/* Hide bottom images when zoomed */
/* .mb-1.zoomed + .row {
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
} */






.birla-bg{
 background-image: url('../images/img/birla-bg-1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  width: 100%;
}





/* css for notic bord */

 .notice-section {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #cc2b1c, #f47e1f);
      color: white;
      padding: 20px;
    }

   .section-title {
      font-size: 2rem;
      font-weight: 700;
    }

    .latest-news {
      background-color: rgba(0, 0, 0, 0.1);
      padding: 20px;
      border-radius: 8px;
    }

    .timeline {
      position: relative;
      padding-left: 30px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 8px;
      top: 0;
      bottom: 0;
      width: 4px;
      background-color: #bbb;
      z-index: 0;
      border-radius: 2px;
    }

    .fill-line {
      position: absolute;
      left: 8px;
      top: 0;
      width: 4px;
      height: 0;
      background-color: #f44336;
      z-index: 1;
      border-radius: 2px;
      transition: height 0.4s ease;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 30px;
      padding-left: 10px;
      cursor: pointer;
      z-index: 2;
      color: #fff;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -26px;
      top: 4px;
      width: 12px;
      height: 12px;
      background-color: #ff3d00;
      border-radius: 50%;
      z-index: 3;
    }

    .timeline-item.active {
      font-weight: bold;
      color: #ffd700;
    }

 /* .notice-board {
  background: url('../images/img/birla-bg-3.svg') center center no-repeat;
  background-size: cover;
  padding: 30px;
  color: black;
  height: auto;
  width: 100%;
  border-radius: 10px; /* Optional: add if you want rounded corners
} */

  .notice-board {
      background-color: rgba(255, 255, 255, 0.95);
      border: 8px solid #f5d7a5;
      padding: 30px;
      color: black;
      border-radius: 10px;
    }

    .holiday-section {
      background-color: #fcae1e;
      color: #000;
      padding: 20px;
      border-radius: 8px;
      font-weight: 500;
    }

    .holiday-section a {
      font-weight: bold;
      color: blue;
      text-decoration: none;
    }

    .holiday-section a:hover {
      text-decoration: underline;
    }

    .important-notice-title {
      font-weight: bold;
      font-size: 1.5rem;
    }

    .divider {
      height: 2px;
      background-color: #000;
      margin: 10px 0;
      width: 100%;
    }
    /* card slide css  */
    .card-container {
      position: relative;
      width: 100%;
      max-width: 336px;
      height: 299px;
      background: white;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transition: all 0.5s ease;
      
    }

    .card-header {
      background: #ffa000;
      text-align: center;
      padding: 12px 0;
      font-size: 1.5rem;
      font-weight: bold;
      color: #000;
    }

    .card-content {
      display: flex;
      align-items: center;
      justify-content: center;
      height: calc(100% - 56px); /* header height */
      transition: all 0.5s ease;
      position: relative;
    }

    .card-img img {
      width: 220px;
      height: auto;
      transition: transform 0.5s ease;
    }

    .card-info {
      position: absolute;
      left: -100%;
      top: 0;
      width: 50%;
      height: 100%;
      background: #F05C2B;
      color: white;
      padding-left: 20px;
      display: flex;
      align-items: center;
      transition: all 0.5s ease;
      z-index: 22;
    }

    .card-info .text {
      /* max-width: 60%; */
    }

    .card-info h4 {
      font-size: 1.4rem;
      font-weight: bold;
    }

    .card-info h6 {
      color: #ffeb3b;
      /* margin-top: 12px; */
      font-weight: 600;
      font-size: 1rem;
    }

    .card-info p {
      margin: 4px 0;
    }

    
    .card-container:hover {
      box-shadow: 0 6px 4px rgba(230, 207, 73, 0.797);
      /* transform: translateY(-10px); */
    }
    .card-container:hover .card-info {
      left: 0;
    }

    .card-container:hover .card-img img {
      transform: translateX(70px);
          width: 150px;
    }

    .card-container:hover .card-header {
      background: #ab2627;
      color: #f9a226;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Responsive */
    @media (max-width: 576px) {


      .background-img-form {
background-color: white !important;
background: transparent !important;
      }


       .notice-section {
  
      padding: 0px !important;
    }
      .card-container {
        max-width: 100%;
        height: 400px;
      }

      .card-info {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px;
      }

      .card-img img {
        width: 180px;
        transform: none !important;
        margin: 0 auto;
      }

      .card-container:hover .card-info {
        left: 0;
      }

      .card-info .text {
        max-width: 100%;
      }

      .curriculum-padding{
   padding: 4px 4px 4px 4px !important;
}

    }




.academicsCard{
  background: #F9A226;
}

.academicsCard1 {
  background: #C50227;
  height: 60px;
}

.academicsCard2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.70) 100%), url("../images/img/academics-img2.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.academicsCard22 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.70) 100%), url("../images/img/academics-img3.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  height: 300px;
  background-size: cover;
  background-position: center;
}
.academicsCard23 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.70) 100%), url("../images/img/academics-img4.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  height: 300px;
  background-size: cover;
  background-position: center;
}


.academicsCard:hover{
  background: #ffffff;
}
.academicsCard:hover .academicsCard1 {
  background: #F05C2B;
  ;
}

.academicsCard:hover .academicsCard2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(255, 255, 255, 0) 100%), url("../images/img/academics-img2.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  background-size: cover;
  background-position: center;
}
.academicsCard:hover .academicsCard22 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(255, 255, 255, 0) 100%), url("../images/img/academics-img3.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  background-size: cover;
  background-position: center;
}
.academicsCard:hover .academicsCard23 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(255, 255, 255, 0) 100%), url("../images/img/academics-img4.svg") lightgray 0px -86.5px / 100% 196.847% no-repeat;
  background-size: cover;
  background-position: center;
}

    /* new section css */



    .background-img-form{

      background-image: url('../images/img/birla-bg-5.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 50vh;
      width: 100%;
      display: flex;
      /* align-items: end; */
      justify-content: end;
    }


    .footer-section{
        background-image: url('../images/img/Footer.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 50vh;
      width: 100%;
    }




    /* footer input css */


.subscribe-wrapper {
    max-width: 480px;
    margin: 0 auto;
}


.subscribe-label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}


.custom-subscribe {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.input-group {
    position: relative;
    display: flex
;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}


.btn-subscribe {
    background-color: #FFE017;
    color: #fff;
    padding: 0 25px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    border-left: 1px solid #ddd;
    /* transition: background 0.3s ease; */
    font-family: 'Segoe UI', sans-serif;
}


.btn-subscribe:hover {
    background-color: #F9A226;
}







/* Why Card Hover Effect */
.why-card {
  background: #FFF;
  transition: background 0.3s;
  cursor: pointer;
  position: relative;
}
.why-card:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #AD2627, #F9A226) !important;
}
.why-card:hover .circle {
  fill: #fff;
  transition: fill 0.3s;
}
.why-card:hover .textupdate {
    fill: #F9A226 !important;
  color: #F9A226 !important;
   transition: fill 0.3s;
}
.why-card:hover .why-title,
.why-card:hover .why-desc {
  color: #FFF !important;
  transition: color 0.3s;
}
/* Optional: Change text content on hover using pseudo-elements (for static text) */
.why-card:hover .why-title::after {
  /* content: " (Hovered)"; */
  color: #F9A226;
  font-size: 18px;
  margin-left: 5px;
}





/* about us css */



.quote-section{
  background: url('../images/img/Quote\ Section.svg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}


.card.p-1 {
  transition: box-shadow 0.3s, transform 0.3s;
}

.card.p-1:hover {
  box-shadow: 0 8px 24px rgba(240, 92, 43, 0.15), 0 1.5px 8px rgba(0,0,0,0.08);
  transform: translateY(-4px) scale(1.01);
  background: #fffbe9 !important;
}





.add-bg-after-hover {
  position: relative;
  overflow: hidden;
}

.add-bg-after-hover::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../images/img/birla-img99.svg') center center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
  pointer-events: none;
  transform: scale(1.08) rotate(-2deg);
}

.add-bg-after-hover:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}



.after-hover-start {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #F9A226;
  transition: 
    justify-content 0.4s cubic-bezier(0.4,0,0.2,1),
    text-align 0.4s cubic-bezier(0.4,0,0.2,1),
    margin-left 0.4s cubic-bezier(0.4,0,0.2,1);
}

.after-hover-start:hover {
  color: #F9A226 !important;
  justify-content: flex-start !important;
  text-align: start !important;
  margin-left: 40px; /* creates a smooth slide to the left */
}





.curriculum-padding{
   padding: 25px 5px 34px 5px;
}


.download-brochures-btn2 {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Inria Serif', serif;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Inria Serif";
}




.download-brochures-btn2:hover {
background: rgba(0, 0, 0, 0.10);
  color: #fff;
  /* Or your brand color */
}





    .form-section {
  background: #F9F8F8;
      padding: 40px;
      /* border-radius: 10px; */
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      margin-top: 40px;
    }
    .form-title {
      text-align: center;
      margin-bottom: 20px;
    }
    .form-title h2 {
      font-weight: bold;
    }
    .form-title p {
      color: #555;
    }
    .btn-apply {
      background-color: #b22222;
      color: white;
      padding: 10px 30px;
      font-weight: bold;
      border-radius: 5px;
    }
    .btn-apply:hover {
      background-color: #8b1a1a;
      color: #fff;
    }
    .form-control::placeholder {
      color: #aaa;
    }




     .contact-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .contact-title {
      font-size: 36px;
      font-weight: bold;
    }

    .contact-title span {
      color: #F26522;
    }

    .form-control {
      border-radius: 0;
      padding: 14px;
    }

    .btn-send {
      background-color: #F26522;
      color: #fff;
      border-radius: 0;
      padding: 14px;
      font-weight: 600;
      border: none;
      width: 100%;
    }

    .btn-send:hover {
      background-color: #d35400;
    }

    .contact-info {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .contact-info i {
      font-size: 24px;
    }


    @media (max-width: 768px) {
      .contact-title {
        font-size: 28px;
        text-align: center;
      }
      .contact-section .row {
        /* flex-direction: column-reverse; */
      }
    }





    /* event css  */



         /* Event CSS */

    .event-card {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
    }

    .event-card:hover {
        transform: scale(1.05);
    }

    .balloon {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 40px;
        background-color: red;
        border-radius: 50%;
        opacity: 0;
        animation: floatUp 3s ease-in-out infinite;
    }

    .balloon::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 2px;
        height: 30px;
        background-color: black;
    }

    @keyframes floatUp {
        0% {
            bottom: -50px;
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            bottom: 100%;
            opacity: 0;
        }
    }
    




    
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.image-wrapper {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.image-wrapper:hover:before {
    top: 0;
}

.image-wrapper:hover .mouse-pointer {
    opacity: 1;
}
.skills {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    /* text-align: center; */
    color: yellow;
    background: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    padding: 10px;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}
.image-wrapper:hover .skills {
    bottom: 0;
    opacity: 1;
}





.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #AD2627; /* blinking cursor */
  font-family: inherit;
  font-size: inherit;
  width: 0;
  animation: typing 12.5s steps(36, end) infinite, blink-caret 0.7s step-end infinite;
  animation-play-state: running;
}

.typewriter-text:hover {
  animation-play-state: paused;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #AD2627; }
}




.typewriter-text2 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #AD2627; /* blinking cursor */
  font-family: inherit;
  font-size: inherit;
  width: 0;
  animation: typing 10s steps(36, end) infinite, blink-caret 0.7s step-end infinite;
  animation-play-state: running;
}

.typewriter-phone .typewriter-text2 {
  animation: typing 12.5s steps(14, end) infinite, blink-caret 0.7s step-end infinite;
}




.typewriter-text2:hover {
  animation-play-state: paused;
}





/* css for gallery  */



/* Gallery Card Styles */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(173,38,39,0.08);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(173,38,39,0.18);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: filter 0.4s;
}

.gallery-card:hover .gallery-img {
  filter: brightness(0.7) blur(1px);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173,38,39,0.7) 0%, rgba(249,162,38,0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: opacity 0.4s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: fadeInUp 0.5s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}




/* Gallery Card Styles */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(173,38,39,0.08);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(173,38,39,0.18);
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: filter 0.4s;
}

.gallery-card:hover .gallery-img {
  filter: brightness(0.7) blur(1px);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173,38,39,0.7) 0%, rgba(249,162,38,0.7) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: opacity 0.4s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: fadeInUp 0.5s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Lightbox Styles */
.gallery-lightbox {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s;
}
.gallery-lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 16px;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-caption {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
  z-index: 2;
}
.lightbox-close { top: 24px; right: 36px; }
.lightbox-prev { top: 50%; left: 36px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 36px; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: #F9A226; }










/*  */

.line {
    height: 3px;
    background-color: #C83F2C;
    border-radius: 2px;
    animation: shrinkExpand 3s infinite ease-in-out;
    outline: none !important;
}



.animated-toggler {
  width: 30px;
  height: 3px;
  background: #AD2627;
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* Animate to X when offcanvas is open */
.offcanvas.show ~ .navbar .navbar-toggler .animated-toggler:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.offcanvas.show ~ .navbar .navbar-toggler .animated-toggler:nth-child(2) {
  opacity: 0;
}
.offcanvas.show ~ .navbar .navbar-toggler .animated-toggler:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}





.slider-controls .btn {
    border-radius: 50%;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
}



/* about us css */

@media (max-width: 576px) {
  .about-font-size1 {
    font-size: 22px !important;
    line-height: normal !important;
  }
  .about-font-size2{
        font-size: 14px !important;
         line-height: normal !important;
         text-align: start !important;
  }
    .about-font-size11 {
    font-size: 19px !important;
    line-height: normal !important;
  }
   .contact-section {
      padding: 20px 0 !important;

    }
    .font-size31{
      font-size: 14px !important;
    }
.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0rem !important;
   /* Only bottom shadow */
}


}

/* css for loader  */

#awesomeLoader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}

.loader-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-spinner svg {
  animation: loader-rotate 1.2s linear infinite;
}

@keyframes loader-rotate {
  100% { transform: rotate(360deg);}
}

.loader-spinner circle {
  stroke-dasharray: 90,150;
  stroke-dashoffset: 0;
  stroke: #F05C2B;
  animation: loader-dash 1.2s ease-in-out infinite;
}

@keyframes loader-dash {
  0% { stroke-dasharray: 1,200; stroke-dashoffset: 0;}
  50% { stroke-dasharray: 90,150; stroke-dashoffset: -35;}
  100% { stroke-dasharray: 90,150; stroke-dashoffset: -124;}
}

.loader-text {
  margin-top: 18px;
  font-family: 'Inria Serif', serif;
  font-size: 1.2rem;
  color: #AD2627;
  letter-spacing: 2px;
  font-weight: 700;
}




.line {
  width: 28px;
  height: 3px;
  background-color: #C83F2C;
  border-radius: 2px;
  margin: 4px 0;
  animation: shrinkExpand 2s infinite ease-in-out;
}

@keyframes shrinkExpand {

  0%,
  100% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(0.6);
  }
}

.custom-toggler {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}




.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
 
    --bs-offcanvas-width: 410px;
}

