

body {
  font-family: 'Segoe UI', sans-serif;
 background-color: black;
  color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.navbar {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  animation: slideInDown 0.7s ease;
}


.nav-content {
  color: #f0f0f0;
  margin-left: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-content:hover {
  color: #00ffe7;
}
.logo{
  height: 170px;
  width: 200px;
  margin-left: 20px;
}

#login-content{
  padding: 25px;
  background: linear-gradient(45deg, #00ffe7, #0066ff);
  color: #f0f0f0;
  margin-left: 25px;
  border-radius: 30%;
  margin-right: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
#login-content:hover {
  background: linear-gradient(45deg, #00d4b5, #0051cc);
}


.main-content {
  flex: 1;
  padding: 4em 2em;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.hero {
  margin-bottom: 3em;
}

input, textarea {
  padding: 14px 18px;
  margin: 12px 0;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(0, 255, 231, 0.3);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

input:focus, textarea:focus {
  box-shadow: 0 0 20px rgba(0, 255, 231, 0.6);
  transform: scale(1.02);
}

button {
  padding: 14px 30px;
  background: linear-gradient(45deg, #00ffe7, #0066ff);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 231, 0.3);
}

button:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 30px rgba(0, 255, 231, 0.4);
}

#result {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  min-height: 2em;
  animation: fadeIn 0.8s ease-in-out;
}

.how-it-works, .phishing-info {
  margin-top: 3em;
  padding: 2em;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,255,231,0.1);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1.2s ease;
}

.learn-more {
  margin: 3em auto;
  padding: 2em;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  max-width: 800px;
  animation: fadeIn 1s ease-in-out;
  text-align: center;
}

.learn-more p {
  margin-bottom: 1em;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, #00ffe7, #0077ff);
  color: white;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,231,0.4);
}

.latest-updates {
  max-width: 900px;
  margin: 3em auto;
  animation: fadeIn 1.5s ease-in;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 5px solid #00ffe7;
  padding: 1em;
  margin: 1em 0;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,255,231,0.05);
}

footer {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 1.5em;
  margin-top: auto;
  font-size: 0.9rem;
  color: #cccccc;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}




  .how-it-works, .phishing-info, .learn-more {
    padding: 1em;
  }

  .blog-card {
    padding: 0.5em;
  }


  .how-it-works, .phishing-info, .learn-more {
    padding: 1em;
  }

  .blog-card {
    padding: 0.5em;
  }


  .about-hero {
    margin-bottom: 3em;
    animation: fadeInUp 1.2s ease;
  }
  
  .about-hero h1 {
    font-size: 2.8rem;
    color: #00ffe7;
    margin-bottom: 0.5em;
  }
  
  .about-hero p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .about-details {
    background: rgba(255, 255, 255, 0.06);
    margin: 2em auto;
    padding: 2em;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 231, 0.1);
    max-width: 950px;
    text-align: left;
    animation: fadeIn 1.5s ease;
  }
  
  .about-details h2 {
    color: #00ffe7;
    margin-bottom: 0.8em;
  }
  
  .about-details p, .about-details ul {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .about-details ul {
    list-style-type: none;
    padding: 0;
  }
  
  .about-details ul li {
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 0.8em;
  }
  
  .about-details ul li::before {
    content: '✔️';
    position: absolute;
    left: 0;
  }
  
  .about-vision {
    margin: 3em auto;
    padding: 2em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1.5s ease;
  }
  
  .about-vision h2 {
    color: #00ffe7;
    margin-bottom: 0.5em;
  }
  
  .about-vision p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .about-cta {
    margin: 4em auto 2em;
    padding: 2em;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1.8s ease;
  }
  
  .about-cta h2 {
    color: #00ffe7;
    margin-bottom: 0.6em;
  }
  
  .about-cta p {
    color: #e0e0e0;
    font-size: 1.1rem;
  }
  
  .portfolio-link, .contact-link {
    color: #00bfff;
    font-weight: bold;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
  }
  
  .portfolio-link:hover, .contact-link:hover {
    text-decoration: underline;
  }
  

  .contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3em 2em;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 231, 0.15);
    max-width: 700px;
    margin: 3em auto;
    animation: fadeInUp 1.3s ease;
    text-align: center;
  }
  
  .contact-form-section h2 {
    color: #00ffe7;
    margin-bottom: 1em;
    font-size: 2.5rem;
  }
  
  .contact-form-section p {
    color: #cccccc;
    margin-bottom: 2em;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .contact-form-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-section input,
  .contact-form-section textarea {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00ffe7;
    width: 100%;
    max-width: 550px;

    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
  }
  
  .contact-form-section input:focus,
  .contact-form-section textarea:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: #00d4b5;
    box-shadow: 0 0 12px rgba(0, 255, 231, 0.5);
    transform: scale(1.02);
  }
  
  .contact-form-section button {
    margin-top: 20px;
    padding: 14px 30px;
    border: none;
    background: linear-gradient(45deg, #00ffe7, #0066ff);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 255, 231, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-form-section button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 255, 231, 0.5);
  }
/* Spinner Styles */
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db; /* Color of the spinner */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-top: 10px; /* Adjust the margin as needed */
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .navbar h1 {
    font-size: 1.5rem;
  }

  .navbar a {
    font-size: 0.9rem;
  }

  input, textarea {
    width: 90%;
    max-width: 100%;
  }

  button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .contact-form-section {
    padding: 2em 1em;
  }

  .contact-form-section h2 {
    font-size: 2rem;
  }

  .contact-form-section p {
    font-size: 1rem;
  }

  .contact-form-section input,
  .contact-form-section textarea {
    width: 90%;
    max-width: none;
    padding: 12px;
    font-size: 0.9rem;
  }

  .contact-form-section button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

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

  .navbar h1 {
    font-size: 1.2rem;
  }

 
  input, textarea {
    width: 100%;
    padding: 10px;
  }

  button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }
  .contact-form-section h2 {
    font-size: 1.8rem;
  }

  .contact-form-section p {
    font-size: 0.9rem;
  }

  .contact-form-section input,
  .contact-form-section textarea {
    padding: 10px;
    font-size: 0.8rem;
  }

  .contact-form-section button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .logo{
    height: 170px;
    width: 222px;
    margin-left: 20px;
  }
  .navbar {
   display: flex;
    flex-direction: column;
    align-items: center;
   
  }  
}
.login_and_register_logo{
  display: flex;
  justify-content: center;
}

@media (max-width: 540px) {
#login-content{
  padding: 10px;
}
}
