 
html {
  font-size: 16px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 
  body{
    background-attachment: fixed;
    background-color: black;
    background-size: cover;
    
  } 
  
.container4 {
    height: auto;
    padding-bottom: 50px;
  }

@keyframes spin_4991 {
  10% {
    -webkit-transform: translateY(-102%);
    transform: translateY(-102%);
  }

  25% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  35% {
    -webkit-transform: translateY(-202%);
    transform: translateY(-202%);
  }

  50% {
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  60% {
    -webkit-transform: translateY(-302%);
    transform: translateY(-302%);
  }

  75% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
  }

  85% {
    -webkit-transform: translateY(-402%);
    transform: translateY(-402%);
  }

  100% {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}
 .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: black;
            background-size: cover;
            background-position: center;
            height: 110px;
            width: 100%;
            position: relative;
        }

        .logo {
            width: 150px;
            height: 160px;
            margin-top: 70px;
            margin-left: 20px;
            transition: all 0.3s ease;
        }

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

        .socials {
            display: inline-block;
            height: 50px;
            width: auto;
            border-radius: 1.25rem;
        }

        .socialsContainer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
            flex-direction: row;
        }  
        .socialsContainer2 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
            flex-direction: row;
        }
        
           .socialContainer {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition-duration: 0.3s;
         
        } 
         
        .socialsContainer1 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
            flex-direction: row;
        } 
        
           .socialContainer1 {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition-duration: 0.3s;
         
        } 

        /* instagram*/
        .containerOne {
            background: linear-gradient(to right, rgb(0, 0, 0), orange);
            transition-duration: 0.3s;
        }

        /* facebook*/
        .containerTwo {
            background: linear-gradient(to right, rgb(0, 0, 0), orange);
            transition-duration: 0.3s;
        }

        /* Whatsapp*/
        .containerFour {
            background: linear-gradient(to right, rgb(0, 0, 0), orange); 
            transition-duration: 0.3s;
        }

        .socialContainer:active {
            transform: scale(0.9);
            transition-duration: 0.3s;
        }
       .socialContainer1:active {
            transform: scale(0.9);
            transition-duration: 0.3s;
        }
        .socialSvg {
            width: 22px;
        }

        .socialSvg path {
            fill: rgb(255, 255, 255);
        }

        .socialContainer:hover .socialSvg {
            animation: slide-in-top 0.3s both;
        }
         .socialContainer1:hover .socialSvg {
            animation: slide-in-top 0.3s both;
        }
        @keyframes slide-in-top {
            0% {
                transform: translateY(-50px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }        
.header {
    position: relative;
    z-index: 100;
    overflow: visible !important;
}

.auth-buttons {
    position: relative !important;
    z-index: 101 !important;
}

#openLogin {
    position: relative !important;
    z-index: 102 !important;
    pointer-events: auto !important;
}


.sticky-background {
    z-index: 99 !important; 
}


.mobile-menu-btn {
    z-index: 103 !important;
}
 .mobile-menu-btn {
            display: none;
            cursor: pointer;
            z-index: 100;
            width: 40px;
            height: 40px;
            position: relative;
            background: rgba(0,0,0,0.3);
            border-radius: 5px;
            padding: 8px;
        }

        .hamburger {
            width: 24px;
            height: 3px;
            background: white;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s;
        }

        .hamburger:before,
        .hamburger:after {
            content: '';
            position: absolute;
            width: 24px;
            height: 3px;
            background: white;
            transition: all 0.3s;
        }

        .hamburger:before {
            top: -8px;
        }

        .hamburger:after {
            top: 8px;
        }

        .mobile-menu-btn.active .hamburger {
            background:transparent;
        }

        .mobile-menu-btn.active .hamburger:before {
            top: 0;
            transform: rotate(45deg);
        }

        .mobile-menu-btn.active .hamburger:after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background:black;
            z-index: 1099;
            transition: all 0.3s ease;
            padding-top: 100px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 20px;
        }

        .mobile-menu li {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu li:last-child {
            border-bottom: none;
        }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 12px 10px;
            transition: all 0.3s;
            border-radius: 5px;
        }

        .mobile-menu a:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-portal {
            margin-top: 30px;
        }

        .mobile-portal a {
            background: linear-gradient(0deg, #e42007, #e03004);
            text-align: center;
            font-weight: bold;
        }
        .menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10001;
}

.menu-close-btn::before,
.menu-close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: white;
}

.menu-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
        /* Parental Portal Button */
        .auth-buttons {
            display: block;
        } 
        
.button {
    --h-button: 48px;
    --w-button: 102px;
    --round: 0.75rem;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: larger;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient(
        65.28% 65.28% at 50% 100%,
        rgba(241, 131, 5, 0.897) 0%,
        rgba(119, 78, 2, 0) 100%
      ),
      linear-gradient(0deg, #e49707a8, #b48503);
    border-radius: var(--round);
    border: none;
    outline: none;
    padding: 12px 18px; 
    margin-bottom: 50px;
    margin-right: 15px;
  }
  .button::before,
  .button::after {
    content: "";
    position: absolute;
    inset: var(--space);
    transition: all 0.5s ease-in-out;
    border-radius: calc(var(--round) - var(--space));
    z-index: 0;
  }
  .button::before {
    --space: 1px;
    background: linear-gradient(
      177.95deg,
      rgb(236, 201, 5) 0%,
      rgba(247, 211, 6, 0) 100%
    );
  }
  .button::after {
    --space: 2px;
    background: radial-gradient(
        65.28% 65.28% at 50% 100%,
        rgba(197, 162, 4, 0.8) 0%,
        rgba(240, 22, 7, 0) 100%
      ),
      linear-gradient(0deg, #f7be03, #f3e305);
  }
  .button:active {
    transform: scale(0.95);
  }
  
  

        .fold {
            z-index: 1;
            position: absolute;
            top: 0;
            right: 0;
            height: 1rem;
            width: 1rem;
            display: inline-block;
            transition: all 0.5s ease-in-out;
            background: radial-gradient(
                100% 75% at 55%,
                rgba(50, 4, 82, 0.8) 0%,
                rgba(58, 2, 75, 0) 100%
            );
            box-shadow: 0 0 3px black;
            border-bottom-left-radius: 0.5rem;
            border-top-right-radius: var(--round);
        }

        .fold::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 150%;
            height: 150%;
            transform: rotate(45deg) translateX(0%) translateY(-18px);
            background-color: #e8e8e8;
            pointer-events: none;
        }

        .button:hover .fold {
            margin-top: -1rem;
            margin-right: -1rem;
        }

        .points_wrapper {
            overflow: hidden;
            width: 100%;
            height: 100%;
            pointer-events: none;
            position: absolute;
            z-index: 1;
        }

        .points_wrapper .point {
            bottom: -10px;
            position: absolute;
            animation: floating-points infinite ease-in-out;
            pointer-events: none;
            width: 2px;
            height: 2px;
            background-color: #fff;
            border-radius: 9999px;
        }

        @keyframes floating-points {
            0% {
                transform: translateY(0);
            }
            85% {
                opacity: 0;
            }
            100% {
                transform: translateY(-55px);
                opacity: 0;
            }
        }

        .points_wrapper .point:nth-child(1) {
            left: 10%;
            opacity: 1;
            animation-duration: 2.35s;
            animation-delay: 0.2s;
        }

        .points_wrapper .point:nth-child(2) {
            left: 30%;
            opacity: 0.7;
            animation-duration: 2.5s;
            animation-delay: 0.5s;
        }

        .points_wrapper .point:nth-child(3) {
            left: 25%;
            opacity: 0.8;
            animation-duration: 2.2s;
            animation-delay: 0.1s;
        }

        .points_wrapper .point:nth-child(4) {
            left: 44%;
            opacity: 0.6;
            animation-duration: 2.05s;
        }

        .points_wrapper .point:nth-child(5) {
            left: 50%;
            opacity: 1;
            animation-duration: 1.9s;
        }

        .points_wrapper .point:nth-child(6) {
            left: 75%;
            opacity: 0.5;
            animation-duration: 1.5s;
            animation-delay: 1.5s;
        }

        .points_wrapper .point:nth-child(7) {
            left: 88%;
            opacity: 0.9;
            animation-duration: 2.2s;
            animation-delay: 0.2s;
        }

        .points_wrapper .point:nth-child(8) {
            left: 58%;
            opacity: 0.8;
            animation-duration: 2.25s;
            animation-delay: 0.2s;
        }

        .points_wrapper .point:nth-child(9) {
            left: 98%;
            opacity: 0.6;
            animation-duration: 2.6s;
            animation-delay: 0.1s;
        }

        .points_wrapper .point:nth-child(10) {
            left: 65%;
            opacity: 1;
            animation-duration: 2.5s;
            animation-delay: 0.2s;
        }

        .inner {
            z-index: 2;
            gap: 6px;
            position: relative;
            width: 100%;
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.5;
            transition: color 0.2s ease-in-out;
        }

        .inner svg.icon {
            width: 18px;
            height: 18px;
            transition: fill 0.1s linear;
        }

        .button:focus svg.icon {
            fill: white;
        }

        .button:hover svg.icon {
            fill: transparent;
            animation:
                dasharray 1s linear forwards,
                filled 0.1s linear forwards 0.95s;
        }

        @keyframes dasharray {
            from {
                stroke-dasharray: 0 0 0 0;
            }
            to {
                stroke-dasharray: 68 68 0 0;
            }
        }

        @keyframes filled {
            to {
                fill: white;
            }
        }

        .main-line {
          width: 100%;
          height: 3px;
          background: linear-gradient(to right, rgb(226, 193, 100), orange);
        }
        @media (max-width: 1024px) {
             .logo {
                width: 150px;
                height: 150px;
                margin-top: 70px;
            } 
            .socials {
               display: none !important;
               }
           

        }

       @media (max-width: 768px) {
            .header {
                justify-content: space-between;
                height: 200px;
                padding: 10px 15px;
            }

            .logo { 
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 160px;
                height: 160px;
                margin-top: 50px;
                margin-left: 0;
            }

          .socials {
               display: none !important;
               }
            .socialContainer {
               display: none  !important ;
               }
            
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        @media (max-width: 748px) { 
           .header {
          height: 300px; 
          padding-top: 10px; 
          align-items: flex-start; 
             }
            .logo {
                width: 170px  !important;
                height: 170px  !important ; 
                margin-top: 100px !important;
            }
             
 
 
           .socials {
               display: none !important;
               }
            .socialContainer {
               display: none  !important ;
               }

            .mobile-menu {
                width: 85%;
            }
        }  
       
        @media (width: 820px) {
            .logo {
                width: 100px;
                height: 100px;
                margin-top: 20px;
            } 
            .socials {
               display: inline-block !important; 
             
               } 
                .header{
                 height: 150px;
                
              }
           

        } 
        @media (width: 912px) {
            .logo {
                width: 100px;
                height: 100px;
                margin-top: 20px;
            } 
            .socials {
               display: inline-block !important;
               } 
                 .header{
                 height: 150px;
                
              }
           
           

        }
  
.desktop-nav {
  display: none; 
  background: black;
  padding: 15px 0;
}

.desktop-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 19px;
  transition: all 0.3s;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.desktop-nav a:hover {
  background:linear-gradient(to right, rgb(0, 0, 0), orange);
}
@media (min-width: 769px) {
  .desktop-nav {
    display: block;
  }
}

/* Ensuring  mobile menu stays hidden on desktop */
@media (min-width: 769px) {
  .mobile-menu-btn,
  .mobile-menu ,.socials1 ,.socialContainer1,.socialsContainer1{
    display: none !important;
  }
} 

/* Sticky background element */
.sticky-background {
    position: fixed;
    top: 0 ;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: black; 
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
}

.sticky-background.active {
    top: 0;
    opacity: 1;
}
.mobile-menu-btn.sticky {
    position: fixed;
    top: 5px;
    left: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}
.socials.sticky {
    position: fixed;
    top:15px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
} 
.socials1.sticky {
    position: fixed;
    top:15px;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease; 
}
 
.header {
    transition: padding-top 0.3s ease;
}
@media (max-width: 768px) {
    .sticky-background {
        height: 70px;
    }
    
    .mobile-menu-btn.sticky {
        top: 20px;
        left: 15px;
    }
    
    .socials.sticky {
       
        display: none;
    }
} 
 .user-greeting {
  width: auto;
 justify-content: center;
 margin-bottom: 25px;
}
.profile-icon {
  width: 37px;
  height: 37px;
  fill:  rgb(223, 190, 6);
  transition: transform 0.2s ease;
}
.profile-icon:hover {
  transform: scale(1.1);
  fill: #fdfdfd;
}
.auth-container {
justify-self: center;
margin-top: 150px;
 
  
}
.auth-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s;
  position: relative;
 
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid  #705d08;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-group input:focus {
  border-color: #ffd106;
  outline: none;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, rgb(0, 0, 0), orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}
.ask {
margin: 10px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}
.user-greeting {
  display: none;
  align-items: center;
  gap: 5px;
}
#welcomeMessage {
  font-weight: 800;
  color: #cac7c7;

}
.logout-btn {
  padding: 8px 15px;
  background: linear-gradient(to right, rgb(0, 0, 0), orange);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s; 
  display: none;
}


.logout-btn:hover {
  background: #ff6b81;
}
.or-divider {
  margin: 15px 0;
  color: #888;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #ddd;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}
.content__or-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  column-gap: 18px;
  margin-top: 18px;
}

.content__or-text span:nth-child(3),
.content__or-text span:nth-child(1) {
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgb(219, 219, 219);
}

.form-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 8px; 
  display: none;
}
.wrapper {
  width: 200px;
  height: 100px;
  position: relative;
  background-color: rgba(0,0,0,0.9);
 
}
.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: white;
  left: 15%;
  transform-origin: 50%;
  animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.circle:nth-child(2) {
  left: 45%;
  animation-delay: .2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(226, 223, 223, 0.9);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: .7;
  }

  100% {
    transform: scaleX(.2);
    opacity: .4;
  }
} 


.shadow:nth-child(4) {
  left: 45%;
  animation-delay: .2s
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: .3s;
}
.error-container {
  color: red;
  margin-top: 10px;
  font-size: 14px;
  padding: 5px;
}
.password-requirements {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}
.invalid {
  border-color: red !important;
}
  .nav-menu { 
    margin-top: 75px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #f7be03;
}  
.all {

  display: flex; 
  flex-direction: column;
  height: inherit; 
}
.auth-buttons{
height:70px; 
margin-top: 5px; 
}
.card {
 display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  gap: 17px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
  flex-direction: row; 
   margin-left: 80px;
 
}
.socialContainer2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}
/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* faceBook*/
.containerTwo:hover {
  background-color: #1877f2; 
  transition-duration: 0.3s;
}

/* Whatsapp*/
.containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

.socialContainer2:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 22px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer2:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.inner i {
  margin-right: 8px;
}
.header-line {
 width: 100%;
 height: 6px;
 background: linear-gradient(to right, white, orange);

  } 

/* Gallery  Section ------------------------------------------------------------------------------------ */
        .kenburns-bottom-left {
            animation: kenburns-bottom-left 5s ease-out both;
        }

        @keyframes kenburns-bottom-left {
            0% {
                transform: scale(1) translate(0, 0);
                transform-origin: 16% 84%;
            }
            100% {
                transform: scale(1.25) translate(-20px, 15px);
                transform-origin: left bottom;
            }
        }

.gallery {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.slideshow-container {
  width: 100%;
  height: 79vh;
  max-height: 850px;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  object-position: 30% 30%;
}
 
.content {
  position: absolute;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 90%;
  z-index: 110; 
}


.enroll-button-container {
  position: relative;
  z-index: 500;
  margin-top: 20px;
}

.enroll-button {
  display: inline-block;
  padding: 12px 24px;
  background: orange;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  position: relative;
  z-index: 501;
  pointer-events: auto;
  border: none;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 20px);
}

.enroll-button:hover {
  background: #e69500;
  transform: scale(1.05);
}

.enroll-button::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: 502;
}
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 120; 
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .slideshow-container {
    height: 60vh;
    min-height: 300px;
  }
  
  .content {
    padding: 15px;
  }
  
  .enroll-button {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    height: 40vh;
    min-height: 250px;
    z-index: 80;
  }
  
  .content {
    padding: 10px;
  }
  
  .dots-container {
    bottom: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .enroll-button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* statement -------------------------------------------------------------------------------------------------- */
.title-container {
    text-align: center;
     margin-top: 50px;
   
}

.sun-leopards-title { 
  background: linear-gradient(to right, rgb(248, 247, 247), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
    font-size: 4.7rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    display: inline-block;
    opacity: 0; /* Start hidden */
    transform: translateZ(-700px) translateY(500px);
    letter-spacing: -0.5em;
    transition: none; /* i want animation to trigger only once */
}
.sun-leopards-title.animate {
    animation: tracking-in-expand-fwd-bottom 1.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}
@keyframes tracking-in-expand-fwd-bottom {
    0% {
        letter-spacing: -0.5em;
        transform: translateZ(-700px) translateY(500px);
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        transform: translateZ(0) translateY(0);
        opacity: 1;
        letter-spacing: normal;
    }
}
.container4 {
  width: 100%;
  min-height: 100vh; 
  height: auto;
  background-color: black;
  padding: 20px 0;
}
.container3 {
  display: block;
  width: 90%; 
  max-width: 1200px; 
  height: auto; 
  min-height: 85vh;
  background-color: rgb(255, 255, 255);
  margin: 100px auto; 
  padding: 30px 15px; 
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Title ------------------------------------------------------------------------------------------ */
.section-title {
  color: rgb(15, 15, 15);
  text-align: center;
  font-size: clamp(24px, 3vw, 28px);
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
}
.insidelogo {
  margin-top: 5px;
  width: 80px; 
  height: 80px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; 
  margin-top: 20px;
  padding: 0 10px; 
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 15px;
  width: 100%; 
  max-width: 300px; 
  color: rgb(7, 7, 7);
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto; 
}

.glass-card:hover {
  transform: translateY(-10px);
}

/* Headings */
.glass-card h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 2vw, 22px); 
  color: #fcbf1e;
}

/* Paragraphs */
.glass-card p {
  font-size: clamp(14px, 1.6vw, 16px); 
  line-height: 1.5;
}

/* Animation (unchanged) */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-up.visible {
  animation: slideUp 0.7s ease forwards;
}

/* Media Queries */
@media (max-width: 1024px) {
  .container3 {
    width: 95%;
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .container3 {
    width: 98%;
    margin-top: 60px;
    padding: 20px 10px;
  }
  
  .card-grid {
    gap: 15px;
  }
  
  .glass-card {
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 480px) { 
  .sun-leopards-title{
  font-size: 40px; 
  margin-bottom: 50px;
  }
  .container4 {
    padding: 10px 0;
   
  }
  
  .container3 {
    margin-top: 40px;
    border-radius: 15px;
    width: 80%;

  }
  
  .section-title {
    margin-bottom: 20px;
  }
  
  .insidelogo {
    width: 70px;
    height: 70px;
  }
  
  .glass-card {
    padding: 12px;
  }
}
@media (max-width: 360px) {
  .section-title h2 {
    font-size: 22px;
  }
  
  .glass-card h3 {
    font-size: 18px;
  }
  
  .glass-card p {
    font-size: 14px;
  }
} 
.parallax-section {
  background-image: url('images/image6.jpg');
  background-attachment: scroll; 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh; 
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.parallax-section2 {
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh; 
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.fixture-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 1200px;
  min-height: 80vh;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  margin-top: 30%;
  margin-bottom: 20%;
  padding: 20px;
} 
.fixture-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 1200px;
  min-height: 80vh;
  height: auto;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  margin-top: 30%;
  margin-bottom: 20%;
  padding: 20px;
}
.fixture-container h1 {
  font-size: clamp(32px, 5vw, 48px); 
  background: linear-gradient(to right, rgb(8, 8, 8), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
  margin-bottom: 10px;
} 
.fixture-container2 h1 {
  font-size: clamp(32px, 5vw, 48px); 
  background: linear-gradient(to right, rgb(255, 255, 255), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
  margin-bottom: 70px;
}

.teams {
  display: flex;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: center;
  gap: 20px; 
  margin: 20px 0;
  width: 100%;
}
.team-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.team-name {
  font-size: clamp(18px, 3vw, 25px); 
  font-weight: 600;
  background: linear-gradient(to right, rgb(0, 0, 0), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
}
.team {
  width: clamp(120px, 30vw, 200px); 
  height: clamp(120px, 30vw, 200px);
  border-radius: 50%;
  border: none;
  overflow: hidden;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-logo {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.vs {
  font-size: clamp(24px, 4vw, 32px); 
  font-weight: bold;
  background: linear-gradient(to right, rgb(7, 7, 7), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
}
.fixture-time {
  font-size: clamp(24px, 4vw, 32px); 
  color: black;
  font-weight: 600;
}
.cta {
  display: flex;
  padding: clamp(8px, 2vw, 11px) clamp(16px, 3vw, 33px); 
  text-decoration: none;
  font-size: clamp(18px, 3vw, 25px); 
  color: white;
  background: linear-gradient(to right, rgb(8, 8, 8), rgb(88, 70, 37));
  transition: 1s;
  box-shadow: 4px 4px 0 black;
  transform: skewX(-15deg);
  margin: 20px 0;
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 100%;
} 
.cta2 {
  display: flex;
  padding: clamp(8px, 2vw, 11px) clamp(16px, 3vw, 33px); 
  text-decoration: none;
  font-size: clamp(15px, 1vw, 15px); 
  color: white;
  margin: 20px 0;
  border: none;
  width: auto;
  max-width: 100%;
} 

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll; 
    height: auto;
  }
  .parallax-section2 {
    background-attachment: scroll; 
    height: auto;
  }
  .fixture-container {
    width: 95%;
    min-height: 70vh;
    margin: 20px 0;
  }
  .teams {
    flex-direction: column;
    gap: 30px;
  }
  .vs {
    margin: 10px 0;
  }
  .cta {
    padding: 10px 20px;
  }
  .cta:hover .second {
    margin-right: 30px; 
  }
}
@media (max-width: 480px) {
  .team {
    width: 120px;
    height: 120px;
  }
  .cta {
    box-shadow: 3px 3px 0 black;
  }
  .second {
    width: 15px;
    margin-left: 20px;
  }
}
@media (max-width: 360px) {
  .fixture-container {
    padding: 15px;
  }
  .team {
    width: 100px;
    height: 100px;
  }
  .cta {
    padding: 8px 16px;
    font-size: 16px;
  }
} 
.news-section {
  padding: 50px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: white;
}
.news-heading {
  font-size: 36px;
  margin-bottom: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  justify-content: center;
}
.news-card {
  
  backdrop-filter: blur(8px);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  max-height: auto;
  position: relative;
}

.news-card.expanded {
  max-height: none;
} 
.news-card.expanded .news-body {
  max-height: none;
  -webkit-line-clamp: unset;
  line-clamp: unset; 
  overflow: visible;
}
.images{
 width: auto;
 height: 300px;

}
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.news-title {
  font-size: 20px;
  margin: 15px 0 10px;
  font-weight: bold;
}
.news-body {  
  width: auto; 
  font-weight: lighter;
  font-size: 15px;
  color: white;
  max-height: 4.2em;               
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;           
  line-clamp: 3; 
  -webkit-box-orient: vertical;
  box-orient: vertical;
  transition: max-height 0.3s ease;
}

.read-more-btn {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background-color: rgb(255, 4, 4);
  color: #fff;
  cursor: pointer;
  
}
.news-date {
  margin-top: 20px;
  font-size: 12px;
  color: #a7a2a2; 
} 
.header-line1 {
width: 100%;
height: 3px;
background: linear-gradient(to right, rgb(0, 0, 0), orange);
margin-top: 50px;
} 
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-top: 100px;
}
.testimonial-title { 
  font-size: 32px;
  color: #6e6e6d;
}
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  height: 500px;
}
.testimonial-card {
  position: absolute;
  top: 60px;
  left: 100%;
  width: 100%;
  padding: 25px;
  opacity: 0;
  transition: all 2.0s ease; 
   height: 10px;
}
.testimonial-card.active {
  left: 0;
  opacity: 1;
}
.testimonial-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}
.testimonial-author {
  font-size: 15px;
  color: #888;
  font-weight: bold;
} 
.rating {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 18px;
  color: gold;
}
.quotes {
  width: 48px;
  height: 48px; 
} 
.container5{
  width: 100%;
  height:5px;
  background-color: rgb(41, 40, 40); 

}  
 /* heart  of all ---------------------------------------------------------------------------------- */   
.about {
    position: relative;
    color: #2e2e2f;
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 850px;
} 

.about-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.info {
    font-family: Montserrat, sans-serif;
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 250px;
    background: #fffdfd;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0 #000000;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 30px;
}
.info-heading {
    font-family: Montserrat, sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 900;
    width: 100%;
    height: auto;
    min-height: 32px;
    background: #ff0303;
    padding: 10px 12px;
    color: #000000;
    border-bottom: 3px solid #000000;
}
.info-content {
    padding: 15px;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    line-height: 1.5;
}
.info:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0 #000000;
}
/* registration ------------------------------------------------------------------------------- */
.learning-info {
    --white: hsl(0, 0%, 0%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(0, 0%, 1%);
    --primary: hsl(44, 95%, 49%);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.learning-info .card_title__container .card_title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
    text-align: center;
    margin: 0.5rem 0;
}
.learning-info .line {
    width: 100%;
    height: 1px;
    background-color: var(--line);
    border: none;
    margin: 0.5rem 0;
}

.learning-info .card__list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 0.5rem;
}

.learning-info .card__list .card__list_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.learning-info .card__list .card__list_item .check {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.learning-info .card__list .card__list_item .check .check_svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: var(--black);
}

.learning-info .card__list .card__list_item .list_text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--white);
    line-height: 1.4;
}
.apply {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 1.5rem auto;
    padding: 0.8rem 1.5rem;
    background-color: black;
    color: orange;
    border: none;
    border-radius: 5px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.apply a {
    color: inherit;
    text-decoration: none;
}
.download-section {
    text-align: center;
    margin: 1.5rem 0;
    padding: 0 1rem;
}
.download-section h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.download-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(to right, rgb(7, 7, 7), orange);
      
    color: #FFD700;
    border: 2px solid #FFD700;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} 
       .download-btn:hover {
            background-color: #FFD700;
            color: #000;
        }
        
        .download-section {
            background-color: #000000;
            padding: 25px;
            border-radius: 8px;
            margin: 20px 0;
            margin-top: 80px;
          
       
        }
       
@media (min-width: 768px) {
    .learning-info {
        padding: 2rem;
        gap: 2rem;
    }
    
    .learning-info .card__list {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .learning-info .card__list .card__list_item {
        gap: 1.5rem;
    }
    
    .learning-info .card__list .card__list_item .check {
        width: 1.8rem;
        height: 1.8rem;
        margin-top: 0.3rem;
    }
}

@media (min-width: 1024px) {
    .learning-info {
        padding: 2.5rem;
    }
    
    .learning-info .card__list {
        gap: 1.8rem;
    }
}
@media (min-width: 768px) {
    .heart-main {
        padding: 40px;
    }
    
    .about {
        padding: 4rem;
    }
    
    
    .info {
        margin-top: 50px;
    }
    
    .learning-info {
        margin: 0 auto;
    } 
    .category-btn {
            padding: 0.5rem 1.2rem;
           
            border-radius: 30px;
            cursor: pointer;
            font-weight: 10;
           
        }
}

@media (min-width: 1024px) {
    .about {
        padding: 5rem;
    }
    
    .btn-shine {
        left: 50%;
        transform: translateX(-50%);
        display: inline-block;
    }
    
    .about-info {
        gap: 50px;
    }
}
/* contact page  ---------------------------------------------------------------------------------- */  
.all-main {
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 30px auto;
    display: block;
    align-items: center;
    justify-content: center;
}
.heart {
    width: 100%;
    height: auto;
    background: linear-gradient(to right, rgb(7, 7, 7), orange);
    border-radius: 10px;
    transition: all 0.3s;
}
.heart-con {
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 5px;
    transition: all 0.2s;
}

.heart-con:hover {
    transform: scale(0.98);
    border-radius: 5px;
}

.heart-main {
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}
.btn-shine {
    position: relative;
    left: auto;
    transform: none;
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(to right, #050505 0,orange 15%, #202020 20%);
    background-position: 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
    font-weight: 950;
    font-size: clamp(18px, 3vw, 25px);
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin: 0 auto;
    display: block;
}

@keyframes shine {
    0% { background-position: 0; }
    60% { background-position: 180px; }
    100% { background-position: 180px; }
}

/* About Section --------------------------------------------------------------------------------*/
.about {
    position: relative;
    color: #2e2e2f;
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 850px;
}

.about p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.5;
    text-align: center;
    margin: 15px 0;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 550px;
    background: linear-gradient(to right, rgb(7, 7, 7), orange);
    padding: 15px;
    border-radius: 10px;
    margin: 30px auto;
}

.contact-main label {
    position: relative;
}

.contact-main label .input {
    width: 100%;
    padding: 10px;
    padding-top: 15px;
    outline: 0;
    border: 2px solid black;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
}

.contact-main label .input + span {
    position: absolute;
    left: 10px;
    top: 12px;
    color: black;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.contact-main label .input:placeholder-shown + span {
    top: 12px;
    font-size: 0.9em;
}

.contact-main label .input:focus + span,
.contact-main label .input:valid + span {
    top: 5px;
    font-size: 0.7em;
    font-weight: 600;
}

.contact-main label .input:valid + span {
    color: green;
}

.contact-main label .input01 + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: black;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.contact-main label .input01:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
}

.contact-main label .input01:focus + span,
.contact-main label .input01:valid + span {
    top: 5px;
    font-size: 0.7em;
    font-weight: 600;
}

.contact-main label .input01:valid + span {
    color: green;
}

.contact-message {
    color: orange;
    font-size: 14px;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.input01 {
    width: 100%;
    padding: 10px;
    padding-top: 15px;
    outline: 0;
    border: 2px solid black;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
    resize: vertical;
    min-height: 80px;
}


.contact-fancy {
    background-color: white;
    border: 2px solid #000000;
    border-radius: 0px;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-weight: 390;
    letter-spacing: 2px;
    margin: 10px 0 0;
    outline: none;
    overflow: visible;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: clamp(12px, 2vw, 14px);
    width: 100%;
    max-width: 180px;
    align-self: center;
}

.contact-fancy::before {
    content: " ";
    width: 1.5rem;
    height: 2px;
    background: #000000;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%) translateX(230%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.contact-fancy .text {
    font-size: 1em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: lowercase;
    text-decoration: none;
    color:black;
    transform: translateX(30%);
}

.contact-fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #000000;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.contact-fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #000000;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.contact-fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #000000;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.contact-fancy:hover {
    color: #020202;
    background: #000000;
}

.contact-fancy:hover::before {
    width: 1.5rem;
    background: #000000;
}

.contact-fancy:hover .text {
    color: white;
    padding-left: 1.5em;
}

.contact-fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.contact-fancy:hover .bottom-key-1,
.contact-fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}
.card-grid1 {
    display: flex; 
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;  
    margin: 30px 0;
    padding: 0 15px;
}
.glass-card1 {
    background: black;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    color: rgb(7, 7, 7);
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.glass-card1:hover {
    transform: translateY(-5px);
}
.contact-platforms {
    --bg:linear-gradient(to right, rgb(212, 158, 8), black);
    --hover-bg: #0c0c0c;
    --hover-text:orange;
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 200px;
    text-align: center;
    background: var(--bg);
    padding: 1.5em;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), transform 0.15s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    color: black;
    margin-top: 10px;
}

.platforms-body {
    color: #0c0c0c;
    line-height: 1.5em;
    font-size: 0.9em;
}

.contact-platforms > :not(span) {
    transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

.contact-platforms > strong {
    display: block;
    font-size: 1.2rem;
    letter-spacing: -0.035em;
}

.contact-platforms span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hover-text);
    border-radius: 5px;
    font-weight: bold;
    top: 100%;
    transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

.contact-platforms:hover span {
    top: 0;
    font-size: 1em;
}

.contact-platforms:hover {
    background: var(--hover-bg);
}

.contact-platforms:hover > div,
.contact-platforms:hover > strong {
    opacity: 0;
}

.contact-platforms .icon svg {
    width: 50px;
    height: 50px;
}
@media (min-width: 768px) {
    .all-main {
        margin: 50px auto;
    }
    
    .heart-main {
        padding: 20px;
        gap: 40px;
    }
    
    .about {
        padding: 2rem;
    }
    
    .contact-main {
        padding: 20px;
        margin: 50px auto 100px;
    }
    
    .card-grid1 {
        flex-direction: row;
        gap: 40px;
        margin: 50px 0;
    }
    
    .glass-card1 {
        max-width: 300px;
    }
}

@media (min-width: 1024px) {
    .glass-card1 {
        max-width: 350px;
    }
    
    .card-grid1 {
        gap: 60px;
    }
}
.gallery-hero {
            height: 15vh;
            margin-top: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 1rem; 
           
            
        }
        
        .gallery-hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            background: linear-gradient(to right, rgb(255, 255, 255), orange);
            background-clip: text;
           -webkit-background-clip: text;
           color: transparent;
           -webkit-text-fill-color: transparent;
           mask-image: linear-gradient(to right, black 100%, transparent 100%);
           -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
} 
.logout-btn

/* profile  page  ---------------------------------------------------------------------------------- */  
.office-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
  margin: 20px auto;
  padding: 0 20px;
  max-width: 1400px;
}
.staffs {
  width: 100%;
  max-width: 350px;
  height: auto;
  min-height: 400px;
  border-radius: 10px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
.staff-member {
  width: calc(100% - 20px);
  height: auto;
  min-height: 380px;
  border-radius: 5px;
  transition: all 0.2s;
  text-align: center;
  padding: 15px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff-member:hover {
  transform: scale(0.98);
  border-radius: 5px;
}
.staff-member img {
  width: 100%;
  height: 550px;
  max-height: 550px;
  object-fit: contain;
  border-radius: 5px;
}
.staff-member h3 {
  margin: 15px 0 8px;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: bold;
  font-size: 1.5rem;
  background: linear-gradient(to right, rgb(218, 160, 37), rgb(235, 232, 232));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .staffs {
    max-width: 300px;
    min-height: 380px;
  }
  .staff-member {
    min-height: 360px;
  }
  
  .staff-member img {
    height:450px;
  }
}

@media (max-width: 480px) {
  .staff-heading p {
    margin: 30px 0;
    font-size: clamp(1.5rem, 7vw, 1.8rem);
  }
  
  .staffs {
    max-width: 100%;
    min-height: auto;
  }
  
  .staff-member {
    min-height: auto;
    padding: 10px;
  }
  
  .staff-member img {
    height:450px;
  }
  
  .office-container {
    gap: 15px;
    padding: 0 10px;
  }
}

@media (min-width: 1200px) {
  .office-container {
    gap: 30px;
  }
} 

.btnn {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid linear-gradient(to right, rgb(250, 249, 249), orange);
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.btnn:hover {
  color: white;
}

.btnn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background: linear-gradient(to right, rgb(7, 7, 7), orange);
  z-index: -1;
  transition: all 1s;
}

.btnn:hover::before {
  width: 160%;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 50px;
  right: 20px;
  font-size: 38px;
  cursor: pointer;
  color: white;
}

.player-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

#popup-player-img {
  width: 150px;
  height: 250px;
 
  object-fit: contain;
 
  margin-bottom: 20px;
}

.player-stats {
  width: 100%;
  max-width: 400px;
}

#popup-player-name {
  text-align: center;
  margin-bottom: 20px;
   color: #ececec6c;

}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 15px;
  width: 100%;
}

.stats-grid > div:nth-child(odd) {
  font-size: 27px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  background: linear-gradient(to right, rgb(0, 0, 0), orange);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mask-image: linear-gradient(to right, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
  text-align: right;
}
.stats-grid > div:nth-child(even) { 
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #ffffff9f; 
  margin-left: 20px;
}
@media (max-width: 480px) {
  #popup-player-img {
    width: 200px;
    height: 350px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width: 350px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid > div:nth-child(odd),
  .stats-grid > div:nth-child(even) {
    text-align: center;
  }
  .stats-grid > div:nth-child(odd) {
    padding-top: 8px;
    border-top: 1px solid #d60909;
  }
}
.player-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.player-number {
  position: absolute;
  top: -10px;
  left: -10px;
  color: rgba(255, 255, 255, 0.301);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}
#popup-player-img {
  position: relative;
  z-index: 0;
}
@media (max-width: 480px) {
  .player-number {
    width: 35px;
    height: 35px;
    font-size: 4em;
    top: 50px;
    left: 30px;
  }
}
/* Gallery  page  ---------------------------------------------------------------------------------- */  
        :root {
            --primary: #ff6b00;
            --dark: #1a1a1a;
            --light: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .gallery-container1 {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 1rem; 
           
        }
        .gallery-filter1 {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-bottom: 5rem;
            padding: 1rem 0;
        }
        .filter-btn1 {
            padding: 0.6rem 1.2rem;
            background:  linear-gradient(to right, rgb(2, 2, 2), orange);
            border: 2px solid rgb(12, 12, 12);
            color: white;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .filter-btn1.active, 
        .filter-btn1:hover {
            background:white;
            color: black;
        }
        .gallery-grid1 {
            columns: 4 250px;
            column-gap: 1rem;
        }
        .gallery-item1 {
            break-inside: avoid;
            margin-bottom: 1rem;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .gallery-item1:hover {
            transform: translateY(-5px);
        }
        
        .gallery1-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item1:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .img-caption1 {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            padding: 0.8rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item1:hover .img-caption {
            transform: translateY(0);
        }
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .lightbox.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-img {
            max-height: 80vh;
            max-width: 100%;
            border-radius: 8px;
        }
        
        .lightbox-caption {
            color: var(--white);
            text-align: center;
            margin-top: 1rem;
        }
        
        .close-btn1 {
            position: absolute;
            top: -40px;
            right: 0;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            background: var(--primary);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .nav-btn1 {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255,107,0,0.7);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: none;
        }
        
        .prev-btn1 {
            left: 20px;
        }
        
        .next-btn1 {
            right: 20px;
        }
        
        .loader1 {
            display: flex;
            justify-content: center;
            padding: 2rem;
        }
        
        .loader1 .dot {
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
            margin: 0 5px;
            animation: bounce 0.6s infinite alternate;
        }
        
        .loader1 .dot:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .loader1 .dot:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes bounce {
            to {
                transform: translateY(-15px);
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid1 {
                columns: 2 200px;
            }
            
            .lightbox-img {
                max-height: 60vh;
            }
            
            .nav-btn1 {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid1 {
                columns: 3;
            }
            
            .lightbox {
                padding: 1rem;
            }
            
            .lightbox-img {
                max-height: 50vh;
            }
        } 

/* about  page -----------------------------------------------------------------------------  */ 
          :root {
            --primary: #ff6b00;
            --dark: #1a1a1a;
            --light: #f8f8f8;
            --text: Black;
            --white: #ffffff;
        }
        .about-hero {
            position: relative;
            height: 30vh;
            min-height: 200px;          
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: black;
            padding: 0 1rem;
        }
        
        .hero-content {
            max-width: 800px;
        }
      
        .hero-content p {
            font-size: clamp(0.9rem, 1.9vw, 0.8rem);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: clamp(2.8rem, 4vw, 3.5rem);
            background: linear-gradient(to right, rgb(0, 0, 0), orange);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            mask-image: linear-gradient(to right, black 100%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
            position: relative;
            display: inline-block;
            margin-top: 100px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 25%;
        }
        .our-story {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 4rem;
            align-items: center;
        }
        
        .story-content {
            flex: 1 1 60%;
            min-width: 300px;
        }
        
        .story-image {
            flex: 1 1 35%;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .story-image:hover img {
            transform: scale(1.03);
        }
        .mv-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 4rem;
            color: white;
            margin-top: 7rem;
        }
        
        .mv-card {
            flex: 1 1 45%;
            min-width: 300px;
            background: black;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary);
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
        }
        
        .mv-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        } 
        .section-title1 h2 {
            font-size: clamp(2.8rem, 4vw, 3.5rem);
            background: linear-gradient(to right, rgb(255, 255, 255), orange);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
           -webkit-text-fill-color: transparent;
            mask-image: linear-gradient(to right, black 100%, transparent 100%);
           -webkit-mask-image: linear-gradient(to right, black 100%, transparent 100%);
            position: relative;
            display: inline-block;
            margin-left: 30%;
            margin-top: 100px;
        }
       
        .facilities {
            margin-bottom: 4rem;
        }
        
        .facility-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .facility-card {
            position: relative;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
         
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 150px 40px 20px 50px;
        }
        
        .facility-image {
            width: 100%;
            height: 100%;
        }
        
        .facility-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .facility-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .facility-card:hover .facility-overlay {
            transform: translateY(0);
        }
        
        .facility-overlay h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .achievements {
           background: linear-gradient(to right, rgb(7, 7, 7), orange);
            color: black;
            padding: 3rem 1rem;
            text-align: center;
            margin: 250px 40px 0 50px;
        }
        
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto 0;
        }
        
        .achievement-item {
            padding: 1.5rem;
        }
        
        .achievement-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .achievement-text {
            font-size: 1.1rem;
        }
        @keyframes countUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .achievement-item.animated {
            animation: countUp 0.6s ease-out forwards;
        }
        
        .achievement-number {
            display: inline-block;
            min-width: 60px; 
        } 

       
        :root {
            --primary-color:black;
            --dark-color: #1a1a1a;
            --light-color: white;
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background-color: var(--light-color);
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        
       
        .faq-header p {
            color: var(--dark-color);
            font-size: 2.0rem;
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            
            flex-direction: row;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .category-btn {
            padding: 0.2rem 0.5rem;
            background:linear-gradient(to right, rgb(212, 158, 8), black);
            border: 2px solid var(--primary-color);
            color: var(--light-color);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .category-btn.active, 
        .category-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 5rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            overflow: hidden;
           
        }
        
        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--dark-color);
        }
        
        .faq-question:hover {
           background:linear-gradient(to right, rgb(255, 255, 255), rgb(243, 188, 5));
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #555;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .contact-prompt {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: var(--primary-color);
            color: white;
            border-radius: 8px;
        }
        
        .contact-prompt a {
            color: white;
            text-decoration: underline;
            font-weight: 500;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }
        
        @media (max-width: 768px) {
            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }
        }   
        
        /* Footer ---------------------------------------------------------------------------------- */  
footer {
  width: 100%;
  height: auto;
  background-color: rgb(0, 0, 0);
  padding: 40px 20px 20px;
  color: #ccc;
  font-family: Arial, sans-serif;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
.footer a {
  color: #626263;
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #7c7e81;
  text-decoration: underline;
}
.footer-left {
  width: 100%;
  max-width: 300px;
  margin: 30px auto;
  order: 2;
  text-align: center;
}
.socialsContainer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.socialsContainer2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin: 30px 0;
  order: 3;
}
.footer-column {
  min-width: 150px;
  margin-bottom: 20px;
}
.footer-column h4 {
  color: white;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li a {
  font-size: 14px;
}
.footer-bottom {
  order: 4;
  width: 100%;
}
.footer-bottom p {
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 40px 20px;
  }
  .footer-left {
    order: 2;
    width: 40%;
    margin: 0;
    text-align: right;
  }
  .footer-columns {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin-top: 40px;
  }
  .footer-column {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  footer {
    padding: 60px 60px 20px;
  }
  .footer-left {
    width: 20%;
  }
  .footer-columns {
    width: 45%;
    margin-top: 0;
    order: 2;
  } 
}
 


  
        