 :root{
  --theme:#000;
  --clr:#fff;
  --faq_clr:#0ff;
}


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

body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
  background-color:var(--theme);
  color:var(--clr);
}
 /* NavBar Code */
 .responsive-nav {
    display: flex;
    position: sticky;
    width: 100%;
    height: 60px;
    padding: auto 15%;
    top: 0;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #2a70e4,#7632a8);
    z-index: 2;
    color:var(--clr);
  }
  .responsive-nav p{
    margin-left: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .navbar-logo {
    height: 98%;
    width: 98%;
    max-height: 85px;
    max-width: 85px;
    margin-left: 50%;
    
  }
  
  .navbar-links {
    display: flex;
    flex-direction: row;
    width: auto;
    justify-content: space-around;
    position: relative;
    align-items: center;
    padding: 10px;  
  }
  .navbar-links li{
    list-style: none;
  }
  
  .navbar-links a:hover, a:active {
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    transition: color .75s linear;
  }
  
  .navbar-links a {
   color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 200ms linear;
    font-size: 1rem;
    font-weight: 600;
    margin: auto 16px;
  }
  
  .burger {
    display: none;
    margin-right: 4%;
  }
  
  .burger div {
    width: 42px;
    height: 5px;
    border-radius: 3px;
    background-color:var(--theme);
    background: var(--clr);
    margin: 8px;
    transition: all 0.3s ease;
  }
  .social{
    display: none;
  }
  @media screen and (max-width: 991px) {
    body {
      overflow-x: hidden;
    }
    
    .navbar-links {
      position: fixed;
      right: 0;
      top: 60px;
      min-width: 50vw;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: linear-gradient(to right, #2a70e4, #7632a8);
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
    }
    
    .burger {
      display: block;
    }
    
    .nav-active {
      transform: translateX(0%);
    }
    
    .navbar-links li {
      opacity: 0%;
    }
    .social{
      display: block;
      margin-top: 2rem;
      height: 60vh;
    }
  }
  
  
  
@keyframes navLinkFadeIn {
    from {
      opacity: 0%;
      transform: translateX(50px);
    }
    to {
      opacity: 100%;
      transform: translateX(0px);
    }
}
  
@keyframes navLinkFadeOut{
    from{
        opacity: 100%;
        transform: translateX(0px);
    }
    to{
        opacity: 0%;
        transform: translateX(50px);
    }
}
  
.toggle .line1 {
    transform: rotate(-45deg) translate(-6px, 11.75px);
}
  
.toggle .line2 {
    opacity: 0;
}
  
.toggle .line3 {
    transform: rotate(45deg) translate(-6px, -11.75px);
  
}

.bungee-tint-regular {
  font-family: "Bungee Tint", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.gradient-color {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 1.65em;
  margin: 10px auto;
  /* background: linear-gradient(to right, #7632a8, #2a70e4); */
    background: linear-gradient(to right, #7632a8, #19c06c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-button {
    background: linear-gradient(to right, #2a70e4, #7632a8);
    color: #fff;
}

.gradient-button:hover {
    background: linear-gradient(to right, #3d82f2, #8550ba);
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


 @property --ag{
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.btn-group .bg{
   --ag:0deg;
   padding: 0px;
   height: 3.2rem;
    width: 15.2rem;
    border-radius: 15px; 
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-group .bg{
 animation: r 1.5s linear infinite;
 background-image: conic-gradient(from var(--ag),transparent 5deg,cyan 120deg,transparent 90deg 180deg,orangered 300deg,transparent 270deg 360deg); 
}

 .btn-group .sd{
   height: 3.3rem;
    width: 15.3rem;
     display: flex;
    align-items: center;
    justify-content: center; 
    border-radius: 15px; 
     filter: blur(10px);
     opacity: 1; 
     position: fixed;
      z-index: 0;
      background-color: red;
} 

.btn-group .btng {
    height: 3rem;
    width: 15rem;
    font-size: 16px;
    font-family: Arial, sans-serif; 
    cursor: pointer;
    border-radius: 15px; 
    color: #fff;
    background: linear-gradient(to right, #11b483, #6107f1ec);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border:none;
    text-decoration: none;
}

@keyframes r{
   0%{--ag:0deg} 
  100%{--ag:360deg}
} 

.gradient-button2:hover {
    color: #fff;
    background: linear-gradient(to right, #2a70e4, #7632a8);
    border: 1px solid ;
}
.home-container {
    overflow: hidden;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.5s ease-in-out;
}

/* Section 1- Home */
#home {
    /* background: url('/Imgs/bg2.png'); */
    background-repeat: no-repeat;
    background-size:cover ;
   /* background-color: #fff;*/
   display: flex;
   flex-direction: column;
   justify-content:space-between;
   align-items: space-between;
  
}
.section{
padding: 0%;
}
.moving-link{
  display: block;
  color:greenyellow;
  font-size: 25px;
  margin: 0px;
  padding: 0px;
  height: auto;
}

.section .main-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.main-container .left-container {
    margin: 10px auto;
    padding: 25px;
    width: 40%;
}
.main-container .left-container h1{
    font-size: 4.2rem;
    color:#999;
    text-shadow: -1px -1px 1px white, -2px -2px 1px white, -3px -3px 1px white, -4px -4px 1px white, -5px -5px 1px white,-10px -10px 10px #999;
}
.main-container .left-container p{
    font-size: 2.25rem;
}

.main-container .right-container {
    background: url('/Imgs/bg2.png');
    width: 58%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: drop-shadow(0px 0px 30px rgba(0,200,255,0.8));
}
.main-container .right-container #icon-img {
    width: 25rem;
    height: 25rem;
    animation: moveUpDown 3.85s infinite ease-in-out;
    filter: drop-shadow(0px 0px 30px rgba(254, 176, 00, 0.5));
}

/* Animation for the image */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
@media screen and (max-width: 800px) {
    .section .main-container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .main-container .left-container {
        margin: 10px auto;
        padding: 15px;
        width: 100%;
    }
    .main-container .right-container {
        margin: 10px auto;
        padding: 15px;
        width: 100%;
    }
    .main-container .left-container h1{
        font-size: 3.2rem;
    }
    .main-container .left-container p{
        font-size: 1.5rem;
    }
    .main-container .right-container #icon-img {
        width: 21rem;
        height: 21rem;
        animation: moveUpDown 3.85s infinite ease-in-out;
    }
}
@media screen and (max-width: 420px) {
    .main-container .right-container #icon-img {
        width: 20rem;
        height: 20rem;
        animation: moveUpDown 3.85s infinite ease-in-out;
    }
    .main-container .left-container h1{
        font-size: 2.2rem;
    }
    .main-container .left-container p{
        font-size: 1.25rem;
    }
    .main-container .right-container {
        background: url('/Imgs/bg2.png');
        height: 45vh;
    }
}


/* Section 2- CountDown */
#count {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.flip-clock {
  text-align: center;
  perspective: 400px;
  margin: 20px auto;
}
.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  box-sizing: border-box;
}
.flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}
.flip-clock__slot {
  font-size: 3vw;
}
.card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 10vw;
  line-height: 0.95;
}
.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  transform-style: preserve-3d;
  width: 1.8em;
  transform: translateZ(0);
}
.card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}
.card__bottom::after {
  display: block;
  margin-top: -0.72em;
}
.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}
.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}
.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.flip .card__back::before {
  -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
          animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-origin: center bottom;
}
.flip .card__back .card__bottom {
  transform-origin: center top;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
          animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}
@-webkit-keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@keyframes flipTop {
  0% {
    transform: rotateX(0deg);
    z-index: 2;
  }
  0%,
  99% {
    opacity: 0.99;
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}
@-webkit-keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}
@keyframes flipBottom {
  0%,
  50% {
    z-index: -1;
    transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    transform: rotateX(0deg);
    z-index: 5;
  }
}

@media (max-width: 768px) {
  .flip-clock__slot {
    font-size: 5vw; 
  }

  .card {
    font-size: 12vw;
  }
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}

/* Section 3 - FAQ */
#faq {
  /*  background-color: #fff;*/
    margin-top: 20px;
    padding: 20px;
    /* top: 200vh; */
}
        
.container {
    max-width: 800px;
    margin: 0 auto;
}

.container h2 {
    color: greenyellow;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: var(--faq_clr);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item button::after {
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0d47a1;
}

.faq-item button.active::after {
    content: '\f068';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p{
    font-size: 16px;
    color: #ccc;
    margin: 10px 0 0 0;
}



.contact-container {
  margin: 50px auto;
/*  background: #ffffff;*/
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  animation: slideUp 1s ease-in-out;
}

.contact-container h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.contact-container p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.team-section {
  margin-bottom: 40px;
}

.team-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #007bff;
  text-transform: uppercase;
}

.team-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-5px);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 5px;
}

.contact-info p {
  font-size: 1em;
  color: #666;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px;
}

.contact-actions a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1em;
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.email-btn {
  background-color: #28a745;
}

.call-btn {
  background-color: #007bff;
}

.email-btn:hover {
  background-color: #218838;
}

.call-btn:hover {
  background-color: #0056b3;
}

.social-media-section {
  text-align: center;
  margin-top: 30px;
}

.social-media-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #007bff;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  display: inline-block;
  font-size: 2em;
  color: #007bff;
  transition: color 0.3s ease-in-out;
}

.social-icon:hover {
  color: #0056b3;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); }
  to { transform: translateY(0); }
}


/* About Page */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.timeline-item {
  background: #f4f4f4;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  width: calc(33% - 40px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.step {
  background: #f4f4f4;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  width: calc(20% - 40px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.statistics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat {
  background: #f4f4f4;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  width: calc(33% - 40px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#cta .btn {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

#cta .btn:hover {
  background: #555;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
/*  padding: 40px 20px;*/
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
}

footer .about-us {
  max-width: 800px;
  margin: 0 auto;
}

footer .about-us h3,h4 {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.75rem;
  margin-top: 20px;
}

footer .social-links a {
  font-size: 1.85rem;
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}

footer .social-links a:hover {
  color: #aaa;
}

footer .about-us p a{
  color: #fff;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

footer  .copyright {
  width: 100%;
  height:auto;
  font-size: 1.25rem;
  padding: 5px;
  background-color: #555;
  color:#aaa;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .timeline-item, .stat {
      width: calc(50% - 40px);
  }
  
  .step {
      width: calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .timeline-item, .step, .stat {
      width: calc(100% - 40px);
  }
  
  .hero h1 {
      font-size: 2rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
}


/* Registration Form */
.register-section {
  padding: 40px 0;
}

.register-section .container h2 {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 20px;
  color: #2a70e4;
  font-size: 2.85rem;
}

form {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.member {
  margin-bottom: 20px;
  position: relative;
}

.member h3 {
  color: #7632a8;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

select,input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.add-member-btn, .submit-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #2a70e4;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.add-member-btn:hover, .submit-btn:hover {
  background-color: #7632a8;
}

.delete-member-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #e81111;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 14px;
}

.delete-member-btn:hover {
  background-color: #d93636;
}


/* Popup Modal for Success message */
/* .popup {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.popup-content {
  position: relative;
  margin: 25% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-content h2, .link-buttons h2{
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.85rem;
  color: #2a70e4;
}

.popup-content p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #555;
}

.popup-btn {
  padding: 12px 20px;
  background-color: #2a70e4;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-btn:hover {
  background-color: #7632a8;
} */


/* Links Page */

.link-buttons {
  text-align: center;
}

.link-buttons h2 {
  font-size: 3.8rem;
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.gd-btn {
  padding: 10px 20px;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: linear-gradient(to right, #2a70e4, #7632a8);
  border-radius: 5px;
}

.gd-btn:hover {
  transform: scale(1.05);
}

.img-map img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .buttons {
      flex-direction: column;
  }

  .gd-btn {
      width: 80%;
      margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .gd-btn {
      width: 100%;
      font-size: 0.9rem;
  }
}


.reg-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:var(--theme);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(200, 0, 250, 0.2);
  border: 1px solid #0ff;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 2px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}
.popup-content h1{
    font-size: 1.29rem;
}

.registrationStatus {
  font-weight: 500;
}