         
         
         
         
          
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;
}


.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);

  } 
         /* registration  page ---------------------------------------------------------------------- */
        .registration-container {
            max-width: 3050px;
            margin: 2rem auto;
            padding: 0 0.5rem;
        }
        
        .progress-bar {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .progress-bar::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 4px;
            background: #e0e0e0;
            z-index: 1;
        }
        
        .progress-step {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            background: #e0e0e0;;
            color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.5rem;
            font-weight: bold;
        }
        
        .step-label {
            font-size: 0.9rem;
            color: #1a1a1a;
        }
        
        .progress-step.active .step-number {
            background: #ff6b00;
            color: #ffffff;
        }
        
        .progress-step.completed .step-number {
            background: green;
            color: green;
        }
        
        .progress-step.completed::after {
            content: '✓';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
        }
        
        /* Form Sections */
        .form-section {
            background: #ffffff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            display: none;
        }
        
        .form-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-title {
            color:#ff6b00;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .form-col {
            flex: 1;
            min-width: 200px;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid  #ffffff;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .checkbox-group {
            margin: 1rem 0;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            cursor: pointer;
        }
        
        .checkbox-label input {
            width: auto;
            margin-right: 0.5rem;
        }
        
        /* Terms & Conditions */
        .terms-container {
            max-height: 400px;
            overflow-y: auto;
            padding: 1rem;
            border: 1px solid  #ffffff;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            background: #f8f8f8;
        }
        
        .terms-section {
            margin-bottom: 1.5rem;
        }
        
        .terms-section h3 {
            color: #ff6b00;
            margin-bottom: 0.5rem;
        }
        
        /* Navigation Buttons */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }
        
        .btn {
            padding: 0.8rem 1.5rem;
            background: #ff6b00;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #e05e00;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid #ff6b00;
            color: #ff6b00;
        }
        
        .btn-outline:hover {
            background: rgba(255,107,0,0.1);
        }
        
        .btn:disabled {
            background:  #ffffff;
            cursor: not-allowed;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .progress-step .step-label {
                display: none;
            }
            
            .form-section {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .form-section {
                padding: 1rem;
            }
            
            .btn {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        } 
        /* Loading Modal Styles */
.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.loading-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    width: 90%;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgb(223, 218, 218);
    border-top: 4px solid #ff6b00;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-container {
    width: 100%;
    height: 6px;
    background:  #ffffff;
    border-radius: 3px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress-bar-loading {
    height: 100%;
    width: 0%;
    background: #ff6b00;
    border-radius: 3px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    color:  #ffffff;
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-size: 0.9rem;
    color: #666;
} 

.input-error {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}


.required-label::after {
    content: " *";
    color: #dc3545;
}  


.checkbox-group {
    position: relative;
}

.checkbox-label.input-error {
    border: 2px solid #dc3545;
    border-radius: 4px;
    padding: 0.5rem;
    background-color: rgba(220, 53, 69, 0.05);
}   
 /* 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;} 
    .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;
} 

.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); 

}  

 /* 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;
  } 
}


  
        


