body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0d0d0d;
  color: #eee;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
	text-decoration: none;
}

.landing {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}


html {
  scroll-behavior: smooth;
}

.scroll-down {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: white;
  text-decoration: none;
  animation: bounce 2s infinite;
  z-index: 10;
}


.scroll-down:hover {
  color: #ccc;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 10px);
  }
  60% {
    transform: translate(-50%, 5px);
  }
}

/* Hero Section */

.hero-description{
  margin: 25px;
}

.hero {
  height: 100vh;
  background: url("https://t4.ftcdn.net/jpg/08/69/13/61/360_F_869136194_EFNzF8zy6MJPV3cf6lhRD5Zv2SsY5BBx.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.hero-content{
	margin-top: 200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(13, 13, 13, 0.95));
  z-index: 0;
}

.hero h1,
.hero p,
.cta-button {
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 1rem;
  max-width: 600px;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, rgb(55, 112, 149), rgb(55, 112, 149));
  color: #fff;
  padding: 10px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgb(55, 112, 149);
  margin-top: 10px;
}

#mainContent .card {
 background: #1e1e1e;
  color: #fff;   
  border: none;        
  border-radius: 12px;     
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


.cta-button:hover {
  background: #fff;
  color: rgb(55, 112, 149);
  box-shadow: 0 0 20px rgb(55, 112, 149);
}

.how-it-works {
  background-color: rgb(55, 67, 86) !important;
}

/* Navbar Styles */

.navbar {
  background-color: rgb(0, 0, 0, 0);
  padding: 5px 5px;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


@media (max-width: 480px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 1.2rem;
  }
}

.login-container {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     padding: 1rem;
   }

   .login-form {
     background-color: #1a1a1a;
     border-radius: 16px;
     max-width: 400px;
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
     padding: 2rem;
     box-shadow: 0 4px 12px rgba(0,0,0,0.5);
   }

   .login-form h2 {
     color: #fff;
     text-align: center;
     margin-bottom: 1rem;
   }

   .login-form label {
     color: #ccc;
     font-size: 0.9rem;
     margin-bottom: 0.4rem;
   }

   .login-form input {
     width: 100%;
     padding: 1rem;
     border: none;
     border-radius: 8px;
     background-color: #333;
     color: #eee;
     font-size: 1rem;
   }

   .login-form input::placeholder {
     color: #888;
   }


   :root {
       --blue: #3f8efc;
       --dark-bg: #0e0e0e;
       --card-bg: #1a1a1a;
       --text-light: #e0e0e0;
       --text-muted: #999;
       --accent: #52b0ff;
     }

     * {
       box-sizing: border-box;
     }

     body {
       margin: 0;
       padding: 0;
       background-color: var(--dark-bg);
       color: var(--text-light);
     }

     header {
       padding: 1rem;
       background: linear-gradient(120deg, #101010, #121b2f);
       color: var(--text-light);
       text-align: center;
     }

     header h1 {
       margin-bottom: 10px;
       font-size: 2.5em;
     }

     .container {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 40px;
     }

     .section-divider {
       width: 100%;
       max-width: 900px;
       text-align: center;
       margin: -5px auto 20px;
       color: var(--text-muted);
     }

     @media (max-width: 768px) {
       .container {
         padding: 30px 15px;
       }
       .package-card {
         width: 100%;
         max-width: 360px;
       }
     }

     .highlight-section {
       background: none;
       color: var(--text-light);
       text-align: center;
       padding: 30px 15px;
       width: 100%;
       max-width: 500px;
     }


 
   #pricingSection {
   	margin-top: 20px;
   	
   }

   .highlight-section {
   	border-radius: 50px;
   }
   
   #registrationForm {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     min-height: 100vh; /* key fix */
     padding: 1rem;
   }
   
   .registration-form {
     background-color: var(--card-bg);
     border-radius: 16px;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
     box-shadow: 0 4px 12px rgba(0,0,0,0.5);
     text-align: left;
   }

   .registration-form h2 {
     text-align: center;
     margin-bottom: 1rem;
     color: var(--text-light);
   }

   .registration-form label {
     display: block;
     color: var(--text-muted);
     font-size: 0.9rem;
     margin-bottom: 0.4rem;
   }

   .registration-form input {
     width: 100%;
     padding: 1rem;
     border: none;
     border-radius: 8px;
     background-color: #333;
     color: #eee;
     font-size: 1rem;
   }

   .registration-form input::placeholder {
     color: #888;
   }

   .registration-form .cta-button {
     margin-top: 1rem;
     width: 100%;
   }

   .registration-form .login-link {
     font-size: 13px;
     margin-top: 15px;
     text-align: center;
     color: var(--text-muted);
   }

   .registration-form .login-link a {
     color: var(--accent);
     text-decoration: none;
   }
   

   #registrationForm .highlight-section {
     width: 100%;
     max-width: 520px;         
     margin: 0 auto;           
     padding: 28px;
   }
   
   .edit-button {
	background-color: #0d0d0d;
     color: rgb(248, 254, 255);
     padding: 6px 16px;
     font-size: 0.80rem; 
     border: none;
     border-radius: 20px;
     font-weight: 600;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
   }

   .edit-button:hover {
     transform: translateY(-1px);
     box-shadow: 0 5px 12px rgba(55, 112, 149, 0.5);
   }

   .edit-button-wrapper {
     display: flex;
     justify-content: flex-end;
     margin-right: 2rem;
     margin-top: -10px;
	 margin-bottom: 2px;
   }
   
   #editEpkModal .form-label{
	color: black !important;
   }
   
   #editEpkModal .form-control {
     background-color: #f8f9fa;
     color: rgb(0, 0, 0); 
     border: 1px solid #ced4da;
   }

   #editEpkModal .form-control:focus {
     background-color: #ffffff;
     border-color: #86b7fe;
     box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
   }
   
   .avatarButton {
     padding: 2px 8px;
	 margin-top: 10px;
     font-size: 0.75rem;  
     border-radius: 6px;
	 background-color: rgb(92, 125, 177);
     cursor: pointer;
     border: none;
     color: white;
     transition: background-color 0.2s ease;
   }