@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Lobster&display=swap');


@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500&family=Righteous&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');


@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

:root {
  --dark-background: #020608;
  --prime: rgb(59, 113, 202);
  --tert: #94bbf5;

  --admin-div-background: rgba(14, 14, 14, 0.7);

  --cursive: 'DM Sans', sans-serif;

  --text-head: rgb(205, 217, 232);
  --text-para: #b1acc5;

  --image-shadow: rgba(64, 64, 64, 0.353);

  --padding-top: 4rem;
  --br-vid:1rem;
  --f-bo: 'Black Ops One', cursive;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  padding: 0;
  margin: 0;
  z-index: 1;
  background: var(--dark-background);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--cursive);
  font-weight: 500;
  letter-spacing: 0.0625rem;
  color: var(--text-head);
}
.grid {
  display: grid;
}

.col-2x {
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 1rem;
}

a {
  text-decoration: none;
}

p {
  letter-spacing: 0.0625rem;
  color: var(--text-para);
}

.color {
  color:var(--prime) ;
  font-weight: 600;
}

.color-2 {
  color:#6b6b6b ;
  font-weight: 400;
}

section {
  margin: clamp(4rem,4vh,6rem) 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input.form-control,
textarea.form-control {
  border-radius: 0px;
  box-shadow: none;
  border: 1px solid rgba(36, 92, 138, 0.812);
}

.form-control,
.form-control:focus {
  background: rgba(2, 6, 8, 0.572);
  border: none;
  color: var(--text-head);
  box-shadow: none;
  border: 1px solid rgba(36, 92, 138, 0.812);
  backdrop-filter: blur(3px);
}

strong {
  color: var(--tert);
}
#adminnav {
  position: relative;
  background: var(--admin-div-background);
}
.navbar {
  width: 100%;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(.01rem);
  z-index: 99999;
}

.logo {
  font-family: var(--f-bo);
}

.navbar .container {
  padding-block:1em !important;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.navbar .navbar-brand {
  width: clamp(14rem,30vw,16rem);
  overflow: hidden;
  padding: 0;
}

.navbar.active {
  position: fixed;
  top: -100px;
  left: 0;
  -webkit-transition: transform .5s, -webkit-transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  background: hsla(0, 0%, 7%, 0.565);
  border-bottom: 1px solid rgba(67, 67, 67, 0.3);
}

@supports (backdrop-filter: blur(1px)) {
  .navbar.active {
    backdrop-filter: blur(1px);
  }
}



/* banner section */
#banner, #contact {
  padding: 0;
  margin: 0;
}
.grid{
  display: grid;
}
.banner-container {
  max-height: 20vh;
  position: relative;
  background: var(--dark-background);
}

.banner-content {
  position: absolute;
  /* bottom: 2.2rem; */
  bottom:50%;
  transform: translateY(50%);
  width: 100%;
  text-align: center;
}
.banner-head {
  font-size: 1.5rem;
  color: var(--text-head);
  font-family: var(--f-bo);
}
.banner-text {
  display: none;
  font-size: 1.2rem;
  color: var(--text-para);
  text-align: center;
}
.ban-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.slick-nav,.slick-dots {
  position: absolute;
}
.slick-dots {
  --height: 0.5rem;
  width: 100%;
  height: var(--height);
  flex-direction: row;
  justify-content: center;
  bottom: 0.5rem;
  align-items: center;
  
}
.slick-dots li {
  flex-shrink: 1;
}
.slick-dots li button{
  text-indent: -9999px;
  width: var(--height);
  aspect-ratio: 1;
  background: white;
  padding: 0;
  margin: 0;
  border: none;
  outline: 0;
  border-radius: 50%;
  opacity: 0.3;
  transition: background 0.3s ease-out, opacity 0.3s ease-out;
}
.slick-dots li.slick-active button {
  background: var(--tert);
  opacity: 1;
}
.slick-nav {
  margin-inline: 1rem;
  height: 4rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--tert);
  font-size: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.3s ease-out;
}
.slick-nav:hover {
  opacity: 1;
}
.prev-feedback {
  left: 0;
}
.next-feedback {
  right: 0;
  bottom: 0;
}
/* about section */


#about .about-text {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 min(4rem, 5vw);
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 5px rgba(41, 41, 41, 0.1);
  border: 1px solid rgba(67, 67, 67, 0.3);
  border-radius: 2.375em;
}


/* gallery section */

#services {
  background: transparent;
}

#services .owl-carousel .owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

#services .owl-carousel .item {
  will-change: transform;
  box-sizing: border-box;
  padding: clamp(1rem, 1vh, 2rem) 0.5rem;
  border-radius: 10px;
  transition: opacity 0.5s ease;
  filter: brightness(0.6);
}

#services .item img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: var(--image-shadow) 0px 4px 10px, var(--image-shadow) 0px -4px 16px;
}
/* Mwmber list styles */

#member .row div[class*="col-"] {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  padding: clamp(0rem, 0vh, 0rem) ;
  border-radius: 1rem;
  box-shadow:-1px -1px 4px rgba(64, 64, 64, 0.353);
  outline: var(--prime) solid 1px;
}

.read-toggle > p {
  margin-top: 1.5rem;
  padding-inline: 0.8rem;
}

.read-more, .read-less{
  color: var(--prime);
  cursor: pointer;
}

/* event options styles */


#events .row div[class*="col-"] .box-ev{
  width: 300px;
  padding: clamp(0rem, 0vh, 0rem) ;
  border-bottom:#020608 solid 3px;
  transition: 0.5s;
}

#events .row div[class*="col-"] .box-ev:hover{
  border-bottom:3px solid var(--prime);
}

#events .row div[class*="col-"] .box-ev img{
  width: 100%;
  display: block;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  box-shadow: var(--image-shadow) 0px 4px 10px, var(--image-shadow) 0px -4px 16px;
}


/* Contact US styles */


#gallery .container-fluid {
  position: relative;
  isolation: isolate;
}

.vid {

  --grad-angle: 0deg;
  aspect-ratio: 16/9;
  position: relative;
  display: block;
}

.vid::after {
  content: '';
  position: absolute;
  inset: -0.4rem -0.4rem 0;
  background-image: conic-gradient( from 0deg, #12b886, #4dabf7, #12b886);
  z-index: -1;
  animation: rotate 15s linear infinite;
  border-radius: var(--br-vid);
}

#video-gallery{
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--br-vid);
}

@keyframes rotate{
  0%{--grad-angle: 0deg}
  100%{--grad-angle: 360deg}
}


/* Contact US styles */

#contact .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: min(3rem, 3vh) 0;
  transition: all 500ms ease;
}

#contact .form-box {
  background: rgba(2, 6, 8, 0.644);
  backdrop-filter: blur(1px);
  padding: min(3rem, 3vh) min(3rem, 4vw);
}

#contact .form-box form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* footer styles */
footer {
  margin-top: auto;
  background: #06131a;
}
footer .logo{
  width: 100%;
  margin-bottom: 20px;
}


footer .container-fluid {
  z-index: -1;
  padding: min(2rem, 2vh) 0;
  border-top: 1px solid rgba(67, 67, 67, 0.3);
  border-bottom: 0.5px solid rgba(148, 187, 245, 0.111);
}

footer .container:last-child {
  padding: min(1rem, 1vh) 0;
  box-sizing: border-box;
}

footer .col-sm-12.col-lg-6.col-xl-4,
footer .col-sm-12.col-xl-4 {
  padding: 0 clamp(2rem, 2vw, 4rem);
}

footer .iconbox ul {
  flex-direction: row;
  align-items: center;
}

footer .iconbox li {
  width: 1.5rem;
}

footer .iconbox li a img {
  width: 100%;
  rotate: 0deg;
  transition: rotate 0.5s ease-in-out;
}

footer .iconbox li a:hover img {
  rotate: -360deg;
}

footer .form-check {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid rgba(148, 187, 245, 0.542);
}

footer .form-check input,
footer .form-check input:focus {
  border: none;
}

footer table tr,
footer table th,
footer table tr td {
  border: none;
  color: var(--text-para);
}

footer table th {
  text-transform: capitalize;
  color: var(--tert);
}

footer .info ul {
  flex-direction: row;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
}

footer .info ul li a {
  color: var(--text-head);
  transition: color 0.3s ease-out;
}


footer .info ul li a:hover {
  color: var(--tert);
}

.whatsapp {
  position: fixed;
  right: 2%;
  bottom: 10%;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 999999999999999999999999999999999999999999999999999999999999999;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s ease-in;
}

.whatsapp:hover{
  background: transparent;
}
.whatsapp svg{
  fill:white;
  width: 30px;
  transition: fill 0.5s ease-in;
}
#login_page {
  isolation: isolate;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  flex-grow: 1;
}
.h-100{
  display: flex;
  flex-grow: 1;
}
.hv-center {
  justify-content: center;
  align-items: center;
}
.background-image-admin {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
  mix-blend-mode: screen;
}
.login-container{
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  
}
.frame-box {
  padding: var(--padding-top) clamp(2rem,4vw,3rem);
  border-radius: calc(var(--padding-top)/2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  position: relative;
}
.frame-box::after {
  content: '';
  z-index: -1;
  position: absolute;
  inset: 0;
  background: var(--admin-div-background);
  mix-blend-mode: multiply;
  
}
.frame-box form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: start;
}
.in-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-para);
  letter-spacing: 1px;
}
.not-def > * {
  line-height: 1.9;
  letter-spacing: 1px;
}
.not-def thead{
  color: var(--text-head);
}
.not-def tbody {
  color: var(--text-para);
}
.not-def a {
  color: var(--tert);
}
#eye {
  position: absolute;
  right: 16px;
  top: 50%;

  transform: translateY(-50%);
}
.no-bd {
  border: none;
}
.embed-responsive {
  overflow: hidden;
  border-radius: var(--br-vid);
}

#insert {
  position: fixed;
  bottom: 1.5em;
  left: 1.5em;
  width: 3rem;
  font-size: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  display: flex;
  align-items: center;
  color: var(--text-head);
  justify-content: center;
  transition: transform 0.3s ease;
}
#insert:hover {
  transform: scale(1.2);
}
#insert-dialog {
  margin: auto auto;
  border: none;
  background: transparent;
}
#insert-dialog .content{
  padding: 4rem;
  border-radius: var(--br-vid);
  border: 1px solid var(--sec);
  color: var(--text-para);
  opacity: 0;
  background: var(--dark-background);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 2px 6px 0px;
  
}
.grid-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#insert-dialog .content::after {
  content: '';
  z-index: -1;
  background: url(../admin/images/background.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
#insert-dialog.active .content{
  
  animation: fadein 1s linear forwards;
}
#insert-dialog[closing]{
  animation: fadeout 1s linear forwards;
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  to {
    opacity: 0;
  }
}
.account-icon {
  padding-inline: 1rem;
  
}
.account-icon > a {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--text-head);
  text-align: center;
  color: var(--text-head);
  transition: all 0.3s ease-in-out;
}
.account-icon > a:hover {
  background: var(--text-head);
  color: var(--dark-background);
}