/* || General Styles Starts */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --clr-primary: #256eb8;
  --clr-secondary: #acbd4f;

  --clr-section: #f4f6f8;

  --clr-white: #f4f4f5;
  --clr-black: #1e1d1d;

  --clr-white-nd: #f4f4f5;
  --clr-black-nd: #252525;

  --clr-bg-wrapper : #fdfdfd;

  /* Gradient Colors For Dark Mode */
  --clr-gd-program:rgb(253, 253, 253, 0.7);

  --clr-gd-gallery:rgba(255,255,245,0.6);

  --clr-gd-event: rgb(253, 253, 253, 0.6);

  /* Font Size */
  --text-xs: 1.2rem;
  /* 12px */
  --text-sm: 1.4rem;
  /* 14px */
  --text-base: 1.6rem;
  /* 16px */
  --text-lg: 1.8rem;
  /* 18px */
  --text-xl: 2rem;
  /* 20px */
  --text-2xl: 2.4rem;
  /* 24px */
  --text-3xl: 3rem;
  /* 30px */
  --text-4xl: 3.6rem;
  /* 36px */
  --text-5xl: 4.8rem;
  /* 48px */
  --text-6xl: 6rem;
  /* 60px */
  --text-7xl: 7.2rem;
  /* 72px */
  --text-8xl: 9.6rem;
  /* 96px */
  --text-9xl: 12.8rem;
  /* 128px */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;

  ::selection {
    color: var(--clr-white-nd);
    background: var(--clr-primary);
  }
}

body {
  background-color: var(--clr-white);
  color: var(--clr-black);
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
}

a {
  cursor: pointer;
  text-decoration: none;
  font-size: var(--text-base);
  color: #f4f4f5;
}

li {
  list-style: none;
  font-size: var(--text-base);
}

/* Responsive Fonts */

.heading-primary {
  font-size: var(--text-2xl);
  font-weight: bold;
}

.heading-secondary {
  font-size: var(--text-xl);
  font-weight: bold;
}

/* For Dark Theme */

.dark-mode{
  --clr-white: #1e1d1d;
  --clr-black: #f4f4f5;
  --clr-primary : #0e497a;
  --clr-bg-wrapper:#2b2b2b;

  /* Gradients  */

  --clr-gd-program: var(--clr-white);

  --clr-gd-gallery: var(--clr-white);

  --clr-gd-event: var(--clr-white);;
}

/* || General Styles Ends */


/* || Header Starts */
/* ---------------------- */
/* --Topbar Starts*/

.topbar {
  background: var(--clr-primary);
}

.topbar-body {
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.topbar-icons-wrapper {
  display: flex;
  gap: 1rem;
}

.topbar-icons-wrapper a {
  color: #f4f4f5;
}

.topbar-icons-wrapper a:hover {
  color: var(--clr-secondary);
}

.top-action-items img {
  height: 30px;
  width: 60px;
  object-fit: contain;
}

.topbar-action-wrapper{
  display: flex;
  gap: 1rem;
  align-items: center;
}

.theme-toggle{
  background: none;
  border: none;
  color: var(--clr-white-nd);
}

  /* The switch - the box around the slider */
  .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: auto;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--clr-black);
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 3px;
    background-color: var(--clr-white);
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: var(--clr-black);
  }

  input:focus + .slider {
    box-shadow: 0 0 1px var(--clr-black);
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

.topbar-action-wrapper ul {
  display: none;
}

.topbar-action-wrapper ul li {
  border-right: 1px solid var(--clr-white-nd);
  padding-right: 1rem;
}

/* --Topbar Ends */
/* ---------------------- */
/* --Midbar Starts */
.midbar {
  background: var(--clr-primary);
  padding-block: 2rem;
}

.midbar.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.midbar-logo-wrapper {
  height: 30px;
  width: 30px;
}

.midbar-logo-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* --Midbar Ends */
/* ---------------------- */
/* --MenuBar Starts */

.menu-bar {
  background: var(--clr-primary);
}

.menu-bar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--clr-primary);
  z-index: 10;
}

.header-main-menu {
  display: none;
  position: relative;
}

.drop-menu {
  user-select: none;
  position: relative;
}

.drop-menu:hover {
  .drop-items {
    visibility: visible;
  }
}

.drop-items {
  margin-top: 0.6rem;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  visibility: hidden;
  background: var(--clr-primary);
  padding-block: 10px;
  padding-inline: 18px;
  border: 1px solid var(--clr-black);
  z-index: 4;
  max-width: 170px;
  word-wrap: break-word;
}

#menu-bg{
  background:linear-gradient(to top,var(--clr-primary), var(--clr-secondary));
  padding-inline: 8px;
}

#menu-bg:hover{
  opacity: 0.7;
}

/* Hamburger Icon  */

#mbl-menu-icon {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

.line {
  width: 3.5rem;
  height: 0.2rem;
  background: #f4f4f5;
}

/* --MenuBar Ends */
/* ---------------------- */
/* --Mobile Menu Starts */

.header-main-menu.mblopen {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: #252525;
  width: 45vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 12;
}


.header-main-menu li a:hover{
  opacity: 0.6;
}

.header-main-menu li,
.header-main-menu li i {
  color: #f4f4f5;
  font-weight: bold;
}

.close-btn {
  color: #f4f4f5;
  position: absolute;
  top: 6rem;
}

#theme-toggle-mbl{
    margin-top: 40px;
}

/* --Mobile Menu Ends */
/* ---------------------- */
/* || Header Ends */


/* || Hero Starts */

.swiper-pagination-bullet {
  color: #000;
  opacity: 1 !important;
  background: var(--clr-white) !important;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff !important;
}

.hero-banner {
  height: 80vh;
  position: relative;
}

.hero-title h1 {
  font-size: 4rem;
  font-weight: bold;
}

.hero-banner-img {
  height: inherit;
  position: relative;
}

.hero-banner-img::before {
  position: absolute;
  content: "";
  background-color: black;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}

.hero-banner-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-banner-content {
  color: var(--clr-white-nd);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding: 1rem;
  text-align: center;
}

/* || Hero Ends */


/* || Notice Starts */

.notice {
  background-color: var(--clr-black-nd);
}

.notice-wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 2rem;
}

.notice-title {
  z-index: 2;
  background-color: var(--clr-primary);
  color: var(--clr-white-nd);
  padding-block: 2rem;
  padding-inline: 1rem;
  font-weight: bold;
  position: relative;
}

.notice-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  animation: notice 40s linear infinite
}

.notice-list:hover {
  animation-play-state: paused;
}

.list-item {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  background-color: var(--clr-primary);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}

@keyframes notice {
  0% {
    transform: translateX(10%);
  }

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

}

/* || Notice Ends */


/* || Introduction Stars */

.introduction {
  padding-block: 2rem;
  background: var(--clr-white);
  background: linear-gradient( to top, var(--clr-bg-wrapper), var(--clr-primary));
  color: var(--clr-white-nd);
}

.introduction-title {
  color: var(--clr-white-nd);
  margin-bottom: 2rem;
  position: relative;
}

.introduction-title::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.6rem;
  height: 90%;
  background: var(--clr-secondary);
  border-radius: 0.2rem;
}

.introduction-title h3 {
  margin-left: 1.6rem;
}

.introduction-desc p {
  color: var(--clr-black);
  line-height: 1.8;
  text-align: justify;
}

.introduction-imager-wrapper {
  height: 200px;
}

.introduction-imager-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
  position: relative;
}

/* || Introduction Ends */


/* || Our Programs Starts */

.program-box {
  background: var(--clr-primary);
  background: linear-gradient(var(--clr-primary), var(--clr-black-nd));
  text-align: center;
  padding: 1rem;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
}

.program-title h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--clr-white-nd);
}

.program-desc p {
  color: var(--clr-white-nd);
}

.program-img-wrapper {
  height: 250px;
}

.program-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* || Our Programs Ends */

/* || About Us Start  */

.about-us {
  position: relative;
  border-bottom: 1px solid var(--clr-black-nd);
}

.aboutus-desc {
  margin-top: 2rem;
}

.aboutus-desc p {
  text-align: justify;
  line-height: 1.8;
}

.aboutus-img-wrapper {
  height: 260px;
  position: relative;
}

.aboutus-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* -- About Us Details Starts */

.details-desc p {
  line-height: 1.8;
}

/* -- About Us Details Ends */

/* || About Us Ends  */

/* Principal Message Start  */

.principal-img {
  height: 250px;
  margin-block: 2rem;
}

.principal-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.principal-msg p {
  line-height: 1.8;
  text-align: justify;
}

/* Principal Message Ends  */

/* Our Team Start  */

.designation-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.designation-btn {
  border: none;
  padding: 1rem;
  color: var(--clr-black-nd);
  border-radius: 0.2rem;
  border: 1px solid var(--clr-black);
  transition: 0.2s linear;
}

.designation-btn:hover {
  background: transparent;
  border: 1px solid var(--clr-black);
  color: var(--clr-black);
}

.designation-btn.active {
  color: var(--clr-white-nd);
  background: var(--clr-primary);
}

.ourteam-box {
  box-shadow: 0 10px 50px rgb(166 209 237 / 20%);
  padding: 2rem;
}

.team-image {
  height: 250px;
}

.team-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 2rem;
  margin-block: 1rem;
  font-weight: bold;
  color: var(--clr-black);
}

.hide {
  display: none;
}

/* Our Team Ends  */

/* Events Starts */

.event-card {
  padding: 2rem;
  border: solid 1px var(--clr-black);
  margin-bottom: 2rem;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to left,var(--clr-white), var(--clr-bg-wrapper));
}

.event-content {
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.event-img {
  height: 200px;
  overflow: hidden;
}

.event-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  position: relative;
}

.event-img img:hover {
  transform: scale(1.1);
}

.event-title {
  position: relative;
}

.event-title::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: var(--clr-primary);
  height: 80%;
  width: 0.4rem;
}

.event-title a {
  margin-left: 1rem;
  color: var(--clr-black);
  font-size: 2.2rem;
  font-weight: 600;
}

.event-title a:hover {
  opacity: 0.6;
}

.event-desc {
  color: var(--clr-black);
  margin-block: 0.4rem;
}

.event-date {
  margin-top: 0.4rem;
  color: var(--clr-black);
  font-weight: 500;
}

.event-btn a{
  display: inline-block;
  color: var(--clr-white-nd);
  background: var(--clr-primary);
  padding: 1.2rem;
  transition: 0.3s ease-in-out;
  width: 100%;
  text-align: center;
  background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
}

.event-btn a:hover{
  transform: translate(2%);
}

/* --Side Bar Starts */

.sidebar-title {
  margin-bottom: 3rem;
}

.sidebar-title span {
  font-size: 2.4rem;
  font-weight: 500;
  position: relative;
}

.sidebar-title span::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  background-color: var(--clr-primary);
  width: 100%;
  height: 0.4rem;
}

.sidebar-contents {
  padding-left: 1rem;
}

.sidebar-contents a {
  color: var(--clr-black);
  font-size: 1.8rem;
}

.sidebar-contents a:hover {
  opacity: 0.6;
}

/* --Side Bar Ends */

/* Events Ends */

/* Events Single Starts */

#events-single-image-container {
  height: 300px;
  width: 100%;
  position: relative;
}

#events-single-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.single-category-wrapper{
  padding: 1rem;
    background: var(--clr-primary);
    background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.events-single-wrapper {
  padding-block: 1.8rem;
  margin-top: 2rem;
}

.events-single-title h2 {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.events-single-title h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--clr-primary);
  width: 0.4rem;
  height:100%;
  border-radius: 0.2rem;
}

.events-single-desc p {
  text-align: justify;
  font-size: 1.6rem;
}

.timevenue-events-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  padding: 1rem;
  background: var(--clr-primary);
  background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
  border-radius: 1rem;
}

.date-time-wrapper {
  color: var(--clr-white-nd);
}

.venue-wrapper{
  margin-left: 0.2rem;
  font-size: 2rem;
  color: var(--clr-white-nd);
}

.venue-wrapper {
  display: inline-block;
}

.venue-wrapper strong {
  margin-left: 0.4rem;
}

.share-events-wrapper {
  margin-top: 2rem;
}

.share-events-text h4 {
  text-align: center;
  font-weight: bold;
  color: var(--clr-black);
  font-size: 2rem;
}

.timevenue-icons-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.6rem;
}

.single-icon:hover {
  opacity: 0.8;
}

.single-icon i {
  color: var(--clr-white);
  font-size: 2rem;
}

.single-icon button {
  border: none;
  background-color: transparent;
}

.share-icons-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.6rem;
  justify-content: center;
}

/* Events SideBar Single Starts */

.other-events-heading {
  border-radius: 1rem;
  position: relative;
}

.other-events-heading::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.4rem;
  width: 18rem;
  border-radius: 1rem;
  background-color: var(--clr-primary);
}

.other-events-heading h4 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-black);
}

.other-events-content {
  margin-top: 3rem;
}

.other-events-card a {
  cursor: pointer;
  border: 1.2px solid var(--clr-black);
  border-radius: 1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

#sidebar-image-container {
  padding: 0.4rem;
  border: 1px solid transparent;
  background: var(--clr-primary);
  border-radius: 2rem;
  height: 70px;
  width: 70px;
  min-width: 70px;
}

#sidebar-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}


.other-events-card a:hover {
  background-color: var(--clr-primary);

  & .other-events-title p {
    color: var(--clr-white-nd);
  }

  #sidebar-image-container {
    border: 0.6px solid var(--clr-white-nd);
  }

  .other-events-card {
    border: 1.2px solid var(--clr-white-nd);
  }
}

.other-events-title p {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 1.6rem;
}

.bg-wrapper {
  border-radius: 1rem;
  padding: 1.8rem;
  background: var(--clr-bg-wrapper);
}

.category-cards{
  background: linear-gradient(to left,var(--clr-secondary), var(--clr-primary));
  padding: 1rem;
}

/* Events Single Ends */

/* Blog Start */

.blog-card {
  border: 0.1px solid var(--clr-black);
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-card-image-container {
  width: 100%;
  height: auto;
  position: relative;
}

.blog-card-image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.blog-title {
  color: var(--clr-black);
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0 !important;
  transition: 0.2s ease;
}

.blog-title:hover {
  opacity: 0.7;
}

.description {
  padding: 1rem 0;
  color: var(--clr-black);
  font-size: 1.6rem;
}

.blog-time {
  font-size: 1.4rem;
  color: var(--clr-black);
}

.blog-btn {
  width: 100%;
  text-align: center;
}

.blog-btn a {
  width: 100%;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem;
  color: var(--clr-white-nd);
  background-color: var(--clr-primary);
  border-radius: 0.4rem;
  /* border: 1px solid transparent; */
  transition: 0.3s ease;
  background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
}

.blog-btn a:hover {
  opacity: 0.7;
}

/* Blog Ends */

/* Blog Single Starts */

.blog-image-wrapper {
  position: relative;
}

.blog-date-wrapper {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.blog-date-wrapper p {
  border-radius: 1rem;
  padding: 1rem;
  color: var(--clr-white-nd);
  background: var(--clr-primary);
}

.category-author-wrapper {
  padding: 1rem;
  background: var(--clr-primary);
  background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap:6px;
}

.author-wrapper span {
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--clr-white-nd);
}

.author-wrapper span:hover {
  text-decoration: underline;
}

.single-category {
  margin-right: 1rem;
  border-radius: 3rem;
  color: var(--clr-white-nd);
  border: 1.2px solid var(--clr-white-nd);
  display: inline-block;
  padding: 0.6rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.single-category:hover {
  background: none;
  color: var(--clr-black-nd);
  background: var(--clr-white-nd);
}

.blog-single-image-container {
  height: 300px;
}

.blog-single-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.blog-title-wrapper {
  margin-top: 1rem;
  position: relative;
}

.blog-title-wrapper h2 {
  position: relative;
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--clr-black);
  padding-left: 1rem;
}

.blog-title-wrapper h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--clr-primary);
  width: 0.4rem;
  height: 100%;
  border-radius: 0.2rem;
}

.blog-single-desc{
  margin-top: 1rem;
  text-align: justify;
}

.share-blog-wrapper{
  margin-top: 1rem;
}

.share-blog-text h4 {
  text-align: center;
  font-weight: bold;
  color: var(--clr-black);
  font-size: 2rem;
}

/* Other Blog Side Bar */

.other-blogs-heading {
  border-radius: 1rem;
  position: relative;
}

.other-blogs-heading::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.4rem;
  width: 18rem;
  border-radius: 1rem;
  background-color: var(--clr-primary);
}

.other-blogs-heading h4 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-purple);
}

.other-blogs-content {
  margin-top: 3rem;
}

.other-blogs-card a {
  cursor: pointer;
  border: 1.2px solid var(--clr-black);
  border-radius: 1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.other-blogs-card a:hover {
  background-color: var(--clr-primary);

  & .other-blogs-title p {
    color: var(--clr-white-nd);
  }

  #sidebar-image-container {
    border: 0.6px solid var(--clr-white);
  }

  .other-blogs-card {
    border: 1.2px solid var(--clr-white);
  }
}

.other-blogs-title p {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 1.6rem;
}

/* Other Blog Side Bar */

/* Blog Single Ends */

/* Gallery Starts */

.gallery-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-wrapper:hover {
  .image-overlay {
    height: 100%;
  }

  #gallery-image-container img {
    opacity: 0.8;
  }

  #gallery-image-container img {
    scale: 1.2;
  }

  .gallery-image-title {
    padding-block: 100px;
    background: var(--clr-primary);
    background: linear-gradient(var(--clr-primary), var(--clr-secondary));
    opacity: 0.9;
  }
}

#gallery-image-container {
  border-radius: 1rem;
  height: 220px;
}

#gallery-image-container img {
  border-radius: 1rem;
  opacity: 0.4;
  border-radius: 1rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.image-overlay {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  background: var(--clr-black-nd);
  transition: all 0.4s ease-in-out;
}

.gallery-image-title {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%);
  color: var(--clr-white-nd);
  transition: all 0.4s ease-in-out;
  padding-block: 0.6rem;
  padding-inline: 0.6rem;
}

.gallery-image-title *{
  font-size: 2rem;
  font-weight: bold;
}

/* Gallery Ends */

/* Gallery Single Starts */

.single-gallery-title {
  margin-bottom: 2rem;
}

.single-gallery-title h2 {
  font-weight: bold;
  text-align: left;
  font-size: 2.5rem ;
  position: relative;
  padding-left: 1rem;
}

.single-gallery-title h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--clr-primary);
  width: 0.4rem;
  height: 100%;
}

#gallery-single-image-container {
  cursor: zoom-in;
  padding: 1rem;
  border: 1.5px solid var(--clr-primary);
  border-radius: 0.4rem;
  height: 300px;
  width: 100%;
  /* border-radius: 1rem; */
}

#gallery-single-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* border-radius: 1rem; */
}

/* Gallery Single Ends */

/* Gallery Modal Starts */

#prev-img,
#next-img {
  position: absolute;
  top: auto;
  bottom: auto;
  z-index: 1032;
  padding: 10px;
  cursor: pointer;
}
#prev-img {
  left: 5%;
}
#next-img {
  right: 5%;
}

#prev-img i,
#next-img i {
  font-size: 40px;
}

#gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1030;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 100px;
  display: grid;
  place-items: center;
}

@keyframes zoom {
  0% {
    scale: 0;
  }

  100% {
    scale: 1;
  }
}

#close-out {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

#gallery-modal img {
  animation: zoom 300ms ease-in;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 800px;
  max-height: 600px;
  position: relative;
  z-index: 2;
}

.view-img {
  cursor: pointer;
}

#close {
  position: absolute;
  right: 5%;
  top: 50px;
  z-index: 1000;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Gallery Modal Ends */

/* Contact Us Starts */

/* Home Contact Starts */

.contact-wraper{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.maps-wrapper{
  flex-basis: 100%;
}

.maps-wrapper iframe{
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.form-wrapper {
  flex-basis: 100%;
  padding-block: 2rem;
  padding-inline: 2rem;
  height: 100%;
  background: linear-gradient(var(--clr-primary), rgba(21, 20, 20, 0.8)),
    url(../assets/images/intro2.jpg);
  background-position: center center;
  background-size: cover;
}

.form-title h4 {
  color: var(--clr-white-nd);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.form-contact-info {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.form-contact-info::after {
  position: absolute;
  content: "";
  background: var(--clr-secondary);
  height: 0.4rem;
  width: 100%;
  bottom: -12px;
  left: 0;
}

.form-number,
.form-email {
  display: inline;
  color: var(--clr-white-nd);
  font-size: 1.6rem;
}

.form-desc {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: var(--clr-white-nd);
}

.contact-form {
  margin-block: 1rem;
}

.name-wrapper{
  display: flex;
  flex-wrap: wrap;
}

.first-name{
  flex-basis: 100%;
}

.last-name{
  flex-basis: 100%;
}

.emailnum-wrapper{
  display: flex;
  flex-wrap: wrap;
}

.contact-email{
  flex-basis: 100%;
}

.contact-number{
  flex-basis: 100%;
}

.contact-form input {
  outline: none;
  width: 100%;
  font-size: 1.6rem;
  padding: 1.6rem;
  color: var(--clr-black);
  background : var(--clr-white);
  margin-bottom: 4px;
}

.contact-form textarea {
  font-size: 1.6rem;
  outline: none;
  padding: 1.6rem;
  min-height: 15rem;
  color: var(--clr-black);
  background: var(--clr-white);
}

.submit-btn {
  padding-inline: 2rem;
  padding-block: 1rem;
  font-size: 1.6rem;
  border: 1px solid transparent;
  background: var(--clr-primary);
  color: var(--clr-white-nd);
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.submit-btn:hover {
  background: transparent;
  background: var(--clr-secondary);
}

/* Contact Us Ends */

/* Facility Single Starts */

#facility-single-image-container {
  height: 300px;
  width: 100%;
}

#facility-single-image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.facility-single-wrapper{
  margin-top: 1rem;
}

.facility-single-title h2 {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1rem;
}

.facility-single-title h2::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--clr-primary);
  width: 0.4rem;
  height: 100%;
  border-radius: 0.2rem;
}

.facility-single-desc {
  margin-top: 2rem;
}

.facility-single-desc p {
  text-align: justify;
  font-size: 1.6rem;
}

.share-facility-wrapper {
  margin-top: 1rem;
  border-radius: 1rem;
}

.share-facility-text h4 {
  text-align: center;
  font-weight: bold;
  color: var(--clr-black);
  font-size: 2rem;
}

.share-icons-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.6rem;
  justify-content: center;
}

.single-icon {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--clr-black);
}

.single-icon:hover {
  opacity: 0.8;
}

.single-icon i {
  color: var(--clr-white);
  font-size: 2rem;
}

.single-icon button {
  border: none;
  background-color: transparent;
}

/* Facility SideBar Single Starts */

.other-facility-heading {
  border-radius: 1rem;
  position: relative;
}

.other-facility-heading::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.4rem;
  width: 18rem;
  border-radius: 1rem;
  background-color: var(--clr-primary);
}

.other-facility-heading h4 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-black);
}

.other-facility-content {
  margin-top: 3rem;
}

.other-facility-card a {
  cursor: pointer;
  border: 1.2px solid var(--clr-black);
  border-radius: 1rem;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.other-facility-card a:hover {
  background-color: var(--clr-primary);

  & .other-facility-title p {
    color: var(--clr-white);
  }

  #sidebar-image-container {
    border: 0.6px solid var(--clr-black);
  }

  .other-facility-card {
    border: 1.2px solid var(--clr-black);
  }
}

.other-facility-title p {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 1.6rem;
}

/* Facility Sidebar Single Ends */

/* Facility Single Ends */

/* || Program Starts */

/* --Program Single Starts */

.program-single-img{
  height: 250px;
}

.program-single-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.program-single-list li{
  list-style: lower-roman;
  margin-left: 2rem;
}

/* --Program Single Ends */

/* --FAQ Starts */

.faq-accordion {
  margin-top: 2rem;
}

.faq-accordion .accordion-button {
  font-size: 1.6rem !important;
  font-weight: bold !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
}

.accordion-body strong {
  font-size: 1.4rem;
  font-weight: 500;
}

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

.dark-mode .accordion-button::after {
  filter: invert(1);
}

/* --FAQ Ends */

/* || Program Ends */

/* Notice Starts */

.notice-image-wrapper {
  position: relative;
}

.notice-date-wrapper {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.notice-date-wrapper p {
  border-radius: 1rem;
  padding: 1rem;
  color: var(--clr-white-nd);
  background: var(--clr-primary);
}

.single-category {
  margin-right: 1rem;
  border-radius: 3rem;
  color: var(--clr-white-nd);
  border: 1.2px solid var(--clr-white-nd);
  display: inline-block;
  padding: 0.6rem;
  cursor: pointer;
  transition: 0.3s ease;
}

/* .notice-single-image-container {
  height: 300px;
} */

.notice-single-image-container img {
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
}

.notice-title-wrapper {
  margin-top: 1rem;
  position: relative;
}

.notice-title-wrapper h2 {
  position: relative;
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--clr-black);
  padding-left: 1rem;
}

.notice-title-wrapper h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: var(--clr-primary);
  width: 0.4rem;
  height: 100%;
  border-radius: 0.2rem;
}

.notice-single-desc{
  margin-top: 1rem;
  text-align: justify;
}

.share-notice-wrapper{
  margin-top: 1rem;
}

.share-notice-text h4 {
  text-align: center;
  font-weight: bold;
  color: var(--clr-black);
  font-size: 2rem;
}

/* Notice SideBar Starts */

.other-notice-heading {
  border-radius: 1rem;
  position: relative;
}

.other-notice-heading::after {
  position: absolute;
  content: "";
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0.4rem;
  width: 18rem;
  border-radius: 1rem;
  background-color: var(--clr-primary);
}

.other-notice-heading h4 {
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem;
  color: var(--clr-purple);
}

.other-notice-content {
  margin-top: 3rem;
}

.other-notice-card a {
  cursor: pointer;
  border: 1.2px solid var(--clr-black);
  border-radius: 1rem;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.other-notice-card a:hover {
  background-color: var(--clr-primary);

  & .other-notice-title p {
    color: var(--clr-white-nd);
  }

  #sidebar-image-container {
    border: 0.6px solid var(--clr-white);
  }

  .other-notice-card {
    border: 1.2px solid var(--clr-white);
  }
}

.other-notice-title p {
  color: var(--clr-black);
  font-weight: bold;
  font-size: 1.6rem;
}

/* Notice SideBar Ends */

/* Notice Ends */

/* All Notice Starts */

.all-notice-title a{
  color: var(--clr-black);
  font-weight: 600;
  font-size: 1.8rem;
}

.all-notice-title a:hover{
 opacity: 0.7;
}

.all-notice-card{
  box-shadow: 0px 13px 16px 5px rgb(166 209 237 / 20%);
  border-radius: 15px;
  padding: 10px;
}

.notice-date-time-wrapper{
  color: var(--clr-black);
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.notice-image-container{
  height: 220px;
}

.notice-image-container img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#notice-btn{
  width: 100%; 
  text-align: center;
}

/* All Notice Starts */


/* || Footer Starts */

.footer-section {
  padding-block: 4rem;
  padding-inline: 2rem;
  background-color: var(--clr-primary);
  background: linear-gradient(to top,var(--clr-primary), rgb(37, 110, 184,0.9)), url(../assets/images/backgrounds/schoolsets2.jpg);
  background-size: contain;
  background-position: center center;
}

.footer-logo-container {
  height: 40px;
  width: 40px;
}

.footer-logo-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.company-info {
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.company-desc {
  color: var(--clr-white-nd);
  margin-top: 1rem;
}

.company-desc p {
  margin: 0;
  text-align: justify;
}

.quick-links-wrapper {
  text-align: center;
}

.footer-heading {
  color: var(--clr-white-nd);
  font-weight: bold;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: var(--clr-white-nd);
}

.footer-links a:hover {
  color: var(--clr-black);
}

.footer-links a>i {
  margin-right: 0.6rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-section hr {
  height: 2px;
  width: 100%;
  color: var(--clr-white-nd);
}

.footer-bottom {
  color: var(--clr-white-nd);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-bottom:first-child {
  font-size: 1.4rem;
}

/* || Footer Ends */


/* Index Page Section Starts */

#program-home{
  background: linear-gradient(to bottom, var(--clr-bg-wrapper), var(--clr-gd-program) ), url(../assets/images/backgrounds/schoolsets.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#gallery-home{
  background: linear-gradient(to bottom, var(--clr-bg-wrapper), var(--clr-gd-gallery) ), url(../assets/images/backgrounds/schoolsets1.jpg);
  background-position: bottom;
  background-size: 1000px;
}

#event-home{
  background: linear-gradient(to bottom,var(--clr-primary), var(--clr-gd-event)), url(../assets/images/backgrounds/schoolsets1.jpg);
  background-size: contain;
  background-position: center center;

.section-title{
    color: var(--clr-white-nd);
  }
.section-subtitle{
    color: var(--clr-white-nd);
  }
.section-action a{
    color: var(--clr-white-nd);
  }
.section-action a:hover{
    color: var(--clr-secondary);
  }
}

#blog-home{
  background: linear-gradient(to bottom,var(--clr-bg-wrapper), var(--clr-white));
}

/* CTA Starts */

.cta-body{
  position: relative;
  padding: 3rem;
  background: linear-gradient(to right,var(--clr-primary), var(--clr-secondary));
  border-radius: 2rem;
  margin-bottom: -2rem;
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 1px 1px 5px 0px #2b2b2b;
}

.cta-body .cta-text h2{
  font-weight: bold;
  font-size: 2.4rem;
  color: var(--clr-white-nd);
}

.cta-body .cta-action a{
  padding-block: 1.6rem;
  padding-inline: 1.8rem;
  background: var(--clr-primary);
  border-radius: 1rem;
  transition: 0.2s linear;
  border: 1px solid transparent;
}

.cta-body .cta-action a:hover{
  background: transparent;
  border: 1px solid var(--clr-white-nd);
}

/* CTA Ends */

/* Index Page Section Ends */

/* Float Icons */

.float-icons-wrapper {
  z-index: 10;
  display: flex;
  position: fixed;
  right: 1.4rem;
  bottom: 1rem;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s ease;
  transform: translateY(6rem);
}

/* Backto Top */

.backtotop {
  color: var(--clr-white-nd);
  /* display: none; */
  padding-block: 1.1rem;
  padding-inline: 1.4rem;
  background: var(--clr-secondary);
  border-radius: 50%;
  z-index: 5;
  transition: all 0.4s ease;
}

.backtotop i {
  font-size: 2.6rem;
}

.float-icons-wrapper.visible {
  transform: translateY(0rem);
  /* display: block; */
}

/* Whatsapp Icons */

.whatsapp-icon {
  z-index: 5;
  color: var(--clr-white-nd);
  padding-block: 1.1rem;
  padding-inline: 1.4rem;
  background: #008000;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.whatsapp-icon i {
  font-size: 2.6rem;
}


/* Pop Up Starts */


#pop-up {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow-y: scroll;
  padding: 1rem 0;
}

.popup-container {
  animation: translatePopup 400ms ease-in;
  background: var(--clr-white);
}

.popup-container *{
  font-weight: bold;
  font-size: 2.4rem;
}

#popup-close {
  cursor: pointer;
}

@keyframes translatePopup {
  0% {
    opacity: 0.5;
    translate: 0 25px;
}

100% {
    opacity: 1;
    translate: 0 0;
}
  
}
/* Pop Up Ends */

/* Custom Error */

.error {
  max-width: 60%;
}
.error-text{
  text-transform: capitalize;
  font-weight: bold;
  font-size: 3rem;
  color: var(--clr-black);
}

/* Under Maintenance */

.under-maintenance-bg {
  background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
  background-size: 400% 400%;
  -webkit-animation: Gradient 15s ease-in-out infinite;
  -moz-animation: Gradient 15s ease-in-out infinite;
  animation: Gradient 15s ease-in-out infinite;
  height: 100vh;

}

@-webkit-keyframes Gradient {
  0% {
      background-position: 0% 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0% 50%
  }
}

@-moz-keyframes Gradient {
  0% {
      background-position: 0% 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0% 50%
  }
}

@keyframes Gradient {
  0% {
      background-position: 0% 50%
  }

  50% {
      background-position: 100% 50%
  }

  100% {
      background-position: 0% 50%
  }

}

.under-maintenance-wrapper {
  position: absolute;
  top: 20%;
  left: 4%;
}

.under-maintenance-img {
  height: 120px;
}

.under-maintenance-img img {
  height: 100%;
  object-fit: contain;
}

.under-maintenance-title {
  font-size: 3rem;
  color: #f6f6f6;
  margin-bottom: 0;
  animation: flicker-2 2s linear infinite both;

}

.under-maintenance-subtitle {
  font-size: 5rem;
  font-weight: bold;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.under-maintenance-subtitle span {
  color: #d1d1d1;
  animation: ping 1s ease-in-out infinite both;

}

@keyframes ping {
  0% {
      transform: scale(0.2);
      opacity: 0.8;
  }

  80% {
      transform: scale(1.2);
      opacity: 0;
  }

  100% {
      transform: scale(2.2);
      opacity: 0;
  }
}

@keyframes flicker-2 {
  0%,
  100% {
    opacity: 1;
  }
  41.99% {
    opacity: 1;
  }
  42% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  43.01% {
    opacity: 1;
  }
  45.99% {
    opacity: 1;
  }
  46% {
    opacity: 0;
  }
  46.9% {
    opacity: 0;
  }
  46.91% {
    opacity: 1;
  }
  51.99% {
    opacity: 1;
  }
  52% {
    opacity: 0;
  }
  52.8% {
    opacity: 0;
  }
  52.81% {
    opacity: 1;
  }
}


.under-maintenance-desc {
  font-size: 2rem;
  color: #ededed;
}

@media (min-width: 768px) {
  .under-maintenance-title {
      font-size: 4rem;
  }

  .under-maintenance-subtitle {
      font-size: 7rem;
  }

  .under-maintenance-desc {
      font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .under-maintenance-title {
      font-size: 5rem;
  }

  .under-maintenance-subtitle {
      font-size: 8rem;
  }

  .under-maintenance-desc {
      font-size: 3.4rem;
  }
}

@media (min-width: 1280px) {
  .under-maintenance-title {
      font-size: 6rem;
  }

  .under-maintenance-subtitle {
      font-size: 10rem;
  }

  .under-maintenance-desc {
      font-size: 3.6rem;
  }
}

/* Under Maintenance Ends */

/* Loader for iframe */
.holds-the-iframe {
  background:url('/static/assets/images/loader5.gif') center center no-repeat;
}
/* End Loader for iframe */