@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
:root {
  --primary-color: #ffffe3;
  --secondary-color: #fffff8;
  --bold-color: #04415e;
  --bg-color-one: #fff;
  --bg-color-two: #faf8d9;
  --bg-color-three: #e4e4c0;
  --font-color: #65644e;
  --font-color-two: #654321;
  --font-color-three: #786c3b;
  --bg-color-four: #fbf4d8;
  --bg-color-tr: rgb(255, 255, 255, 0.5);
  --bg-color-grey: #f2f2f2;
  --warning-red: #e60000;
  --card-bttom: #bcb88a;
  --profile-background: var(--secondary-color);
  --heading: linear-gradient(to right, #65644e, #bcb88a);
  --name: linear-gradient(to right, #654321, #786c3b);
  --green-color: #00b33c;
  --border-color: #b3b3b3;
  --font-sub-color: #935f4c;
  --para-color: #616161;
  --root-border: #864012;
  --border-one-color: #bcb88a;
  --rbw: 2px;
  --max-width: 100rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  transition: all 0.2s;
  min-height: 100vh;
  height: auto;
  width: 100vw;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  overflow: hidden;
}

main {
  position: relative;
  padding: 6rem 1rem 1rem;
  overflow: hidden;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

@font-face {
  font-family: "MelonCamp";
  src: url("../fonts/Melon_Camp.woff");
}
@font-face {
  font-family: "AngelBanditDemoRegular";
  src: url("../fonts/AngelBanditDemoRegular.woff");
}
@font-face {
  font-family: "NotoSansMalayalam";
  src: url("../fonts/NotoSansMalayalam.woff");
}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.ml {
  font-family: "NotoSansMalayalam";
  font-weight: 400;
}

body.dark {
  --primary-color: #2b2b21;
  --secondary-color: #737359;
  --bold-color: #ffffe3;
  --bg-color-one: rgb(4, 65, 94, 0.4);
  --bg-color-two: rgb(43, 43, 33, 0.5);
  --bg-color-three: rgb(144, 144, 111, 0.3);
  --font-color: #fffff8;
  --font-color-two: #e4e4c0;
  --font-color-three: #f9f2ec;
  --bg-color-four: rgb(43, 43, 33, 0.5);
  --bg-color-tr: rgba(0, 0, 0, 0.5);
  --bg-color-grey: rgb(43, 43, 33, 0.5);
  --warning-red: #ff8080;
  --card-bttom: #57c785;
  --profile-background: linear-gradient(90deg,
          rgb(66, 66, 66, 0.5),
          rgb(3, 3, 3, 0.5));
  --heading: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
  --name: linear-gradient(to right, #96fbc4, #f9f586);
}

/*---------------- Header Section ---------------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 100;
  height: auto;
  width: 100vw;
}

.nav-bar-section {
  animation: navbar 1s ease-in-out 1 forwards;
  height: auto;
  width: 100% auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

@keyframes navbar {
  0% {
    transform: translateY(-5rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
.nav-bar-content {
  position: relative;
  height: 5rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.nav-bar-content .border-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  border-bottom: 1px solid var(--border-color);
  transform: translateX(-50%);
  max-width: var(--max-width);
  height: 0.5rem;
  width: 0rem;
  animation: borderbottom 2s ease-in-out forwards;
}
@keyframes borderbottom {
  0% {
    height: 0.5rem;
    width: 0%;
  }
  100% {
    height: 0.5rem;
    width: 100%;
  }
}
.nav-bar-content .container {
  height: 100%;
  width: 100rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.nav-bar-content .container .fam-name-sec {
  height: 5rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.nav-bar-content .container .fam-name-sec a h4 {
  font-family: "AngelBanditDemoRegular";
  color: var(--bold-color);
  font-size: 1.5em;
}
.nav-bar-content .container .fam-name-sec .theme-button {
  margin-right: 1rem;
}
.nav-bar-content .container .fam-name-sec .switch:has(input:checked) .slider {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}
.nav-bar-content .container .fam-name-sec .switch:has(input:checked) .slider .icon {
  transform: translateX(-1.4rem);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.nav-bar-content .container .fam-name-sec .switch {
  position: relative;
  height: auto;
  width: auto;
}
.nav-bar-content .container .fam-name-sec .switch input {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
}
.nav-bar-content .container .fam-name-sec .switch .slider {
  background-color: var(--primary-color);
  padding: 2px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  height: 1.8rem;
  width: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0;
}
.nav-bar-content .container .fam-name-sec .switch .slider .icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.2s;
  height: 1.3rem;
  width: 1.3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.nav-bar-content .container .fam-name-sec .switch .slider .icon i {
  color: var(--bold-color);
  font-size: 0.8em;
}
.nav-bar-content .container .fam-name-sec .switch input:checked + .slider .icon {
  transform: translateX(-1.4rem);
}
.nav-bar-content .container .fam-name-sec .switch input:checked + .slider .icon i {
  rotate: -360deg;
}
.nav-bar-content .container .nav-bar-menu {
  font-family: "Poppins", sans-serif;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: centre;
  gap: 0.5rem;
}
.nav-bar-content .container .nav-bar-menu a {
  position: relative;
  padding: 0.5rem 2rem;
}
.nav-bar-content .container .nav-bar-menu a h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--bold-color);
  font-weight: 500;
}
.nav-bar-content .container .nav-bar-menu .login {
  padding: 0.5rem 3rem;
  border-radius: 5rem;
  background-color: var(--bold-color);
  border: 1px solid var(--bold-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.nav-bar-content .container .nav-bar-menu .login h4 {
  color: var(--primary-color);
}
.nav-bar-content .container .nav-bar-menu .login:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}
.nav-bar-content .container .nav-bar-menu .login:hover h4 {
  color: var(--bold-color);
}
.nav-bar-content .container .nav-bar-menu .nav-menu h4 {
  text-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
}
.nav-bar-content .container .nav-bar-menu .nav-menu .nav-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: var(--bold-color);
  border-radius: 0.5rem;
  transition: all 0.2s;
  height: 0.1rem;
  width: 100%;
}
.nav-bar-content .container .nav-bar-menu .nav-menu::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: var(--bold-color);
  border-radius: 0.5rem;
  transition: all 0.2s;
  height: 0.1rem;
  width: 0%;
}
.nav-bar-content .container .nav-bar-menu .nav-menu:hover h4 {
  transform: translateY(-2px);
}
.nav-bar-content .container .nav-bar-menu .nav-menu:hover::after {
  height: 0.1rem;
  width: 100%;
}
.nav-bar-content .container .nav-bar-menu .nav-menu:hover::after .nav-border {
  height: 0.1rem;
  width: 0%;
}
.nav-bar-content .container .nav-bar-menu .show-profile {
  position: relative;
  height: 3rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.nav-bar-content .container .nav-bar-menu .show-profile a {
  padding: 0;
  margin: 0;
}
.nav-bar-content .container .nav-bar-menu .show-profile img {
  border: 1px solid var(--bg-color-three);
  overflow: hidden;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
}
.nav-bar-content .container .nav-bar-menu .show-profile .drop-mem-icon {
  height: 100%;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.nav-bar-content .container .nav-bar-menu .show-profile .drop-mem-icon button {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  outline: none;
  width: auto;
  padding: 0.1rem;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
}
.nav-bar-content .container .nav-bar-menu .show-profile .drop-mem-icon button i {
  color: var(--bold-color);
}
.nav-bar-content .container .nav-bar-menu .show-profile .drop-mem-icon button .rotate {
  rotate: -180deg;
}
.nav-bar-content .container .nav-bar-menu .show-profile .drop-mem-icon button:hover {
  background-color: var(--bg-color-three);
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown {
  position: absolute;
  top: 3.5rem;
  right: 0;
  display: grid;
  grid-template-rows: 0fr;
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul {
  padding: 0;
  list-style: none;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 1rem;
  overflow: hidden;
  min-width: 12rem;
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul li {
  min-width: 12rem;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul li h4 {
  color: var(--bold-color);
  font-size: 0.9em;
  font-weight: 500;
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul li a {
  background-color: var(--bg-color-two);
  color: var(--font-color);
  font-weight: 500;
  padding: 0.2rem 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul li a:hover {
  color: var(--bg-color-two);
  background-color: var(--font-color);
}
.nav-bar-content .container .nav-bar-menu .show-profile .member-dropdown ul li .log-out {
  margin-top: 1rem;
}
.nav-bar-content .container .nav-bar-menu .show-profile .show {
  grid-template-rows: 1fr;
}
.nav-bar-content .menu-icon-sec {
  display: none;
}
.nav-bar-content .menu-close-icon {
  display: none;
}

@media only screen and (max-width: 1600px) {
  .nav-bar-content {
    width: 98%;
  }
}
@media only screen and (max-width: 990px) {
  .nav-bar-content {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 0;
  }
  .nav-bar-content .container .fam-name-sec a h4 {
    margin-top: 1rem;
  }
  .nav-bar-content .container .nav-bar-menu {
    display: none;
  }
  .nav-bar-content .menu-icon-sec {
    cursor: pointer;
    display: block;
    height: 5rem;
    width: auto;
  }
  .nav-bar-content .menu-icon-sec .menu-cnt {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .nav-bar-content .menu-icon-sec .menu-icon {
    background-color: var(--bold-color);
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
  }
  .nav-bar-content .menu-icon-sec .menu-icon .menu-bar {
    background-color: var(--primary-color);
    transition: all 0.5s;
    height: 2px;
    width: 15px;
  }
  .nav-bar-content .menu-close-icon {
    display: none;
  }
  .navbar-sm-content {
    height: 100vh;
    width: 100vw;
  }
  .navbar-sm-content .container {
    padding: 0;
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    gap: 0;
  }
  .navbar-sm-content .container .nav-bar-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem;
    background-color: var(--secondary-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0;
    animation: showNavbarMenu 0.5s ease-in-out 0.5s 1 forwards;
    height: auto;
    width: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
  }
  .navbar-sm-content .container .nav-bar-menu a {
    padding: 0;
    height: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile {
    position: relative;
    padding: 0.5rem;
    border: 1px solid var(--border-one-color);
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 0.5rem;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile img {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    border: 1px solid var(--bg-color-three);
    border-radius: 50%;
    z-index: 10;
    height: 3rem;
    width: 3rem;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .drop-mem-icon {
    display: none;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    height: auto;
    width: 100%;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul {
    padding: 0;
    list-style: none;
    background-color: var(--secondary-color);
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    min-width: 12rem;
    height: auto;
    width: 100%;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul li {
    min-width: 12rem;
    padding: 0;
    height: 3rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul li h4 {
    color: var(--bold-color);
    font-size: 0.9em;
    font-weight: 500;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul li a {
    background-color: var(--bg-color-two);
    color: var(--font-color);
    font-weight: 500;
    padding: 0.2rem 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.5rem;
    max-width: 10rem;
    max-height: 2.5rem;
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul li a:hover {
    color: var(--bg-color-two);
    background-color: var(--font-color);
  }
  .navbar-sm-content .container .nav-bar-menu .show-profile .member-dropdown ul li:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
  }
  @keyframes showNavbarMenu {
    0% {
      opacity: 0;
      height: 0;
      width: 0;
    }
    100% {
      opacity: 1;
      height: auto;
      width: 20rem;
    }
  }
  .navbar-sm-content .container .menu-icon-sec {
    cursor: pointer;
    display: block;
    height: 5rem;
    width: auto;
  }
  .navbar-sm-content .container .menu-icon-sec .menu-icon {
    position: relative;
    background-color: var(--bold-color);
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .navbar-sm-content .container .menu-icon-sec .menu-icon .menu-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.5s;
    border-radius: 1rem;
    height: 2px;
    width: 15px;
  }
  .navbar-sm-content .container .menu-icon-sec .menu-icon .menu-bar:nth-child(1) {
    transform: translate(-50%) rotate(-45deg);
  }
  .navbar-sm-content .container .menu-icon-sec .menu-icon .menu-bar:nth-child(2) {
    width: 0;
  }
  .navbar-sm-content .container .menu-icon-sec .menu-icon .menu-bar:nth-child(3) {
    transform: translate(-50%) rotate(45deg);
  }
  .navbar-sm-content .container .menu-close-icon {
    display: block;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: menuCloseIcon 1s ease-in-out 1 forwards;
  }
  .navbar-sm-content .container .menu-close-icon .cnt {
    background-color: var(--bold-color);
    border-radius: 50%;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    cursor: pointer;
  }
  .navbar-sm-content .container .menu-close-icon .cnt .material-symbols-rounded {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" -25, "opsz" 48;
    color: var(--primary-color);
  }
  @keyframes menuCloseIcon {
    0% {
      opacity: 0;
      bottom: -3rem;
    }
    100% {
      opacity: 1;
      bottom: 5rem;
    }
  }
  .navbar-sm-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    height: 0;
    width: 100%;
    animation: navbarBackground 0.5s ease-in-out forwards;
  }
  .navbar-sm-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    height: 0;
    width: 100%;
    animation: navbarBackground 0.5s ease-in-out forwards;
  }
  @keyframes navbarBackground {
    0% {
      height: 0;
    }
    100% {
      height: 50vh;
    }
  }
}
@media only screen and (max-width: 600px) {
  .nav-bar-content .container .fam-name-sec a h4 {
    text-align: center;
    font-size: 0.95em;
  }
}
/*---------------- End Header section -----------------------------------*/
/*----------------- Foooter Section ----------------------------------*/
footer {
  margin-top: 0.5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
footer .copy-rigth-sec {
  opacity: 0;
  animation: footerContent 1s ease-in-out 1 forwards;
}
footer .copy-rigth-sec h4 {
  text-align: center;
  color: var(--bold-color);
  font-size: 0.95em;
  font-weight: 600;
}
footer .powered-by {
  opacity: 0;
  animation: footerContent 1s ease-in-out 1 forwards;
}
footer .powered-by a {
  text-align: center;
  color: var(--bold-color);
  font-size: 0.8em;
  font-weight: 500;
}
footer .powered-by a img {
  height: 0.5rem;
  width: 0.5rem;
}

@keyframes footerContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------- End Footer Section -------------------------------*/
.alert {
  position: absolute;
  top: 3rem;
  right: 0;
  transform: translateX(200rem);
  z-index: 100;
}
.alert .content {
  padding: 1rem 2rem;
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.alert .content .side-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.5rem;
}
.alert .content img {
  height: 2rem;
  width: 2rem;
}
.alert .content h4 {
  font-size: 1em;
  font-weight: 600;
  margin-right: 2rem;
}
.alert .content button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  height: 2rem;
  width: 2rem;
}
.alert .content button i {
  color: #595959;
}
.alert .content button:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.success-alert {
  animation: alertView 0.1s ease-out 1 forwards;
}
.success-alert .content {
  border: 1px solid #00ba00;
  background-color: #e6ffe6;
}
.success-alert .content .side-bar {
  background-color: #00ba00;
}
.success-alert .content h4 {
  color: #00ba00;
}

.warning-alert {
  animation: alertView 0.1s ease-out 1 forwards;
}
.warning-alert .content {
  border: 1px solid #ff2147;
  background-color: #ffebe6;
}
.warning-alert .content .side-bar {
  background-color: #ff2147;
}
.warning-alert .content h4 {
  color: #ff2147;
}

@keyframes alertView {
  from {
    display: block;
    transform: translateX(10rem);
  }
  to {
    display: block;
    transform: translateX(0rem);
  }
}
/*----------------- Dropdown Container -------------------------------*/
.dropdown-container {
  height: 3rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.dropdown-container .dropdown-content {
  background-color: var(--secondary-color);
  position: relative;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 1rem;
  padding: 0 1rem;
  height: 2.5rem;
  width: 15rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.dropdown-container .dropdown-content h4 {
  color: var(--font-color);
  font-size: 1em;
  font-weight: 600;
}
.dropdown-container .dropdown-content .drop-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.dropdown-container .dropdown-content .drop-icon i {
  color: var(--font-color);
}
.dropdown-container .dropdown-content .drop-icon .rotate {
  transform: rotate(180deg);
}
.dropdown-container .dropdown-content .drop-icon:hover {
  background-color: var(--font-color);
}
.dropdown-container .dropdown-content .drop-icon:hover i {
  color: var(--primary-color);
}
.dropdown-container .dropdown-content .dropdown-section {
  position: absolute;
  top: 2.6rem;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
}
.dropdown-container .dropdown-content .dropdown-section ul {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-color: var(--primary-color);
  padding: 0;
  list-style: none;
  height: auto;
  width: 100%;
}
.dropdown-container .dropdown-content .dropdown-section ul li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--font-color);
}
.dropdown-container .dropdown-content .dropdown-section ul li:hover {
  background-color: var(--font-color);
  color: var(--primary-color);
}
.dropdown-container .dropdown-content .show {
  grid-template-rows: 1fr;
}

/*----------------- End Dropdown Container ---------------------------*/
.input-sec {
  position: relative;
  height: auto;
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.input-sec label {
  position: absolute;
  top: -1.3rem;
  left: 0.5rem;
  color: var(--bold-color);
  font-size: 0.98em;
  font-weight: 500;
}
.input-sec input {
  border: 1px solid var(--border-one-color);
  background-color: var(--bg-color-one);
  outline: none;
  border-radius: 0.5rem;
  padding-left: 0.5rem;
  color: var(--bold-color);
  font-weight: 500;
  font-size: 1em;
  font-family: "Poppins", sans-serif;
  height: 2.5rem;
  width: 20rem;
}
.input-sec select {
  border: 1px solid var(--border-one-color);
  background-color: var(--bg-color-one);
  outline: none;
  border-radius: 0.5rem;
  padding-left: 0.5rem;
  color: var(--bold-color);
  font-weight: 600;
  font-size: 1em;
  height: 2.5rem;
  width: 13rem;
}
.input-sec option {
  padding: 0.2rem 0 0.2rem 1rem;
  font-size: 1rem;
}
.input-sec .icon {
  background-color: var(--bg-color-one);
  border-radius: 50%;
  cursor: pointer;
  height: 2rem;
  width: 2rem;
}
.input-sec .icon i {
  color: #000;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.input-sec .icon:hover {
  background-color: var(--border-one-color);
}
.input-sec .icon:hover i {
  color: var(--primary-color);
}
.input-sec .del-icon {
  display: none;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
}
.input-sec .down-icon {
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
}
.input-sec ul {
  display: none;
  position: absolute;
  top: 2.5rem;
  padding: 0;
  background-color: var(--bg-color-one);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 70;
  height: auto;
  width: 100%;
}
.input-sec ul li {
  padding: 0.2rem 0 0.2rem 1rem;
  font-size: 1rem;
}
.input-sec ul .selected {
  background-color: var(--border-one-color);
  color: #fff;
}
.input-sec ul li:hover {
  background-color: var(--border-one-color);
  color: #fff;
}

.home-main {
  padding: 6rem 1rem 1rem;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home-section {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
}
.home-section .home-img-sec {
  border-radius: 0.5rem;
  overflow: hidden;
  animation: leftHomeContainer 1s ease-in-out 1 forwards;
  height: 40rem;
  width: 65%;
}
.home-section .home-img-sec .swiper,
.home-section .home-img-sec .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.home-section .home-img-sec .swiper-slide {
  height: 100%;
  width: 100%;
}
.home-section .home-img-sec .swiper-slide img {
  height: 100%;
  width: 100%;
}
.home-section .home-content {
  position: relative;
  padding: 1rem 0 1rem 1rem;
  animation: rightHomeContainer 1s ease-in-out 1 forwards;
  overflow: hidden;
  height: 40rem;
  width: 35%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container {
  flex-shrink: 0;
  border-radius: 0.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container .content {
  padding: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color-two);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  overflow: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container .content h4 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  color: var(--bold-color);
}
.home-section .home-content .container .content .underline {
  background-color: var(--bold-color);
  height: 0.1rem;
  width: 3rem;
}
.home-section .home-content .container .content p {
  margin-top: 1rem;
  color: var(--bold-color);
  font-size: 1em;
  text-indent: 2rem;
  line-height: 1.5rem;
  text-align: justify;
}
.home-section .home-content .container img {
  height: 90%;
  width: 90%;
}
.home-section .home-content .homeEventContainer {
  transform: translate(-100%);
}
.home-section .home-content .view-image-button {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  cursor: pointer;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.home-section .home-content .view-image-button h4 {
  font-weight: 600;
  font-size: 1em;
  color: var(--bold-color);
}
.home-section .home-content .view-image-button .icon {
  border-radius: 50%;
  background-color: var(--bold-color);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .view-image-button .icon i {
  color: var(--secondary-color);
}
.home-section .home-content .view-image-button:hover .icon {
  border: 1px solid var(--bold-color);
  background-color: rgba(255, 255, 255, 0);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .view-image-button:hover .icon i {
  color: var(--bold-color);
}

@keyframes leftHomeContainer {
  0% {
    transform: translateX(-10rem);
  }
  100% {
    transform: translateX(0rem);
  }
}
@keyframes rightHomeContainer {
  0% {
    transform: translateX(10rem);
  }
  100% {
    transform: translateX(0rem);
  }
}
@media only screen and (max-width: 2000px) {
  .home-main {
    height: auto;
    width: 100%;
  }
  .home-main .home-img-sec {
    height: 35rem;
    width: 65%;
  }
  .home-main .home-content {
    height: 35rem;
    width: 35%;
  }
}
@media only screen and (max-width: 1600px) {
  .home-main {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 1366px) {
  .home-section .home-img-sec {
    height: 25rem;
    width: 65%;
  }
  .home-section .home-content {
    height: 25rem;
    width: 35%;
  }
}
@media only screen and (max-width: 900px) {
  .home-main {
    padding: 6rem 1rem 1rem;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }
  .home-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0.5rem;
  }
  .home-section .home-img-sec {
    height: 25rem;
    width: 100%;
  }
  .home-section .home-content {
    height: 25rem;
    width: 100%;
  }
}
.home-footer {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}
.home-footer .daily-verse-sec {
  height: auto;
  width: 50%;
}
.home-footer .daily-verse-sec .container {
  animation: rightBottomContainer 1s ease-in-out 1 forwards;
  height: auto;
  width: 100%;
}
.home-footer .daily-verse-sec .container .head {
  padding: 0 1.5rem;
  background-color: var(--bg-color-three);
  border-radius: 1rem 1rem 0 0;
  height: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-footer .daily-verse-sec .container .head h4 {
  font-weight: 600;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .dv-body {
  margin-top: 0.5rem;
  background-color: var(--bg-color-four);
  border-radius: 0 0 1rem 1rem;
  min-height: 10rem;
}
.home-footer .daily-verse-sec .container .swiper-slide {
  padding: 1rem;
}
.home-footer .daily-verse-sec .container .swiper-slide h5 {
  font-weight: 600;
  font-size: 1em;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .swiper-slide h6 {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.9em;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .ml h5 {
  font-weight: 400;
}
.home-footer .daily-verse-sec .container .ml h6 {
  font-weight: 500;
}
.home-footer .notification-sec {
  height: auto;
  width: 50%;
}
.home-footer .notification-sec .content {
  animation: rightBottomContainer 1s ease-in-out 1 forwards;
  height: 100%;
  width: 100%;
}
.home-footer .notification-sec .content .head {
  padding: 0 1.5rem;
  background-color: var(--bg-color-three);
  border-radius: 1rem 1rem 0 0;
  height: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-footer .notification-sec .content .head h4 {
  text-align: right;
  font-weight: 600;
  color: var(--font-color);
  width: 100%;
}
.home-footer .notification-sec .content .notif-body {
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: var(--bg-color-four);
  border-radius: 0 0 1rem 1rem;
  min-height: 10rem;
  height: auto;
  width: 100%;
}
.home-footer .notification-sec .content .notif-body p {
  font-weight: 600;
  font-size: 1em;
  color: var(--font-color);
}
.home-footer .notification-sec .content .notif-body .ml {
  font-weight: 400;
}
.home-footer .loading-sec-ft {
  min-height: 10rem;
}
.home-footer .loading-sec-ft .cnt {
  min-height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-footer .loading-sec-ft .cnt .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, var(--bold-color) 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.home-footer .loading-sec-ft .cnt .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rightBottomContainer {
  0% {
    transform: translateY(10rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
@media only screen and (max-width: 2000px) {
  .home-footer .daily-verse-sec .container .dv-body {
    min-height: 6rem;
  }
  .home-footer .notification-sec {
    height: auto;
    width: 50%;
  }
  .home-footer .notification-sec .content .notif-body {
    min-height: 6rem;
  }
}
@media only screen and (max-width: 1366px) {
  .home-footer .daily-verse-sec .container .dv-body {
    min-height: auto;
  }
  .home-footer .notification-sec {
    height: 5rem;
    width: 50%;
  }
}
@media only screen and (max-width: 900px) {
  .home-footer {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
  }
  .home-footer .daily-verse-sec {
    height: auto;
    width: 100%;
  }
  .home-footer .notification-sec {
    height: auto;
    width: 100%;
  }
}
/*----------------- About Section ----------------------------------*/
.about-section {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
}
.about-section .heading {
  animation: leftHomeContainer 1s ease-in-out 1 forwards;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.about-section .heading .buttons {
  border-radius: 1rem;
  padding: 0 0.3rem;
  background-color: var(--bg-color-three);
  cursor: pointer;
  height: 3rem;
  width: 12rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.about-section .heading .buttons .icon {
  border-radius: 50%;
  background-color: var(--bg-color-two);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.about-section .heading .buttons .icon i {
  color: var(--font-color);
}
.about-section .heading .buttons h4 {
  font-weight: 600;
  color: var(--font-color);
}
.about-section .heading .buttons:hover {
  border: 1px solid var(--bg-color-three);
  background-color: rgba(0, 0, 0, 0);
}
.about-section .heading .active {
  border: 1px solid var(--bg-color-three);
  background-color: rgba(0, 0, 0, 0);
}
.about-section .about-body {
  margin-top: 1rem;
  background-color: var(--bg-color-two);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 1rem;
  animation: footerContent 1s ease-in-out 1 forwards;
  min-height: 30rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.about-section .about-body .head {
  padding: 0.5rem 0 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.about-section .about-body .head h4 {
  color: var(--bold-color);
  font-size: 1.5em;
  font-weight: 600;
}
.about-section .about-body .underline {
  background-color: var(--bold-color);
  height: 0.1rem;
  width: 8rem;
}
.about-section .about-body .body {
  padding: 1rem;
}
.about-section .about-body .body p {
  text-indent: 2rem;
  color: var(--bold-color);
  line-height: 2rem;
}

@media only screen and (max-width: 900px) {
  .about-section .heading .buttons {
    height: 2.5rem;
    width: 10rem;
  }
}
/*----------------- End About Section -----------------------------------*/
/*----------------- Gallery Page section --------------------------------*/
.gallery-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  height: auto;
  width: 100%;
}
.gallery-section .gallery-heading {
  color: var(--bold-color);
  text-align: left;
  margin-bottom: 2rem;
}
.gallery-section .gallery-section-group {
  padding: 0.5rem;
  background-color: var(--primary-color);
  border-radius: 0.75rem;
  margin-bottom: 4rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.gallery-section .gallery-section-group .section-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.gallery-section .gallery-section-group .section-header h4 {
  color: var(--bold-color);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0 1rem;
  background-color: transparent;
  /* Assuming main bg takes care, or need variable */
  position: relative;
  z-index: 1;
}
.gallery-section .gallery-section-group .section-header .header-line {
  width: 100px;
  height: 3px;
  background: var(--heading);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.gallery-section .gallery-section-group .masonry-wrapper {
  width: 100%;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery {
  column-count: 5;
  column-gap: 1.5rem;
}
@media (max-width: 1200px) {
  .gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery {
    column-count: 3;
  }
}
@media (max-width: 768px) {
  .gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery {
    column-count: 1;
  }
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item {
  padding: 0.3rem;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--secondary-color);
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item:hover .gallery-link img {
  transform: scale(1.05);
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item:hover .gallery-link .overlay {
  opacity: 1;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid #e6e6e6;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link .img-caption {
  padding: 0.5rem 0.3rem;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link .img-caption p {
  color: var(--bold-color);
  padding: 0.3rem;
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1rem;
}
.gallery-section .gallery-section-group .masonry-wrapper .masonry-gallery .masonry-item .gallery-link .overlay i {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*----------------- End gallery page section -----------------------------*/
/*----------------- Bookmarks Section -----------------------------------*/
.options-section {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.options-section .view-book-button {
  margin-left: 1rem;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0.75rem;
  padding: 0 1rem;
  height: 2.5rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.options-section .view-book-button img {
  height: 1.5rem;
  width: 1rem;
}
.options-section .view-book-button h4 {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.options-section .view-book-button:hover {
  background-color: var(--font-color);
}
.options-section .view-book-button:hover h4 {
  color: var(--secondary-color);
}

@media only screen and (max-width: 460px) {
  .options-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
  }
  .options-section .view-book-button {
    order: 1;
    margin: 0;
    margin-bottom: 0.5rem;
  }
}
.book-section {
  margin-top: 1rem;
  height: 40rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.book-section .container {
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  height: 100%;
  width: 75%;
}
.book-section .container .bookmark-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .container .bkm-image {
  padding: 0.5rem;
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .container .bkm-image img {
  height: 100%;
  width: auto;
}
.book-section .container .bkm-content {
  padding: 0.5rem;
  overflow: auto;
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 0;
}
.book-section .container .bkm-content p {
  font-size: 1em;
  font-weight: 600;
  color: var(--font-color);
  line-height: 1.6em;
}
.book-section .container .bkm-content .ml {
  font-weight: 500;
}
.book-section .bookmark-container {
  padding-bottom: 1rem;
  border-radius: 1rem;
  background-color: var(--bg-color-three);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: 100%;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.book-section .bookmark-container .head {
  padding: 1rem 0 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .bookmark-container .head h4 {
  color: var(--font-color);
  font-size: 1.2em;
  font-weight: 600;
}
.book-section .bookmark-container .underline {
  background-color: var(--primary-color);
  height: 0.1rem;
  width: 8rem;
}
.book-section .bookmark-container .drop-bookmark {
  display: none;
}
.book-section .bookmark-container .body {
  margin-top: 1rem;
  padding: 0 1rem;
  height: auto;
  width: 100%;
}
.book-section .bookmark-container .body .boomarks-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.book-section .bookmark-container .body .book-buttons {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  cursor: pointer;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.book-section .bookmark-container .body .book-buttons h4 {
  color: var(--font-color);
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 600;
}
.book-section .bookmark-container .body .book-buttons:hover {
  background-color: var(--bg-color-three);
  border: 1px solid var(--secondary-color);
}
.book-section .bookmark-container .body .book-buttons:hover h4 {
  transform: translateX(1rem);
}
.book-section .bookmark-container .body .ml h4 {
  font-family: "NotoSansMalayalam";
  font-weight: 500;
}

@media only screen and (max-width: 1450px) {
  .book-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .container {
    order: 2;
    max-width: 70rem;
    height: 100%;
    width: 100%;
  }
  .book-section .container .bkm-content {
    max-height: 30rem;
  }
  .book-section .bookmark-container {
    max-width: 30rem;
    height: auto;
    width: 100%;
  }
  .book-section .bookmark-container .drop-bookmark {
    display: block;
    margin-top: 1rem;
    padding: 0 0.5rem;
    height: auto;
    width: 100%;
  }
  .book-section .bookmark-container .drop-bookmark .content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 1rem;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head h4 {
    color: var(--font-color-two);
    font-weight: 600;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head .ml {
    font-weight: 500;
  }
  .book-section .bookmark-container .drop-bookmark .content button {
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 50%;
    border: 0;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
  }
  .book-section .bookmark-container .drop-bookmark .content button i {
    color: var(--font-color-two);
  }
  .book-section .bookmark-container .drop-bookmark .content button .rotate {
    rotate: 180deg;
  }
  .book-section .bookmark-container .drop-bookmark .content button:hover {
    background-color: var(--font-color-two);
  }
  .book-section .bookmark-container .drop-bookmark .content button:hover i {
    color: var(--secondary-color);
  }
  .book-section .body {
    display: grid;
    grid-template-rows: 0fr;
  }
  .book-section .body .boomarks-section {
    overflow: hidden;
  }
  .book-section .show {
    grid-template-rows: 1fr;
  }
}
@media only screen and (max-width: 1000px) {
  .book-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .container .bookmark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .book-section .container .bkm-image {
    max-height: 30rem;
    max-width: 30rem;
    height: 100%;
    width: 100%;
  }
  .book-section .container .bkm-content {
    height: 100%;
    width: 100%;
  }
}
/*----------------- End Bookmarks section --------------------------*/
/*----------------- Book section -----------------------------------*/
.book-main {
  min-height: 100vh;
  width: 100%;
  padding-bottom: 4rem;
  overflow: auto;
  height: auto;
  /* Ensure space at bottom */
}
.book-main .book-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
}
.book-main .book-section .control-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.book-main .book-section .control-bar .search-bar {
  position: relative;
  flex: 1;
  max-width: 400px;
}
.book-main .book-section .control-bar .search-bar span {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--font-color);
  pointer-events: none;
}
.book-main .book-section .control-bar .search-bar input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  background-color: var(--secondary-color);
  color: var(--font-color-two);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.book-main .book-section .control-bar .search-bar input:focus {
  border-color: var(--bold-color);
  box-shadow: 0 0 0 2px rgba(4, 65, 94, 0.1);
}
.book-main .book-section .control-bar .bookmark-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bold-color);
  color: var(--primary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}
.book-main .book-section .control-bar .bookmark-btn i {
  font-size: 1.1rem;
}
.book-main .book-section .control-bar .bookmark-btn:hover {
  background-color: var(--font-color-two);
  transform: translateY(-1px);
}
.book-main .book-section .book-grid-container {
  width: 100%;
  position: relative;
}
.book-main .book-section .book-grid-container .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  /* Center items in their grid cells */
}
.book-main .book-section .book-grid-container .gallery .book-page-item {
  width: 100%;
  max-width: 250px;
  /* Prevent items from getting too huge */
  background-color: var(--secondary-color);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.book-main .book-section .book-grid-container .gallery .book-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.book-main .book-section .book-grid-container .gallery .book-page-item:hover .image-wrapper .overlay {
  opacity: 1;
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img {
  display: block;
  text-decoration: none;
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  /* Fixed height for uniformity */
  overflow: hidden;
  background-color: #f0f0f0;
  /* Placeholder color */
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensure image covers the area */
  object-position: top;
  /* Show top of page usually */
  transition: transform 0.5s ease;
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .image-wrapper .overlay i {
  color: #fff;
  font-size: 2rem;
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .index-value {
  padding: 0.5rem;
  text-align: center;
  background-color: var(--secondary-color);
  border-top: 1px solid var(--border-color);
}
.book-main .book-section .book-grid-container .gallery .book-page-item .g-img .index-value h4 {
  margin: 0;
  color: var(--bold-color);
  font-size: 0.9rem;
  font-weight: 600;
}
.book-main .book-section .book-grid-container .loading-spinner {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  width: 100%;
  color: var(--font-color);
}
.book-main .book-section .book-grid-container #no-results {
  grid-column: 1/-1;
  width: 100%;
  text-align: center;
  color: var(--font-color);
}

/* Responsiveness */
@media (max-width: 600px) {
  .book-main .book-section .control-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .book-main .book-section .control-bar .search-bar {
    max-width: 100%;
  }
  .book-main .book-section .control-bar .bookmark-btn {
    justify-content: center;
  }
  .book-main .book-section .book-grid-container .gallery {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns hardcoded for mobile */
    gap: 0.5rem;
  }
  .book-main .book-section .book-grid-container .gallery .book-page-item {
    border-radius: 4px;
  }
  .book-main .book-section .book-grid-container .gallery .book-page-item .g-img .image-wrapper {
    height: 200px;
    /* Smaller height for mobile */
  }
}
/*----------------- End book section -------------------------------*/
/*----------------- Profile Section --------------------------------*/
.profile-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.profile-container {
  max-width: 50rem;
  height: auto;
  width: 100%;
}
.profile-container .container {
  height: 20rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.profile-container .container .img-secton {
  background: var(--profile-background);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.profile-container .container .img-secton img {
  height: auto;
  width: 80%;
  max-height: 13rem;
}
.profile-container .container .img-secton h4 {
  font-size: 1.1em;
  background: var(--name);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-container .container .details-section {
  background: var(--profile-background);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.profile-container .container .details-section .heading h4 {
  font-size: 1.2em;
  background: var(--heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-container .container .details-section table {
  border-collapse: collapse;
  height: auto;
  width: auto;
}
.profile-container .container .details-section table td:nth-child(1) {
  padding: 0.3rem 2rem 0.3rem 0.2rem;
  color: var(--font-color-two);
  font-size: 0.95em;
  font-weight: 600;
}
.profile-container .container .details-section table td:nth-child(2) {
  padding: 0.2rem;
  color: var(--font-color-three);
  font-size: 1em;
  font-weight: 700;
}
.profile-container .bottom-container {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--profile-background);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  min-height: 5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.profile-container .bottom-container table {
  border-collapse: collapse;
  height: auto;
  width: auto;
}
.profile-container .bottom-container table td:nth-child(1) {
  padding: 0.5rem 2rem 0.2rem 0.2rem;
  color: var(--font-color-two);
  font-size: 0.95em;
  font-weight: 600;
}
.profile-container .bottom-container table td:nth-child(2) {
  padding: 0.5rem 0 0.2rem;
  color: var(--font-color-three);
  font-size: 1em;
  font-weight: 700;
}
.profile-container .bottom-container table td:nth-child(2) a {
  color: var(--font-color-three);
}
.profile-container .bottom-container table td:nth-child(2) a:hover {
  color: var(--font-color-two);
  transform: scale(1.1, 1.1);
}

.no-member-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.no-member-container {
  background-color: var(--secondary-color);
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 20rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.no-member-container img {
  max-height: 15rem;
  width: auto;
}
.no-member-container h4 {
  color: var(--bold-color);
  font-size: 1.5em;
}

/*----------------- End Profile Section ----------------------------*/
/*----------------- Login section ----------------------------------*/
.login-section {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color), var(--primary-color));
  height: 100%;
  width: 100%;
  z-index: 80;
}
.login-section .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.login-section-view {
  display: block;
}

.login-section-hide {
  display: none;
}

.dark .login-container .login-icon {
  background-image: url(../images/user-account-dark.png);
}

.login-container {
  position: relative;
  background-color: var(--bg-color-two);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 5rem;
  padding: 3rem 0 1rem;
  height: auto;
  width: 30rem;
}
.login-container .login-icon {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-image: url(../images/user-account.png);
  background-color: var(--bold-color);
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
  background-position: center;
  height: 6rem;
  width: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-icon img {
  height: 3rem;
  width: 3rem;
}
.login-container .login-content {
  padding: 3rem 3rem 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-content form {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.login-container .login-content label {
  position: relative;
  height: auto;
  width: 100%;
}
.login-container .login-content label h4 {
  margin-left: 1rem;
  color: var(--bold-color);
  font-size: 0.95em;
  font-weight: 600;
}
.login-container .login-content label input {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-color-grey);
  border: 0;
  border-radius: 3rem;
  padding: 0 0 0 1.5rem;
  color: var(--bold-color);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  outline: none;
  height: 3rem;
  width: 100%;
}
.login-container .login-content label input:focus {
  background-color: var(--bg-color-one);
}
.login-container .login-content label #userdob::-webkit-calendar-picker-indicator {
  display: none;
}
.login-container .login-content label .ico {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: flex;
  flex-direction: rpw;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-content label .ico i {
  color: var(--bold-color);
  font-size: 1em;
}
.login-container .login-content label:has(input:focus) .ico {
  background-color: var(--bold-color);
}
.login-container .login-content label:has(input:focus) .ico i {
  color: var(--primary-color);
}
.login-container .login-content .button-sec {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: centre;
  gap: 0;
}
.login-container .login-content .button-sec button {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bold-color);
  border: 0;
  border-radius: 3rem;
  cursor: pointer;
  height: 2.5rem;
  width: 10rem;
}
.login-container .login-content .button-sec button h4 {
  color: var(--primary-color);
  letter-spacing: 0.2em;
  font-size: 1em;
  font-weight: 600;
}
.login-container .login-content .button-sec button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--bold-color);
}
.login-container .login-content .button-sec button:hover h4 {
  color: var(--bold-color);
  letter-spacing: 0em;
}
.login-container .login-content .message-sec {
  display: none;
  padding: 2rem 0 0;
  height: auto;
  width: 100%;
}
.login-container .login-content .message-sec .message-content {
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 1rem;
  padding: 0.5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.login-container .login-content .message-sec .message-content h4 {
  font-weight: 600;
  font-size: 0.99em;
}
.login-container .login-content .message-sec .message-content h5 {
  color: var(--bold-color);
  font-weight: 600;
  font-size: 0.9em;
}
.login-container .login-content .message-sec .message-content h6 {
  color: var(--bold-color);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
}
.login-container .login-content .message-sec .message-content h6:hover {
  color: var(--font-color);
}
.login-container .login-content .message-sec .message-content .warning {
  color: var(--warning-red);
}
.login-container .login-content .message-sec .message-content .pending {
  color: var(--green-color);
}
.login-container .close-icon {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
}
.login-container .close-icon .cnt {
  border-radius: 50%;
  background-color: var(--bg-color-one);
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .close-icon .cnt i {
  color: var(--bold-color);
}
.login-container .close-icon .cnt:hover {
  background-color: var(--warning-red);
}
.login-container .close-icon .cnt:hover i {
  color: var(--bg-color-one);
}

.login-container-view {
  display: block;
}

.login-container-hide {
  display: none;
}

@media only screen and (max-width: 500px) {
  .login-section .container {
    padding: 0 1rem;
  }
  .login-container {
    height: auto;
    width: 100%;
  }
  .login-container .login-content {
    padding: 3rem 1rem 0;
  }
  .login-container .login-content .button-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.administrator-container {
  display: none;
  position: relative;
  background-color: var(--primary-color);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 5rem;
  height: 28rem;
  width: 30rem;
}
.administrator-container .adm-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.administrator-container .adm-container .head {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .head h4 {
  color: var(--bold-color);
  font-size: 1em;
  font-weight: 600;
}
.administrator-container .adm-container .head .underline {
  background-color: var(--bold-color);
  height: 0.01rem;
  width: 10rem;
}
.administrator-container .adm-container .adm-body {
  max-height: 15rem;
  overflow: auto;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .adm-body .adm-card {
  padding: 2rem 1rem 1rem;
  border-bottom: 1px solid var(--border-color);
  height: 2rem;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .adm-body .adm-card h4 {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.administrator-container .adm-container .adm-body .adm-card a {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.administrator-container .adm-container .adm-body .adm-card a:hover {
  color: var(--bold-color);
}
.administrator-container .adm-container .adm-body .adm-card:hover {
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.administrator-container .adm-container button {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bold-color);
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 1rem;
  cursor: pointer;
}
.administrator-container .adm-container button h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9em;
}
.administrator-container .adm-container button:hover {
  border: 1px solid var(--bold-color);
  background-color: var(--primary-color);
}
.administrator-container .adm-container button:hover h4 {
  color: var(--bold-color);
}

/*----------------- End Login Section ------------------------------*/
.home-main {
  padding: 6rem 1rem 1rem;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.home-section {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
}
.home-section .home-img-sec {
  border-radius: 0.5rem;
  overflow: hidden;
  animation: leftHomeContainer 1s ease-in-out 1 forwards;
  height: 40rem;
  width: 65%;
}
.home-section .home-img-sec .swiper,
.home-section .home-img-sec .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.home-section .home-img-sec .swiper-slide {
  height: 100%;
  width: 100%;
}
.home-section .home-img-sec .swiper-slide img {
  height: 100%;
  width: 100%;
}
.home-section .home-content {
  position: relative;
  padding: 1rem 0 1rem 1rem;
  animation: rightHomeContainer 1s ease-in-out 1 forwards;
  overflow: hidden;
  height: 40rem;
  width: 35%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container {
  flex-shrink: 0;
  border-radius: 0.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container .content {
  padding: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color-two);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  overflow: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-section .home-content .container .content h4 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
  color: var(--bold-color);
}
.home-section .home-content .container .content .underline {
  background-color: var(--bold-color);
  height: 0.1rem;
  width: 3rem;
}
.home-section .home-content .container .content p {
  margin-top: 1rem;
  color: var(--bold-color);
  font-size: 1em;
  text-indent: 2rem;
  line-height: 1.5rem;
  text-align: justify;
}
.home-section .home-content .container img {
  height: 90%;
  width: 90%;
}
.home-section .home-content .homeEventContainer {
  transform: translate(-100%);
}
.home-section .home-content .view-image-button {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
  cursor: pointer;
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.home-section .home-content .view-image-button h4 {
  font-weight: 600;
  font-size: 1em;
  color: var(--bold-color);
}
.home-section .home-content .view-image-button .icon {
  border-radius: 50%;
  background-color: var(--bold-color);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .view-image-button .icon i {
  color: var(--secondary-color);
}
.home-section .home-content .view-image-button:hover .icon {
  border: 1px solid var(--bold-color);
  background-color: rgba(255, 255, 255, 0);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-section .home-content .view-image-button:hover .icon i {
  color: var(--bold-color);
}

@keyframes leftHomeContainer {
  0% {
    transform: translateX(-10rem);
  }
  100% {
    transform: translateX(0rem);
  }
}
@keyframes rightHomeContainer {
  0% {
    transform: translateX(10rem);
  }
  100% {
    transform: translateX(0rem);
  }
}
@media only screen and (max-width: 2000px) {
  .home-main {
    height: auto;
    width: 100%;
  }
  .home-main .home-img-sec {
    height: 35rem;
    width: 65%;
  }
  .home-main .home-content {
    height: 35rem;
    width: 35%;
  }
}
@media only screen and (max-width: 1600px) {
  .home-main {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width: 1366px) {
  .home-section .home-img-sec {
    height: 25rem;
    width: 65%;
  }
  .home-section .home-content {
    height: 25rem;
    width: 35%;
  }
}
@media only screen and (max-width: 900px) {
  .home-main {
    padding: 6rem 1rem 1rem;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }
  .home-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0.5rem;
  }
  .home-section .home-img-sec {
    height: 25rem;
    width: 100%;
  }
  .home-section .home-content {
    height: 25rem;
    width: 100%;
  }
}
.home-footer {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}
.home-footer .daily-verse-sec {
  height: auto;
  width: 50%;
}
.home-footer .daily-verse-sec .container {
  animation: rightBottomContainer 1s ease-in-out 1 forwards;
  height: auto;
  width: 100%;
}
.home-footer .daily-verse-sec .container .head {
  padding: 0 1.5rem;
  background-color: var(--bg-color-three);
  border-radius: 1rem 1rem 0 0;
  height: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-footer .daily-verse-sec .container .head h4 {
  font-weight: 600;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .dv-body {
  margin-top: 0.5rem;
  background-color: var(--bg-color-four);
  border-radius: 0 0 1rem 1rem;
  min-height: 10rem;
}
.home-footer .daily-verse-sec .container .swiper-slide {
  padding: 1rem;
}
.home-footer .daily-verse-sec .container .swiper-slide h5 {
  font-weight: 600;
  font-size: 1em;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .swiper-slide h6 {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.9em;
  color: var(--font-color);
}
.home-footer .daily-verse-sec .container .ml h5 {
  font-weight: 400;
}
.home-footer .daily-verse-sec .container .ml h6 {
  font-weight: 500;
}
.home-footer .notification-sec {
  height: auto;
  width: 50%;
}
.home-footer .notification-sec .content {
  animation: rightBottomContainer 1s ease-in-out 1 forwards;
  height: 100%;
  width: 100%;
}
.home-footer .notification-sec .content .head {
  padding: 0 1.5rem;
  background-color: var(--bg-color-three);
  border-radius: 1rem 1rem 0 0;
  height: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.home-footer .notification-sec .content .head h4 {
  text-align: right;
  font-weight: 600;
  color: var(--font-color);
  width: 100%;
}
.home-footer .notification-sec .content .notif-body {
  margin-top: 0.5rem;
  padding: 1rem;
  background-color: var(--bg-color-four);
  border-radius: 0 0 1rem 1rem;
  min-height: 10rem;
  height: auto;
  width: 100%;
}
.home-footer .notification-sec .content .notif-body p {
  font-weight: 600;
  font-size: 1em;
  color: var(--font-color);
}
.home-footer .notification-sec .content .notif-body .ml {
  font-weight: 400;
}
.home-footer .loading-sec-ft {
  min-height: 10rem;
}
.home-footer .loading-sec-ft .cnt {
  min-height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.home-footer .loading-sec-ft .cnt .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, var(--bold-color) 100%);
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.home-footer .loading-sec-ft .cnt .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rightBottomContainer {
  0% {
    transform: translateY(10rem);
  }
  100% {
    transform: translateY(0rem);
  }
}
@media only screen and (max-width: 2000px) {
  .home-footer .daily-verse-sec .container .dv-body {
    min-height: 6rem;
  }
  .home-footer .notification-sec {
    height: auto;
    width: 50%;
  }
  .home-footer .notification-sec .content .notif-body {
    min-height: 6rem;
  }
}
@media only screen and (max-width: 1366px) {
  .home-footer .daily-verse-sec .container .dv-body {
    min-height: auto;
  }
  .home-footer .notification-sec {
    height: 5rem;
    width: 50%;
  }
}
@media only screen and (max-width: 900px) {
  .home-footer {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
  }
  .home-footer .daily-verse-sec {
    height: auto;
    width: 100%;
  }
  .home-footer .notification-sec {
    height: auto;
    width: 100%;
  }
}
/*----------------- About Section ----------------------------------*/
.about-section {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
}
.about-section .heading {
  animation: leftHomeContainer 1s ease-in-out 1 forwards;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.about-section .heading .buttons {
  border-radius: 1rem;
  padding: 0 0.3rem;
  background-color: var(--bg-color-three);
  cursor: pointer;
  height: 3rem;
  width: 12rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.about-section .heading .buttons .icon {
  border-radius: 50%;
  background-color: var(--bg-color-two);
  height: 2rem;
  width: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.about-section .heading .buttons .icon i {
  color: var(--font-color);
}
.about-section .heading .buttons h4 {
  font-weight: 600;
  color: var(--font-color);
}
.about-section .heading .buttons:hover {
  border: 1px solid var(--bg-color-three);
  background-color: rgba(0, 0, 0, 0);
}
.about-section .heading .active {
  border: 1px solid var(--bg-color-three);
  background-color: rgba(0, 0, 0, 0);
}
.about-section .about-body {
  margin-top: 1rem;
  background-color: var(--bg-color-two);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 1rem;
  animation: footerContent 1s ease-in-out 1 forwards;
  min-height: 30rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.about-section .about-body .head {
  padding: 0.5rem 0 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.about-section .about-body .head h4 {
  color: var(--bold-color);
  font-size: 1.5em;
  font-weight: 600;
}
.about-section .about-body .underline {
  background-color: var(--bold-color);
  height: 0.1rem;
  width: 8rem;
}
.about-section .about-body .body {
  padding: 1rem;
}
.about-section .about-body .body p {
  text-indent: 2rem;
  color: var(--bold-color);
  line-height: 2rem;
}

@media only screen and (max-width: 900px) {
  .about-section .heading .buttons {
    height: 2.5rem;
    width: 10rem;
  }
}
/*----------------- End About Section -----------------------------------*/
/*----------------- Gallery Page section --------------------------------*/
.gallery-section {
  max-width: var(--max-width);
  height: auto;
  width: 100%;
}
.gallery-section .heading {
  padding: 0.5rem 0;
  height: auto;
  width: 100%;
}
.gallery-section .heading h4 {
  color: var(--bold-color);
  font-size: 1em;
  font-weight: 700;
  text-align: center;
}
.gallery-section .gallery-body {
  margin-top: 1rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background-color: var(--secondary-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: auto;
  width: 100%;
}
.gallery-section .gallery-body .gallery {
  padding: 0.5rem;
  justify-content: center;
  align-items: start;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 1rem;
  justify-items: start;
  align-items: start;
}
.gallery-section .gallery-body .gallery img {
  display: block;
  margin: auto;
  min-height: 10rem;
  height: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/*-----------------Ebd gallery page section -----------------------------*/
/*----------------- Bookmarks Section -----------------------------------*/
.options-section {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.options-section .view-book-button {
  margin-left: 1rem;
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0.75rem;
  padding: 0 1rem;
  height: 2.5rem;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.options-section .view-book-button img {
  height: 1.5rem;
  width: 1rem;
}
.options-section .view-book-button h4 {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.options-section .view-book-button:hover {
  background-color: var(--font-color);
}
.options-section .view-book-button:hover h4 {
  color: var(--secondary-color);
}

@media only screen and (max-width: 460px) {
  .options-section {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
  }
  .options-section .view-book-button {
    order: 1;
    margin: 0;
  }
  .options-section .dropdown-container {
    order: 2;
    margin: 0.5rem 0 0;
  }
}
.book-section {
  margin-top: 1rem;
  height: 40rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.book-section .container {
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  height: 100%;
  width: 75%;
}
.book-section .container .bookmark-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .container .bkm-image {
  padding: 0.5rem;
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .container .bkm-image img {
  height: 100%;
  width: auto;
}
.book-section .container .bkm-content {
  padding: 0.5rem;
  overflow: auto;
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 0;
}
.book-section .container .bkm-content p {
  font-size: 1em;
  font-weight: 600;
  color: var(--font-color);
  line-height: 1.6em;
}
.book-section .container .bkm-content .ml {
  font-weight: 500;
}
.book-section .bookmark-container {
  padding-bottom: 1rem;
  border-radius: 1rem;
  background-color: var(--bg-color-three);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: 100%;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.book-section .bookmark-container .head {
  padding: 1rem 0 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.book-section .bookmark-container .head h4 {
  color: var(--font-color);
  font-size: 1.2em;
  font-weight: 600;
}
.book-section .bookmark-container .underline {
  background-color: var(--primary-color);
  height: 0.1rem;
  width: 8rem;
}
.book-section .bookmark-container .drop-bookmark {
  display: none;
}
.book-section .bookmark-container .body {
  margin-top: 1rem;
  padding: 0 1rem;
  height: auto;
  width: 100%;
}
.book-section .bookmark-container .body .boomarks-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.book-section .bookmark-container .body .book-buttons {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  cursor: pointer;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.book-section .bookmark-container .body .book-buttons h4 {
  color: var(--font-color);
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 600;
}
.book-section .bookmark-container .body .book-buttons:hover {
  background-color: var(--bg-color-three);
  border: 1px solid var(--secondary-color);
}
.book-section .bookmark-container .body .book-buttons:hover h4 {
  transform: translateX(1rem);
}
.book-section .bookmark-container .body .ml h4 {
  font-family: "NotoSansMalayalam";
  font-weight: 500;
}

@media only screen and (max-width: 1450px) {
  .book-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .container {
    order: 2;
    max-width: 70rem;
    height: 100%;
    width: 100%;
  }
  .book-section .container .bkm-content {
    max-height: 30rem;
  }
  .book-section .bookmark-container {
    max-width: 30rem;
    height: auto;
    width: 100%;
  }
  .book-section .bookmark-container .drop-bookmark {
    display: block;
    margin-top: 1rem;
    padding: 0 0.5rem;
    height: auto;
    width: 100%;
  }
  .book-section .bookmark-container .drop-bookmark .content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 1rem;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head h4 {
    color: var(--font-color-two);
    font-weight: 600;
  }
  .book-section .bookmark-container .drop-bookmark .content .bookmark-head .ml {
    font-weight: 500;
  }
  .book-section .bookmark-container .drop-bookmark .content button {
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 50%;
    border: 0;
    height: 2rem;
    width: 2rem;
    cursor: pointer;
  }
  .book-section .bookmark-container .drop-bookmark .content button i {
    color: var(--font-color-two);
  }
  .book-section .bookmark-container .drop-bookmark .content button .rotate {
    rotate: 180deg;
  }
  .book-section .bookmark-container .drop-bookmark .content button:hover {
    background-color: var(--font-color-two);
  }
  .book-section .bookmark-container .drop-bookmark .content button:hover i {
    color: var(--secondary-color);
  }
  .book-section .body {
    display: grid;
    grid-template-rows: 0fr;
  }
  .book-section .body .boomarks-section {
    overflow: hidden;
  }
  .book-section .show {
    grid-template-rows: 1fr;
  }
}
@media only screen and (max-width: 1000px) {
  .book-section {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .book-section .container .bookmark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .book-section .container .bkm-image {
    max-height: 30rem;
    max-width: 30rem;
    height: 100%;
    width: 100%;
  }
  .book-section .container .bkm-content {
    height: 100%;
    width: 100%;
  }
}
/*----------------- End Bookmarks section --------------------------*/
/*----------------- Book section -----------------------------------*/
.book-main {
  max-height: 100vh;
  max-width: 100vw;
  height: 100vh;
  width: 100vw;
}
.book-main .about-section {
  height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
}

.show-book-section {
  margin-top: 1rem;
  border: 2px dashed var(--font-color);
  padding: 1rem 0 0;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.show-book-section img {
  max-width: 10rem;
  height: auto;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.show-book-section .gallery {
  overflow: auto;
  justify-content: center;
  align-items: start;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.5rem 0.5rem;
}
.show-book-section .gallery .first-image {
  grid-column: 1/-1;
  justify-self: center;
  width: 100%;
  text-align: center;
}
.show-book-section .gallery img {
  display: block;
  margin: auto;
}
.show-book-section .gallery .index-value {
  margin-top: 0.5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.show-book-section .gallery .index-value h4 {
  color: var(--font-color-three);
  font-size: 0.95em;
  font-weight: 700;
}

/*----------------- End book section -------------------------------*/
/*----------------- Profile Section --------------------------------*/
.profile-section {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.profile-container {
  max-width: 50rem;
  height: auto;
  width: 100%;
}
.profile-container .container {
  height: 20rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.profile-container .container .img-secton {
  background: var(--profile-background);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.profile-container .container .img-secton img {
  height: auto;
  width: 80%;
  max-height: 13rem;
}
.profile-container .container .img-secton h4 {
  font-size: 1.1em;
  background: var(--name);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-container .container .details-section {
  background: var(--profile-background);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.profile-container .container .details-section .heading h4 {
  font-size: 1.2em;
  background: var(--heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile-container .container .details-section table {
  border-collapse: collapse;
  height: auto;
  width: auto;
}
.profile-container .container .details-section table td:nth-child(1) {
  padding: 0.3rem 2rem 0.3rem 0.2rem;
  color: var(--font-color-two);
  font-size: 0.95em;
  font-weight: 600;
}
.profile-container .container .details-section table td:nth-child(2) {
  padding: 0.2rem;
  color: var(--font-color-three);
  font-size: 1em;
  font-weight: 700;
}
.profile-container .bottom-container {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--profile-background);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  min-height: 5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.profile-container .bottom-container table {
  border-collapse: collapse;
  height: auto;
  width: auto;
}
.profile-container .bottom-container table td:nth-child(1) {
  padding: 0.5rem 2rem 0.2rem 0.2rem;
  color: var(--font-color-two);
  font-size: 0.95em;
  font-weight: 600;
}
.profile-container .bottom-container table td:nth-child(2) {
  padding: 0.5rem 0 0.2rem;
  color: var(--font-color-three);
  font-size: 1em;
  font-weight: 700;
}
.profile-container .bottom-container table td:nth-child(2) a {
  color: var(--font-color-three);
}
.profile-container .bottom-container table td:nth-child(2) a:hover {
  color: var(--font-color-two);
  transform: scale(1.1, 1.1);
}

.no-member-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.no-member-container {
  background-color: var(--secondary-color);
  border-radius: 2rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 20rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.no-member-container img {
  max-height: 15rem;
  width: auto;
}
.no-member-container h4 {
  color: var(--bold-color);
  font-size: 1.5em;
}

/*----------------- End Profile Section ----------------------------*/
/*----------------- Login section ----------------------------------*/
.login-section {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color), var(--primary-color));
  height: 100%;
  width: 100%;
}
.login-section .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.login-section-view {
  display: block;
}

.login-section-hide {
  display: none;
}

.dark .login-container .login-icon {
  background-image: url(../images/user-account-dark.png);
}

.login-container {
  position: relative;
  background-color: var(--bg-color-two);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 5rem;
  padding: 3rem 0 1rem;
  height: auto;
  width: 30rem;
}
.login-container .login-icon {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  background-image: url(../images/user-account.png);
  background-color: var(--bold-color);
  background-repeat: no-repeat;
  background-size: 3rem 3rem;
  background-position: center;
  height: 6rem;
  width: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-icon img {
  height: 3rem;
  width: 3rem;
}
.login-container .login-content {
  padding: 3rem 3rem 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-content form {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.login-container .login-content label {
  position: relative;
  height: auto;
  width: 100%;
}
.login-container .login-content label h4 {
  margin-left: 1rem;
  color: var(--bold-color);
  font-size: 0.95em;
  font-weight: 600;
}
.login-container .login-content label input {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-color-grey);
  border: 0;
  border-radius: 3rem;
  padding: 0 0 0 1.5rem;
  color: var(--bold-color);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.01em;
  outline: none;
  height: 3rem;
  width: 100%;
}
.login-container .login-content label input:focus {
  background-color: var(--bg-color-one);
}
.login-container .login-content label #userdob::-webkit-calendar-picker-indicator {
  display: none;
}
.login-container .login-content label .ico {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: flex;
  flex-direction: rpw;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .login-content label .ico i {
  color: var(--bold-color);
  font-size: 1em;
}
.login-container .login-content label:has(input:focus) .ico {
  background-color: var(--bold-color);
}
.login-container .login-content label:has(input:focus) .ico i {
  color: var(--primary-color);
}
.login-container .login-content .button-sec {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: centre;
  gap: 0;
}
.login-container .login-content .button-sec button {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bold-color);
  border: 0;
  border-radius: 3rem;
  cursor: pointer;
  height: 2.5rem;
  width: 10rem;
}
.login-container .login-content .button-sec button h4 {
  color: var(--primary-color);
  letter-spacing: 0.2em;
  font-size: 1em;
  font-weight: 600;
}
.login-container .login-content .button-sec button:hover {
  background-color: var(--primary-color);
  border: 1px solid var(--bold-color);
}
.login-container .login-content .button-sec button:hover h4 {
  color: var(--bold-color);
  letter-spacing: 0em;
}
.login-container .login-content .message-sec {
  display: none;
  padding: 2rem 0 0;
  height: auto;
  width: 100%;
}
.login-container .login-content .message-sec .message-content {
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border-radius: 1rem;
  padding: 0.5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.login-container .login-content .message-sec .message-content h4 {
  font-weight: 600;
  font-size: 0.99em;
}
.login-container .login-content .message-sec .message-content h5 {
  color: var(--bold-color);
  font-weight: 600;
  font-size: 0.9em;
}
.login-container .login-content .message-sec .message-content h6 {
  color: var(--bold-color);
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.9em;
  cursor: pointer;
}
.login-container .login-content .message-sec .message-content h6:hover {
  color: var(--font-color);
}
.login-container .login-content .message-sec .message-content .warning {
  color: var(--warning-red);
}
.login-container .login-content .message-sec .message-content .pending {
  color: var(--green-color);
}
.login-container .close-icon {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
}
.login-container .close-icon .cnt {
  border-radius: 50%;
  background-color: var(--bg-color-one);
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.login-container .close-icon .cnt i {
  color: var(--bold-color);
}
.login-container .close-icon .cnt:hover {
  background-color: var(--warning-red);
}
.login-container .close-icon .cnt:hover i {
  color: var(--bg-color-one);
}

.login-container-view {
  display: block;
}

.login-container-hide {
  display: none;
}

@media only screen and (max-width: 500px) {
  .login-section .container {
    padding: 0 1rem;
  }
  .login-container {
    height: auto;
    width: 100%;
  }
  .login-container .login-content {
    padding: 3rem 1rem 0;
  }
  .login-container .login-content .button-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.administrator-container {
  display: none;
  position: relative;
  background-color: var(--primary-color);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 5rem;
  height: 28rem;
  width: 30rem;
}
.administrator-container .adm-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.administrator-container .adm-container .head {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .head h4 {
  color: var(--bold-color);
  font-size: 1em;
  font-weight: 600;
}
.administrator-container .adm-container .head .underline {
  background-color: var(--bold-color);
  height: 0.01rem;
  width: 10rem;
}
.administrator-container .adm-container .adm-body {
  max-height: 15rem;
  overflow: auto;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .adm-body .adm-card {
  padding: 2rem 1rem 1rem;
  border-bottom: 1px solid var(--border-color);
  height: 2rem;
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}
.administrator-container .adm-container .adm-body .adm-card h4 {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.administrator-container .adm-container .adm-body .adm-card a {
  color: var(--font-color);
  font-weight: 600;
  font-size: 1em;
}
.administrator-container .adm-container .adm-body .adm-card a:hover {
  color: var(--bold-color);
}
.administrator-container .adm-container .adm-body .adm-card:hover {
  background-color: var(--secondary-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.administrator-container .adm-container button {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bold-color);
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 1rem;
  cursor: pointer;
}
.administrator-container .adm-container button h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9em;
}
.administrator-container .adm-container button:hover {
  border: 1px solid var(--bold-color);
  background-color: var(--primary-color);
}
.administrator-container .adm-container button:hover h4 {
  color: var(--bold-color);
}

/*----------------- End Login Section ------------------------------*/
