:root {
  --x: 45deg;
  --primary-clr: #008D4D;
  --secondary-clr: #005F33;vi
  --primary-devtom: #a5f9c5;
  --secondary-devtom: #fb4a4f;
  --body-clr: linear-gradient(45deg, #F9F9F9 2%, #e9fdf4 100%);
  --bg-hover: #e6e6e6;
  --nav-clr: #F5F0F6;
  --nav-drop-clr: #b5e2ce;
  --nav-drop-two-clr: #d3d3d3;
  --font-dark: #2E2E2E;
  --font-light: #F9F9F9;
  --light-glass-clr: rgba(255, 255, 255, 0.1);
  --lighter-glass-clr: rgba(255, 255, 255, 0.2);
  --glass-clr: rgba(0, 0, 0, 0.25);
  --darker-glass-clr: rgba(0, 0, 0, 0.75);
  --slightly-dark-clr: rgba(0,  0, 0, 0.6);
  --border: 0.1rem solid rgba(0, 0, 0, 0.35);
  --larger-border: 0.2rem solid rgba(0, 0, 0, 0.35);
  --small-radius: 0.5rem;
  --normal-radius: 1rem;
  --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --small-shadow: 0.25rem 0.25rem 0.5rem rgba(32, 7, 65, 0.14);
  --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --normal-reflection: below 0.5rem linear-gradient(transparent, transparent, #000);
}

@font-face {
  font-family: General;
  src: url(/static/core/fonts/General2.ttf);
}

@font-face {
  font-family: Accent;
  src: url(/static/core/fonts/Quaint.ttf);
}

@font-face {
  font-family: Devtom;
  src: url(/static/core/fonts/DT.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: General;
  color: var(--font-dark);
  font-size: 10px;
  letter-spacing: 0.75px;
}

::-webkit-scrollbar {
  width: 0.5rem;
  background: var(--font-dark);
  opacity: 0.5;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, var(--primary-clr));
  border-radius: var(--font-dark);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, var(--secondary-clr));
}

body {
  position: relative;
  background: var(--body-clr);
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
h7,
small,
span {
  pointer-events: none;
  user-select: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  user-select: none;
}

.overall_container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* scroll-to-top */
#progress {
    position: fixed;
    background: var(--primary-clr);
    bottom: 2rem;
    right: 2.5%;
    height: 2.25rem;
    width: 2.25rem;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0.5rem 0rem var(--darker-glass-clr);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
  }
  
  #progress-value {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.75rem;
    width: 1.75rem;
    background: var(--font-dark);
    border-radius: 50%;
  }
  
  #progress-value svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--font-light);
  }


/* loader section */
.loader_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background-image: radial-gradient(circle farthest-corner at center, #F5F0F6, #d3d3d3 100%);
  z-index: 40000;
}

.loader_container span {
  position: absolute;
  top: calc(50% + 47px);
  text-align: center;
  font-size: 2.5rem;
}

.loader_container span::before {
  position: absolute;
  content: "";
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 0.2rem;
   background: var(--font-dark);
}

.loader_img {
  position: relative;
  width: 5rem;
  height: 5rem;
}

.loader_img img {
  position: absolute;
  top: o;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader {
  position: absolute;
  top: calc(50% - 42px);
  left: calc(50% - 42px);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid var(--font-dark);
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid var(--font-dark);
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid var(--font-dark);
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}


/* navigation section */
.actual-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 6rem;
  box-shadow: 0 0.2rem 0.8rem hsla(220, 68%, 12%, 0.1);
  background: var(--nav-clr);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.actual_navbar {
  position: relative;
  max-width: calc(160rem - 5%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--font-dark);
  transition: 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(0.95);
  opacity: 0.8;
}

.logo_img {
  position: relative;
  width: 4rem;
  height: 4rem;
}

.menu-icons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.625%;
  width: 5rem;
  height: 5rem;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  z-index: 1000;
}

.menu-icons:hover {
  border: var(--border);
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.line {
  fill:none;
  stroke:var(--font-dark);
  transition: stroke 600ms, stroke-dasharray 300ms, stroke-dashoffset 300ms;
  stroke-width:5.5;
  stroke-linecap:round;
}

.ham6.active .line {
  stroke: var(--secondary-clr);
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.active .top {
  stroke-dashoffset: -132px;
}

.ham6.active .middle {
  stroke-dashoffset: -71px;
}

.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

.nav-list {
    display: flex;
}

.nav-list li {
    position: relative;
    line-height: 6rem;
}

.sub-menu > li {
    line-height: 3.5rem;
}

.sub-menu > li a {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    cursor: pointer;
    color: var(--font-light);
}

.nav-list a {
    display: block;
    color: var(--font-dark);
    font-size: 1.8rem;
    padding: 0 1.5rem;
    letter-spacing: 0.2rem;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.nav-list a i {
    font-size: 1.6rem;
}

.nav-list a:hover {
    opacity: 0.6;
}

.sub-menu {
    position: absolute;
    display: block;
    width: 22.5rem;
    background: rgba(0,0,0,0.7);
    border-top: 0.25rem solid rgba(0,0,0,0.7);
    z-index: 100;;
    opacity: 0;
    visibility: hidden;
    top: 12rem;
    transition: all 0.45s ease;
    backdrop-filter: blur(0.5rem);
}

.sub-menu::before {
    position: absolute;
    content: "";
    top:-2rem;
    left: 1.5rem;
    border: 1rem solid transparent;
    border-bottom-color: rgba(0,0,0,0.7);
}

.sub-menu .sub-menu {
    top:0;
    left: 130%;
    border-top: none;
    border-left: 0.25rem solid var(--primary-clr);
}

.sub-menu .sub-menu::before {
    top: 0.9rem;
    left: -2rem;
    border: 1rem solid transparent;
    border-right-color: var(--primary-clr);
}

.nav-list li:hover:hover > .sub-menu {
    top: 6rem;
    opacity: 1;
    visibility: visible;
}

.sub-menu li:hover:hover > .sub-menu {
    top: 0;
    opacity: 1;
    left: calc(100% + 0.75rem);
    visibility: visible;
}


/* footer section */
footer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 5rem;
  background: #191919;
  border-top: var(--border);
}

.footer-container {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 3rem;
}

.foot-cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.foot-socials {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 5rem);
}

.foot-socials li a {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: var(--light-glass-clr);
  border: var(--border);
  border-radius: var(--small-radius);
  box-shadow: var(--small-shadow);
  -webkit-box-reflect: var(--normal-reflection);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.foot-socials li a i {
  color: var(--font-light);
  font-size: 1.5rem;
  transition: 0.3s ease-in-out;
}

.foot-socials li a:hover {
  background: var(--primary-clr);
}

.foot-support,
.foot-quick,
.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.foot-support li a,
.foot-quick li a {
  color: var(--font-light);
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  opacity:0.6;
  transition: 0.3s ease-in-out;
}

.foot-support li a:hover,
.foot-quick li a:hover {
  opacity: 1;
}

.foot-contact li {
  position: relative;
  width: 100%;
  display: flex;
  gap: 1rem;
  transition:0.3s ease-in-out;
}

.foot-contact li span {
  width: 2rem;
  height: 2rem;
  background: var(--light-glass-clr);
  border-radius: var(--small-radius);
  border: var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}

.foot-contact li span i {
  font-size: 1.2rem;
  color: var(--primary-clr);
  transition: 0.3s ease-in-out;
}

.foot-contact li a {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  color: var(--font-light);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  line-height: 2rem;
}

.foot-contact li:hover span i {
  color: var(--font-light);
}

.foot-contact li:hover  a {
  color: var(--primary-clr);
}

.copyright {
  position: relative;
  width: 100%;
  padding: 2rem 5rem;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy-p {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 2.5rem;
  color: var(--font-light);
}

.copy-p a {
  pointer-events: auto;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-family: Devtom;
  font-size: 1rem;
  color: var(--primary-devtom);
}

.copy-p a span {
  color: var(--secondary-devtom);
  transition: 0.3s ease-in-out;
}

.copy-p a:hover {
  color: var(--secondary-devtom);
}

.copy-p a:hover span {
  color: var(--primary-devtom);
}

.foot-p {
  font-family: General;
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: var(--font-light);
}

.foot-head {
  position: relative;
  width: fit-content;
  font-size: 1.75rem;
  color: var(--font-light);
}

.foot-head::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.5rem;
  width: 50%;
  height: 0.15rem;
  background: var(--font-light);
}


/* home page */
.top_sec {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 6rem);
  margin-top: 6rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

  .outer-swipe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.gen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.colored-blanket {
  position: absolute;
  top: 0;
  left:0;
  width: 100%;
  height: 100%;
  background: var(--darker-glass-clr);
  opacity: 0.5;
  z-index: 1;
}

.home-cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  padding: 2rem 1rem;
  border: var(--border-light);
  z-index: 20;
  transition: 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


/* amenity page */
.prod-sec {
    margin-top: 14rem;
    margin-bottom: 8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.pros-cnt {
    width: 95%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4rem;
}

.prod-card {
    position: relative;
    width: 55%;
    height: 60rem;
    display: flex;
    flex-direction: column;
    gap: 5%; 
    overflow: hidden;
}

.product-cnt {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
}

.amenity-head {
  position: relative;
  text-align: center;
  width: fit-content;
  font-size: 5rem;
  color: var(--primary-clr);
}

.amenity-head::before,
.aboutcard-head::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  height: 0.5rem;
  width: 50%;
  border-radius: var(--small-radius);
  background: var(--primary-clr);
}

.product-sections {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-txt {
    font-size: 2.5rem;
    font-family: Accent;
    color: var(--font-light);
    letter-spacing: 0.2rem;
    font-weight: 600;
    background: var(--font-dark);
    width: fit content;
    padding: 1rem;
}

.gen-p {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.1rem; 
    background-color: #e0e0e0; 
    border: 0.1rem solid #c0c0c0; 
    border-radius: var(--small-raius);
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
    overflow: hidden; 
}

.specs-cell {
    background-color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 10rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.specs-cell:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15);
    z-index: 2;
}

.specs-cell:focus-within {
    outline: 2px solid var(--primary-clr);
    outline-offset: -2px;
}

.specs-cell i {
    font-size: 28px;
    color: var(--primary-clr);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.specs-cell:hover i {
    transform: scale(1.1);
}

.spec-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    font-weight: 600;
}

.spec-value {
    font-size: 18px;
    color: var(--font-dark);
    font-weight: 600;
    line-height: 1.3;
}

#main-slider {
    position: relative;
    flex: 0 0 80%;
    height: 80%;
}

#main-slider .splide__track,
#main-slider .splide__list,
#main-slider .splide__slide {
    height: 100%;
}

#main-slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#thumbnail-slider {
    flex: 0 0 15%;
    height: 15%;
}

#thumbnail-slider .splide__track,
#thumbnail-slider .splide__list {
    height: 100%;
}

#thumbnail-slider .splide__list {
    display: flex;
    align-items: center; 
}

#thumbnail-slider .splide__slide {
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#thumbnail-slider .splide__slide.is-active {
    opacity: 1;
    border: 2px solid #000;
}

#thumbnail-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#thumbnail-slider .splide__slide img {
    object-fit: contain; 
    max-height: 100%;
}

#main-slider .splide__arrow {
    background: var(--font-dark);
    width: 40px;
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#main-slider .splide__arrow:hover {
    background: var(--primary-clr);
    opacity: 1;
}

#main-slider .splide__arrow svg {
    fill: var(--font-light);
    width: 20px;
    height: 20px;
}

#main-slider .splide__arrow:hover svg {
    fill: var(--font-dark);
}

#main-slider .splide__arrow--prev {
    left: 10px;
}

#main-slider .splide__arrow--next {
    right: 10px;
}


/* directors page */
.directors-cnt {
  position: relative;
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dir-cnt {
  position: relative;
  width: 70%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding:  2rem;
}

.directors-cnt .dir-cnt:nth-child(even) {
  background-color: var(--nav-drop-clr);
  box-shadow: var(--small-shadow);
  flex-direction: row-reverse;
}

.dir-img {
  position: relative;
  width: 50%;
  height: 40rem;
  border: var(--larger-border)
}

.gen-dir-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.dir-content {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* history page */
.top-sec {
  position: relative;
  width: 100%;
  height: 30rem;
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('/static/core/images/headers/headers.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.top-head {
  position: relative;
  width: fit-content;
  color: var(--font-light)
}

.top-head::before,
.aboutcard-head::before {
  background: var(--font-light);
}

.aboutcard-head::before {
  height: 0.3rem;
}

.gen-sec,
.bottom-sec {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin: 8rem 0;
}

.bottom-sec {
  margin-top: 0;
  margin-bottom: 8rem;
}

.history-grid {
  position: relative;
  width: 95%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.tile {
  border: var(--border);
  padding: 1.5rem;
  box-sizing: border-box;
}

.highlight-first,
.highlight-last {
  background-color: var(--nav-drop-clr);
}

.tile.text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

.vision-txt {
  position: relative;
  font-family: Accent;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-clr);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.with-bg-txt {
  background: var(--font-dark);
  padding: 1rem;
  color: var(--font-light)
}

.tile.image {
  padding: 0;
}

.tile.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mid-sec{
  margin: 0;
}

.padded-cnt {
  padding: 1rem;
}

.shorter-cnt {
  height: 35rem
}

.bordered {
  border: var(--larger-border);
}

.about-head {
  font-size: 4rem;
}

.inner-img-cnt {
  position: relative;
  width: 100%;
  height: 100%;
}

.halfed {
  width: 50%;
}

.about-download-card {
  position: relative;
  width: 60%;
  min-height: 40rem;
  padding: 2rem;
}

.about-card-cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  z-index: 50;
}

.aboutcard-head {
  position: relative;
  font-size: 3rem;
  color: var(--font-light);
  text-align: center;
}

.light-p {
  color: var(--font-light)
}

.centered-p {
  text-align: center;
}

.about-card-btn {
  position: relative;
  width: fit-content;
  padding: 1rem;
  background: var(--font-dark);
  color: var(--font-light);
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  transition: 0.3s ease-in-out;
}

.about-card-btn:hover {
  background: var(--font-light);
  color: var(--primary-clr);
  box-shadow: none;
  letter-spacing: 0.25rem;
}

.gen-btn:hover {
  background: var(--primary-clr);
  color: var(--font-light);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  width: 95%;
}

.doc-card {
  display: block;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 280px;
  transition: all 0.3s ease;
}

.document-grid .doc-card:nth-child(even) {
  border-top: 4px solid var(--nav-drop-clr);
}

.document-grid .doc-card:nth-child(odd) {
  border-top: 4px solid var(--primary-clr);
}

.doc-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: url('/static/core/images/downloads/documents.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.doc-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #fff;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--font-dark);
  transition: all 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.doc-card:hover .doc-title {
  background-color: var(--primary-clr);
  color: var(--font-light);
}

.doc-card:hover .doc-image {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.doc-card::after {
  content: "View Document";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: var(--font-dark);
  color: var(--font-light);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.doc-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.year-head {
  width: 95%;
  position: relative;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.year-head span {
  padding: 0.25rem;
  background: var(--primary-clr);
  color: var(--font-light);
  font-size: 2.5rem;
}

.year-head hr {
  width: 100%;
  height: 0.3rem;
  background: var(--font-dark);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
  width: 95%;
}

.newsletter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #2c3e50;
  background-color: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.newsletter-item:nth-child(4n) {
  border-right: none;
}

.newsletter-grid .newsletter-item:nth-last-child(-n+4) {
  border-bottom: none;
}

.newsletter-details {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.newsletter-date {
  color: #7f8c8d;
  font-size: 1.4rem;
  font-weight: 600;
}

.download-icon {
  color: var(--primary-clr);
  font-size: 1.6rem;
  transition: transform 0.2s ease;
  opacity: 0.8;
}

.newsletter-item:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.1);
  z-index: 1;
}

.newsletter-item:hover .download-icon {
  transform: scale(1.2);
  opacity: 1;
}

.newsletter-item::before {
  content: "Download";
  position: absolute;
  right: 20px;
  background-color: var(--font-dark);
  color: var(--font-light);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(10px);
  pointer-events: none;
}

.newsletter-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: var(--border);
}

.prev,
.next {
  font-size: 1.4rem;
  color: var(--font-dark);
  font-weight: 900;
}

.current {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--primary-clr);
  color: var(--font-light);
  padding: 0.25rem
}

.page {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--font-dark)
}

.darker-blanket {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--glass-clr);
}


  /* contact page */
.contact-sec {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    min-height: calc(100vh - 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8rem 0;
    overflow: hidden;
}

/* The "fixed" background */
.contact-sec::before {
    content: "";
    position: fixed;
    top: 6rem; 
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(/static/core/images/headers/headers.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    will-change: transform;
}

  .contact-content {
    position: relative;
    max-width: 90%;
  }

  .contact-main-cnt {
    position: relative;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
  }

  .contactInfo {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--darker-glass-clr);
    box-shadow:var(--small-shadow);
    border-radius: var(--small-radius);
    padding: 4rem 2rem;
    border: 0.1rem solid var(--primary-clr);
    backdrop-filter: blur(0.25rem);
  }

  .info-box {
    position: relative;
    width: 100%;
    display: flex;
    gap: 1.5rem;
  }

  .text-box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .very-small-head {
    position: relative;
    color: var(--font-light);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
  }

  .text-box a {
    font-size: 1.4rem;
    color: var(--font-light);
    letter-spacing: 0.1rem;
    opacity: 0.7;
    line-height: 2.5rem;
    font-weight: 500;
    transition: 0.3s ease-in-out;
  }

  .text-box a:hover {
    opacity: 1;
    color:var(--primary-clr);
  }

  .icon-box {
    position: relative;
    width: 3rem;
    height: 3rem;
    background: var(--light-glass-clr);
    border-radius: var(--small-radius);
    border: var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon-box i {
    color: var(--font-light);
    font-size: 1.6rem;
  }

  .info-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .map-box {
    position: relative;
    width: 100%;
    height: 30rem;
    border: 0.1rem solid var(--font-light);
    padding: 0.5rem;
  }

  .inner-map {
    position: relative;
    width: 100%;
    height: 100%;
  }

   .inner-map iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(90%) brightness(96%);
   }

  .contactForm {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    background: var(--darker-glass-clr);
    border: 0.1rem solid var(--primary-clr);
    box-shadow: var(--small-shadow);
    border-radius: var(--small-radius);
    backdrop-filter: blur(0.5rem);
  }

  .contactForm.job-form {
    width: 100%;
  }

  .main-contact-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

.contact-head {
  position: relative;
  width: fit-content;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  line-height: 4rem;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--font-light), var(--nav-drop-clr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

  .rw-100 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  .inputBx {
    width: 100%;
  }

  .inputBx.rw-50 {
    position: relative;
    width: 50%;
  }

  .inputBx input,
  .inputBx textarea,
  .inputBx select {
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
    margin: 1rem 0;
    font-family: General;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    border-bottom: 0.1rem solid var(--primary-clr);
    color: var(--font-light);
    font-size: 1.3rem;
    line-height: 2.25rem;
    letter-spacing: 0.1rem;
    transition: 0.3s ease-in-out;
  }

  .inputBx textarea {
    height: 15rem;
  }

  .inputBx .captcha-question,
  .inputBx .all-the-way-up {
    position: absolute;
    top: -2.4rem;
    left: 0;
    color: var(--nav-drop-clr);
    font-size: 1.4rem;
    opacity: 1;
  }

  .inputBx span {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    color: var(--font-light);
    user-select: none;
    padding: 0.5rem 0;
    margin: 1rem 0;
    font-size: 1.6rem;
    opacity: 0.6;
    font-weight: 500;
    transition: 0.3s ease-in-out;
  }

  .inputBx input:focus ~ span,
  .inputBx textarea:focus ~ span,
  .inputBx input:valid ~ span,
  .inputBx textarea:valid ~ span  {
    color: var(--nav-drop-clr);
    font-size: 1.4rem;
    opacity: 1;
    transform: translateY(-2.4rem);
  }

  .inputBx input:focus ~ .all-the-way-up ,
  .inputBx textarea:focus ~ .all-the-way-up ,
  .inputBx input:valid ~ .all-the-way-up ,
  .inputBx textarea:valid ~ .all-the-way-up {
    transform: none;
  }

.rw-100.fichwa {
  display: none;
}

  .buttonBox {
    position: relative;
    margin: 1rem 0;
    max-width: 25rem;
    min-width: 23.5rem;
    -webkit-box-reflect: below 0.5rem linear-gradient(transparent, transparent, #000);
  }

#sixth {
  overflow: hidden;
}

.buttonBox > .gen-contact-btn {
    position: relative;
    width: 100%;
    height: 5rem;
    background: var(--light-glass-clr);
    color: var(--font-light);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.4rem;
    font-size: 1.75rem;
    outline: none;
    border: var(--border);
    border-radius: var(--small-radius);
    cursor: pointer;
  }

.gen-border {
    position: absolute;
    background: none;
    transition: all .6s ease-in-out;
}

#sixth > .gen-contact-btn {
  z-index: 1;
  transition: color .6s ease;
}

#sixth .gen-border {
  z-index: 0;
  background: var(--primary-clr);
  width: 3rem;
  height: 3rem;
  transform: rotate(45deg);
}

#sixth > .gen-border:nth-of-type(1) {
  top: -3.5rem;
  left: -3rem; 
}

#sixth > .gen-border:nth-of-type(2)  {
  top: -3.5rem;
  right: -3rem;
}

#sixth > .gen-border:nth-of-type(3) {
  bottom: -3.5rem;
  left: -3rem;
}

#sixth > .gen-border:nth-of-type(4) {
  bottom: -3.5rem;
  right: -3rem;
}

#sixth:hover .gen-border {
  transform: scale(15.7) rotate(45deg);
}

#sixth:hover .gen-contact-btn {
  transition: color .6s ease;
}

.submitted-cnt {
  position: relative;
  width: 100%;
  ;height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sent-cnt {
  position: relative;
  width: 15rem;
  height: 15rem;
  box-shadow: var(--small-shadow);
}

.sent-cnt img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  object-fit: cover;
}

.field-error {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  color: #ff4d4f;
  line-height: 2rem;
}

.form-help-text {
  position: relative;
  color: var(--font-light);
  font-size: 1rem;
  line-height: 1.5rem;
  opacity: 0.6;
  font-weight: 500;
}

/* media page */
.media-sec {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 6rem);
  width: 100%;
  background: linear-gradient(135deg, var(--font-dark) 0%, var(--primary-clr) 100%);
  padding: 8rem 0;
}

.page-title {
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.extra-page-title {
  margin-bottom: 4rem;
}
        
.main-title {
  font-size: 5rem;
  background: linear-gradient(45deg, var(--font-light) 0%, var(--nav-drop-clr) 50%, var(--nav-drop-clr) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: 10px;
  position: relative;
  animation: gradientShift 8s ease infinite, fadeInDown 1s ease-out;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
  text-align: center;
}

.light-title {
  background: linear-gradient(45deg, var(--font-dark) 0%, var(--primary-clr) 50%, var(--primary-clr) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.title-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  margin-top: 10px;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.5s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2rem;
}
        
.title-underline {
  height: 0.5rem;
  width: 15rem;
  background: linear-gradient(to right, transparent, var(--nav-drop-clr), var(--font-light), transparent);
  margin: 15px auto 30px;
  animation: expandWidth 1.5s ease-out 0.8s both, glow 2s ease-in-out infinite 2s;
}

.light-line {
  background: linear-gradient(to right, transparent, var(--primary-clr), var(--font-dark), transparent);
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 95%;
}
        
.card {
  background-color: rgba(255, 255, 255, 0.08);
  width: 40%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
        
.card:nth-child(1) {
  animation: slideInUp 0.6s forwards 0.3s;
}

.card:nth-child(2) {
  animation: slideInUp 0.6s forwards 0.6s;
}
        
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.12);
}

.card-image {
  height: 180px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
        
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-image img {
  transform: scale(1.08);
}
        
.card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(13, 21, 32, 0.9), transparent);
}
        
.card-content {
  padding: 2rem;
  position: relative;
}

.card h3 {
  color: var(--font-light);
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
        
.card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 2rem;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
        
.card-btn,
.card.amenity-card .card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(45deg, var(--primary-clr), var(--secondary-clr));
  color: var(--font-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(58, 89, 133, 0.3);
}

.card.amenity-card:nth-child(2) .card-btn {
  background: linear-gradient(45deg, var(--primary-clr), var(--secondary-clr));
}

.card.amenity-card:nth-child(2) .card-btn:hover {
  background: linear-gradient(45deg, var(--nav-drop-clr), var(--primary-clr));
}
        
.card-btn:hover,
.card.amenity-card .card-btn:hover {
  background: linear-gradient(45deg, var(--nav-drop-clr), var(--primary-clr));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 89, 133, 0.4);
  padding-right: 35px;
  color: var(--font-dark)
}
        
.card-btn:hover .btn-icon {
  transform: translateX(5px);
  opacity: 1;
}

.btn-icon {
  margin-left: 8px;
  opacity: 0.8;
  transition: all 0.3s ease;
  transform: translateX(0);
}
        
.amenity-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(45deg, var(--primary-clr), var(--secondary-clr));
  color: var(--font-light);
  padding: 5px 15px;
  display; flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  user-select: none;
}
        
@keyframes slideInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 140, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(74, 111, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 111, 165, 0); }
}
        
.card-btn.pulse {
  animation: pulse 2s infinite;
}
        
.card:nth-child(2) .card-btn {
  background: linear-gradient(45deg, #d45a6a, #c34a5a);
  box-shadow: 0 4px 15px rgba(195, 74, 90, 0.3);
}

.card:nth-child(2) .card-btn:hover {
  background: linear-gradient(45deg, var(--nav-drop-clr), #d35a6a);
  box-shadow: 0 6px 20px rgba(195, 74, 90, 0.4);
}

.card:nth-child(2) .card-tag {
  background: linear-gradient(45deg, #d45a6a, #c34a5a);
}

.card.amenity-card:nth-child(2) .card-tag {
  background: linear-gradient(45deg, var(--primary-clr), var(--secondary-clr));
}


/* useful numbers page */
.useful-sec {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 6rem;
  margin-bottom: 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-clr) 0%, var(--secondary-clr) 100%);
    color: var(--font-light);
    box-shadow: 0 15px 35px rgba(42, 92, 169, 0.15);
    position: relative;
    overflow: hidden;
}
        
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
        
.ngo-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
        
.logo-text {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
        
.useful-h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
        
.page-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 25px;
  opacity: 0.9;
  line-height: 2rem;
}
        
.emergency-banner {
  background: rgba(230, 57, 70, 0.15);
  border-left: 5px solid var(--emergency);
  padding: 15px 25px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  backdrop-filter: blur(10px);
  user-select: none;
}
        
.emergency-banner i {
  font-size: 1.5rem;
  color: #FFEF9F;
}

.emergency-txt {
  font-size: 1.2rem;
  line-height: 2rem;
}

.emergency-txt a {
  color: var(--font-light);
}
        
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  width: 95%;
  margin: 0 auto;
}

.useful-num-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--primary-clr);
  position: relative;
}
        
.useful-num-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
        
.useful-num-card.emergency {
  border-top-color: var(--secondary-devtom);
}
        
.useful-num-card.office {
  border-top-color: var(--secondary-clr);
}
        
.card-header {
    padding: 25px 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, rgba(42, 92, 169, 0.03), rgba(35, 181, 175, 0.03));
}
        
.emergency .card-header {
  background: linear-gradient(to right, rgba(230, 57, 70, 0.03), rgba(255, 159, 28, 0.03));
}
        
.office .card-header {
  background: linear-gradient(to right, rgba(35, 181, 175, 0.03), rgba(42, 157, 143, 0.03));
}
        
.card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}
        
.emergency .card-icon {
    background: linear-gradient(135deg, var(--secondary-devtom), #FF5D73);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}
        
.office .card-icon {
  background: linear-gradient(135deg, var(--primary-clr), var(--secondary-clr));
  box-shadow: 0 8px 20px rgba(35, 181, 175, 0.3);
}
        
.card-title-area {
  flex: 1;
}
        
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
        
.card-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
}
        
.card-body {
  padding: 0 25px 25px;
  flex: 1;
}

.contact-list {
  list-style: none;
  margin-top: 10px;
}
        
.contact-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
        
.contact-item:last-child {
  border-bottom: none;
}
        
.contact-item:hover {
  background: rgba(42, 92, 169, 0.05);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
}
        
.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 18px;
  flex-shrink: 0;
}
        
.emergency .contact-icon {
  background: rgba(230, 57, 70, 0.1);
  color: var(--secondary-devtom);
}

.office .contact-icon {
  background: rgba(0, 141, 77, 0.1);
  color: var(--primary-clr);
}
        
.contact-details {
  flex: 1;
}
        
.contact-name {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 5px;
  user-select: none;
}
        
.contact-role {
  font-size: 1.2rem;
  margin-bottom: 8px;
  opacity: 0.7;
  user-select: none;
}
        
.phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-clr);
}
      
.emergency .phone-number {
  color: var(--secondary-devtom);
}
        
.phone-call-btn {
  background: rgba(42, 92, 169, 0.1);
  color: var(--primary-clr);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.4rem;
}
        
.emergency .phone-call-btn {
  background: rgba(230, 57, 70, 0.1);
  color: var(--secondary-devtom);
}
        
.phone-call-btn:hover {
  background: var(--primary-clr);
  color: var(--font-light);
  transform: scale(1.1);
}
        
.emergency .phone-call-btn:hover {
  background: var(--secondary-devtom);
}
        
.card-footer {
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
        
.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  opacity: 0.7;
}

.availability-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-clr);
}
        
.availability.offline .availability-indicator {
  background: var(--font-dark);
}
        
.card-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(42, 92, 169, 0.1);
  color: var(--primary-clr);
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 600;
}
        
.emergency .card-tag {
  background: rgba(230, 57, 70, 0.1);
  color: var(--secondary-devtom);
}

.quick-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
        
.action-btn {
  background: white;
  border: none;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--font-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
        
.action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
        
.action-btn.emergency-btn {
  background: linear-gradient(135deg, var(--secondary-devtom), #FF5D73);
  color: white;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.useful-num-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.useful-num-card:nth-child(1) { animation-delay: 0.1s; }
.useful-num-card:nth-child(2) { animation-delay: 0.2s; }
.useful-num-card:nth-child(3) { animation-delay: 0.3s; }
.useful-num-card:nth-child(4) { animation-delay: 0.4s; }
.useful-num-card:nth-child(5) { animation-delay: 0.5s; }
.useful-num-card:nth-child(6) { animation-delay: 0.6s; }


/* terms and conditions page */
.terms-sec {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  width: 95%;
}

.toc-sidebar {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 6rem;
}

.toc-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-clr);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-clr);
}

.toc-list {
  list-style-type: none;
}

.toc-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.toc-list a {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
  font-size: 1.4rem;
  color: var(--font-dark);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.toc-list a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.toc-list i {
  margin-right: 10px;
  color: var(--secondary-clr);
}

.toc-content {
  flex: 3;
  min-width: 300px;
  background: white;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.inner-terms-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 20px;
}

.inner-terms-section h2 {
  color: var(--primary-clr);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.inner-terms-section h2 i {
  margin-right: 10px;
  color: var(--secondary-clr);
}

.inner-terms-section p {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.4em;
  line-height: 2rem;
}

.list-container {
  background: #f9f9f9;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.list-container ul, ol {
padding-left: 1.5rem;
margin-bottom: 1.5rem;
}

.list-container li {
margin-bottom: 0.8rem;
color: #555;
font-size: 1.2rem;
}

.list-container ul li::marker {
color: var(--secondary);
}

.list-container ol li::marker {
color: var(--secondary);
font-weight: bold;
}

.highlight {
  background-color: #e3f2fd;
  border-left: 4px solid var(--secondary-clr);
  padding: 1rem;
  margin: 1.5rem 0;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary-clr), var(--secondary-clr));
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.inner-terms-section .contact-section h2 {
  color: white;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.inner-terms-section .contact-section h2 i {
  color: var(--font-light);
}

.inner-terms-section .contact-text,
.inner-terms-section .inner-terms-section-p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--font-light);
  line-height: 2rem;
}

.inner-terms-section .inner-terms-section-p {
  margin-top: 1.5rem; 
  opacity: 0.7;
}

.inner-terms-section .inner-terms-section-p a {
  opacity 1;
  text-decoration: underline;
  color: var(--font-light);
  pointer-events: all;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-button {
  background-color: var(--secondary-clr);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
  background-color: var(--nav-drop-clr);
  color: var(--font-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.contact-button i {
  margin-right: 10px;
}

.phone-button {
  background-color: var(--font-dark);
}

.phone-button:hover {
  background-color: var(--secondary-devtom);
  color: var(--font-light);
}


/* about page */
.hero {
  background: linear-gradient(rgba(0, 141, 77, 0.5), rgba(0, 95, 51, 0.7)), url('/static/core/images/headers/headers.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 180px 0 120px;
  text-align: center;
  margin-top: 6rem;
  width: 100%;
}

.hero h1 {
  font-size: 5rem;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 2rem;
  text-align: center;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--nav-drop-clr);
  color: var(--font-dark);
  border: 0.2rem solid var(--nav-drop-clr);
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.hero-btn:hover {
  background-color: var(--secondary-clr);
  color:var(--font-light) ;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.new-about-section {
  width: 100%;
  padding: 8rem 0;
}

.about-cnt-container {
  width: 95%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 4.5rem;
  position: relative;
  display: inline-block;
  font-family: Accent;
  text-align: center;
  color: var(--primary-clr);
  font-weight: 900;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-clr);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.mission-vision {
  background-color: #f8f9fa;
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.mv-card {
  background-color: white;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  font-size: 3rem;
  color: var(--secondary-clr);
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 95%;
  margin: 0 auto;
}

.value-card {
  background-color: white;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 22.5rem;
  transition: all 0.3s ease-in-out;
}

.value-card:hover {
  background-color: var(--primary-clr);
  color: white;
}

.value-card:hover h4,
.value-card:hover .value-icon  {
  color: white;
}

.value-icon {
  font-size: 3rem;
  color: var(--secondary-clr);
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}


/* board of directors */
.board-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.board-intro p {
  margin-bottom: 1.5rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.board-member {
  background-color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}

.board-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.board-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out
}

.board-member:hover .board-image img {
  transform: scale(1.05);
}

.board-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.board-member:hover .board-overlay {
  opacity: 1;
}

.board-view-btn {
  background-color: var(--primary-clr);
  color: var(--font-light);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  font-size: 1.2rem;
  transform: translateY(20px);
}

.board-member:hover .board-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.board-info {
  padding: 2rem;
}

.board-info h3 {
  font-size: 1.75rem;
  margin-bottom: 5px;
}

.board-position {
  color: var(--secondary-clr);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.board-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.board-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.board-modal {
  background-color: white;
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.board-modal-overlay.active .board-modal {
  transform: translateY(0);
}

.board-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
}

.board-modal-header h3 {
  margin-bottom: 0;
  font-size: 2rem;
}

.board-close-modal {
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.board-close-modal:hover {
  color: var(--primary-clr);
}

.board-modal-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.board-modal-image {
  overflow: hidden;
  height: 350px;
}

.board-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-modal-info h4 {
  font-size: 1.6rem;
  color: var(--secondary-clr);
  margin-bottom: 20px;
}

.board-modal-info {
  margin-bottom: 20px;
  line-height: 2rem;
  font-size: 1.4rem;
}

/* History page */
.history-sec {
  padding: 8rem 0;
  width: 100%;
}

.history-subtitle {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 30px auto 0;
  text-align: center;
  line-height: 2rem;
}

.history-content {
  max-width: 70%;
  margin: 0 auto;
}

.history-paragraph {
  margin-bottom: 50px;
  padding: 40px;
  background-color: white;
  box-shadow: var(--shadow);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.history-paragraph:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.history-paragraph::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--secondary-clr);
}

.history-paragraph p {
  line-height: 2;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.history-paragraph p:last-child {
  margin-bottom: 0;
}

.history-paragraph-number {
  position: absolute;
  top: -20px;
  left: 30px;
  background-color: var(--secondary-clr);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  box-shadow: 0 4px 8px rgba(197, 165, 114, 0.3);
}

.history-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 80px 0;
}

.history-image-container {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
  transition: all 0.3s ease-in-out;
}

.history-image-container:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.history-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.history-image-container:hover img {
  transform: scale(1.05);
}

.history-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--font-light);
  font-size: 1.2rem;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  text-align: center;
}


/* faqs page */
.contact-sec.terms-sec::before {
  display: none;
}

.contact-sec.terms-sec {
  justify-content: flex-start;
}

.terms-cont {
  position: relative;
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 1rem;
  background: white;
  box-shadow: var(--shadow);
}

.faq-title {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.faq-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex-direction: column;
}

.faq {
  position: relative;
  width:100%;
  padding: 1rem; 
  border-bottom: 0.1rem solid var(--font-dark);
  transition: background-color 0.3s ease-in-out;
}

.faq::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  background: var(--primary-clr);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq.open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq.open {
  background: #f5f5f5;
  border-bottom: none;
}

.faq-question {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-query {
  font-size: 1.8rem;
}

.faq.open .faq-query {
  font-weight: 600;
  color: var(--primary-clr);
}

.faq-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}

.faq-icon i {
  font-size: 2rem;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.faq.open .faq-icon i {
  color: var(--primary-clr);
  transform: rotate(540deg);
}

.faq-answer {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: max-height 0.6s ease-in-out;
}

.faq.open .faq-answer {
  max-height: calc(100vh - 6rem);
  margin-top: 1rem;
  animation: fade 1.2s ease-in-out;
}

.faq-answer p {
  font-size: 1.4rem;
  line-height: 2rem;
}

.faq-answer h3 {
  font-size: 1.5rem;
}

.faq-answer ul {
  list-style: disc;
  margin-left: 1.5rem;
  font-size: 1.2rem;
  user-select: none;
}

.faq-answer ol {
  font-size: 1.2rem;
  user-select: none;
}

.faq-answer ul li::marker {
  content: "\27A3 ";
  font-size: 1.5rem;
}

.faq-answer ul li > ul {
  list-style: disc;
}

.faq-answer ul li > ul li::marker {
  content: "\27AE ";
}

.faq-answer a {
  pointer-events: auto;
  color: var(--secondary-clr);
  font-weight: 700;
  opacity: 0.7;
  text-decoration: underline;
  transition: all 0.3s ease-in-out
}

.faq-answer a:hover {
  opacity: 1;
}

@keyframes fade{
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0rem);
  }
}


/* Error page */
.error-sec {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 6rem);
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
        
.error-container {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
        
.error-code {
  font-size: 15rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--secondary-clr), var(--primary-clr), #11998e, var(--nav-drop-clr));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  position: relative;
  animation: float 4s ease-in-out infinite;
}
        
.error-code::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}
        
.error-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
        
.error-message {
  font-size: 1.4rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.9;
}
        
.button-container {
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
        
.redirect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 200px;
  letter-spacing: 0.5px;
}
        
.home-btn {
  background: linear-gradient(90deg, var(--primary-clr) 0%, var(--secondary-clr) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(106, 17, 203, 0.3);
  font-size: 1.4rem;
}
        
.contact-btn {
  background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(17, 153, 142, 0.3);
  font-size: 1.4rem;
}
        
.redirect-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.redirect-btn:active {
  transform: translateY(-2px);
}
        
.redirect-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.redirect-btn:hover::before {
  opacity: 1;
}
        
.animation-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  animation: float 6s ease-in-out infinite;
}
        
.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 70%;
  right: 15%;
  animation-delay: 1s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}
        
@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}
        
.home-container {
  width: 100%;
  margin: 0 auto;
}
      
.home-hero {
  margin-top: 6rem;
  height: calc(90vh - 6rem);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        
.home-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}
        
.home-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
        
.home-carousel-slide.active {
  opacity: 1;
}
        
.home-carousel-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  color: white;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
        
.home-carousel-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
        
.home-carousel-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}
        
.home-carousel-indicators {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 2;
}
        
.home-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
        
.home-carousel-indicator.active {
  background-color: white;
  transform: scale(1.3);
}
        
.home-intro {
  padding: 100px 5%;
  text-align: center;
  background-color: white;
}
        
.home-intro-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-clr);
  margin-bottom: 30px;
  text-align: center;
}
        
.home-intro-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
        
.home-amenities {
  padding: 100px 5%;
}
        
.home-amenities-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 60px;
}
        
.home-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  width: 95%;
  margin: 0 auto;
}
        
.home-amenity-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
        
.home-amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
        
.home-amenity-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
        
.home-amenity-content {
  padding: 25px;
}
        
.home-amenity-name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--font-dark);
}
        
.home-amenity-desc {
  color: #666;
  font-size: 1.4rem;;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-media {
  padding: 120px 5%;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.home-media-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 1px;
}
        
.home-media-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  height: 500px;
}
        
.home-media-card {
  position: absolute;
  width: 380px;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  z-index: 1;
}
        
.home-media-card-left {
  transform: rotate(-5deg) translateX(-80px);
  left: calc(50% - 200px);
  background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
}
        
.home-media-card-right {
  transform: rotate(5deg) translateX(80px);
  right: calc(50% - 200px);
  background: linear-gradient(135deg, #b8a07e 0%, #8b6f47 100%);
}
        
.home-media-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.05);
  z-index: 2;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
        
.home-media-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
        
.home-media-card-left .home-media-card-bg {
  background-image: url('/static/core/images/media/news.jpg');
}
        
.home-media-card-right .home-media-card-bg {
  background-image: url('/static/core/images/media/downloads.jpg');
}
        
.home-media-card:hover .home-media-card-bg {
  opacity: 0.9;
  transform: scale(1.05);
}
        
.home-media-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--font-light);
  z-index: 2;
}
        
.home-media-card-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  opacity: 0.9;
}
        
.home-media-card-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}
        
.home-media-card-desc {
  font-size: 1.4rem;
  opacity: 0.9;
  line-height: 2.5rem;
  margin-bottom: 30px;
}
        
.home-media-card-btn {
  display: inline-block;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  backdrop-filter: blur(5px);
}
        
.home-media-card-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
        
.home-residents {
  padding: 100px 5%;
}
        
.home-residents-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 60px;
}
        
.home-residents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}
        
.home-resident-card {
  background: white;
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.home-resident-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);;
}
        
.home-resident-quote {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2.5rem;
  color: #b8a07e;
  opacity: 0.3;
}
        
.home-resident-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.2rem;
}
        
.home-resident-info {
  display: flex;
  align-items: center;
}
        
.home-resident-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #b8a07e;
}
        
.home-resident-details h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 5px;
}
        
.home-resident-details p {
  color: #777;
  font-size: 1.2rem;
}
        
.home-location {
  padding: 100px 5%;
  background-color: var(--secondary-clr);
  color: var(--font-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
        
.home-location-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--nav-drop-clr);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
        
.home-location-text {
  max-width: 800px;
  margin-bottom: 50px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
        
.home-location-map {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  background: var(--primary-clr);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
        
.home-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 141, 77, 0.7), rgba(0, 141, 77, 0.9));
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-light);
  font-size: 1.6rem;
  line-height: 2.5rem;
}
        
.home-map-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
        
.home-cta {
  padding: 100px 5%;
  text-align: center;
}
        
.home-cta-title {
  font-family: Accent;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-clr);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
        
.home-cta-text {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
        
.home-cta-btn {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-clr);
  color: var(--font-light);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(184, 160, 126, 0.3);
}
        
.home-cta-btn:hover {
  background: var(--nav-drop-clr);
  color: var(--font-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(184, 160, 126, 0.4);
}

/* responsiveness */
@media(max-width:1100px){

  .top-sec {
    background-image: url('/static/core/images/headers/header.jpeg');
  }

    .pros-cnt {
        flex-direction: column;
    }

    .product-cnt,
    .prod-card  {
        width: 100%;
    }

    .prod-card {
        height: 60rem;
    }

    .contact-main-cnt {
      flex-direction: column-reverse;
    }

    .contactInfo {
      width: 100%;
    }

    .contactForm {
      width: 100%;
    }

    .rw-100 {
      flex-direction: column;
    }

    .inputBx.rw-50 {
      width: 100%;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
      text-align: center;
      justify-content: center;
    }

}

@media (max-width: 1024px) {
  .document-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .doc-card {
    height: 250px;
  }
  .newsletter-grid {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .newsletter-item:nth-child(3n) {
      border-right: none;
  }
  
  .newsletter-grid .newsletter-item:nth-last-child(-n+3) {
      border-bottom: none;
  }
}

@media(max-width:991px){
    .nav-list {
      position: absolute;
      top: 100vh;
      height: calc(100vh - 6rem);
      flex-direction: column;
      width: 100%;
      background: linear-gradient(to left , var(--darker-glass-clr), #000);
      transition: 0.3s ease-in-out;
      overflow-y: scroll;
      overflow-x: hidden;
  }

  .nav-list > li {
      line-height: 6rem;
  }

  .nav-list > li a {
    color: var(--font-light)
  }

  .sub-menu {
      position: initial;
      margin-left: 1rem;
      border-top: none;
      border-left: 0.25rem solid var(--primary-clr);
      max-height: 0;
      width: 100%;
  }

  .sub-menu::before {
      display: none;
  }

  .nav-list li:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      max-height: initial;
  }

  .menu-icons  {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .nav-list.is_active {
      top: 6rem;
      left: 0;
  }

  footer {
      padding: 5rem 5%;
  }

  .footer-container {
      grid-template-columns: repeat(2, 1fr);
  }

  .copyright {
      padding: 2rem 5%;
  }

  .dir-cnt {
    width: 100%;
  }

  .about-download-card {
    width: 100%;
    min-height: 60rem;
  }

  .card {
    width: 100%;
  }
  
  .about-content {
      grid-template-columns: 1fr;
  }

  .mv-container, .values-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .hero {
    padding: 12rem 1rem;
  }

  .board-modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .board-modal-image {
    height: 300px;
  }

  .board-leadership-container {
    grid-template-columns: 1fr;
  }

  .history-images {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-content {
    max-width: 95%;
  }

  .terms-cont {
    width: 95%;
  }
         
  .home-media-container {
    height: 450px;
  }

  .home-media-card {
    width: 340px;
    height: 400px;
  }

}

@media (max-width: 770px) {
  .footer-container {
      grid-template-columns: repeat(1, 1fr);
  }

  .prod-card {
      height: 50rem;
  }

  .dir-cnt,
  .directors-cnt .dir-cnt:nth-child(even) {
    flex-direction: column;
  }

  .dir-img,
  .dir-content {
    width: 100%;
  }

  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-item:nth-child(2n) {
    border-right: none;
  }

  .newsletter-grid .newsletter-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .newsletter-details {
      gap: 5px;
  } 
            
  .logo-text {
      font-size: 3rem;
  }
    
    .page-header {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .phone-call-btn {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .content-wrapper {
        flex-direction: column;
    }
            
    .toc-sidebar {
        position: static;
    }
    
    .toc-content {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-button {
        width: 100%;
        max-width: 300px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-paragraph {
    padding: 30px 20px;
  }

  .error-code {
    font-size: 10rem;
  }

  .error-message {
    padding: 0 20px;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .redirect-btn {
    min-width: 250px;
  }

  .home-hero {
    height: 70vh;
  }

  .home-carousel-content {
    left: 5%;
    right: 5%;
    bottom: 20%;
  }

  .home-carousel-indicators {
    right: 20px;
    bottom: 20px;
  }

  .home-intro,
  .home-amenities,
  .home-media,
  .home-residents,
  .home-location,
  .home-cta {
    padding: 70px 5%;
  }

  .home-residents-grid,
  .home-amenities-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .home-media-container {
    flex-direction: column;
    height: auto;
    gap: 60px;
  }

  .home-media-card {
    position: relative;
    left: auto;
    right: auto;
    transform: none !important;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
  }

  .home-media-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
  }

}

@media (max-width: 500px){

    .prod-card {
        height: 32rem;
    }

    .amenity-head,
    .main-title,
    .light-title,
    .hero h1,
    .section-title h2,
    .home-intro-title,
    .home-amenities-title,
    .home-residents-title,
    .home-media-title,
    .home-location-title,
    .home-cta-title {
      font-size: 3.5rem;
    }

    .main-title,
    .title-subtext {
      width: 95%;
    }

    .top-sec {
      height: 20rem;
    }

    .history-grid {
      grid-template-columns: 1fr;
    }

  .document-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .doc-card {
      height: 260px;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-item {
    border-right: none !important;
  }

  .newsletter-grid .newsletter-item:last-child {
    border-bottom: none;
  }

  .newsletter-item::before {
    display: none;
  }

  .board-title h2 {
    font-size: 2rem;
  }

  .board-modal-header {
    padding: 20px;
  }

  .board-modal-body {
    padding: 20px;
  }

  .history-image-container {
    height: 22.5rem
  }
            
  .home-media-card {
    height: 350px;
  }

}