/* styles.css */

/* Navbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background: linear-gradient(to top, rgb(255, 255, 255), transparent);
    padding-top: 60px; /* Ensures content is not hidden under navbar */
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgb(5, 100, 126), transparent);
    padding: 10px 20px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  #newlogo {
    width: 15%;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 10px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  /* Responsive Styles */
 @media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background:  rgb(0, 191, 255)linear-gradient(to top, rgb(255, 255, 255), transparent);
    text-align: center;
    
  }
  
  .nav-links li {
    margin: 10px 0; /* ⬅️ Increase vertical spacing */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
  
  /* Main Section */
  .Main-section {
    margin-top: 0.5px;
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(to top, rgb(255, 255, 255), transparent);
    display: flex;
    min-height:100vh;
    padding:20px 0;
    justify-content: center;
    align-items: center;
  }
  .Main-section .logo_1 {
    z-index: 999;
    position: relative;
    top: 50px;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left:0px;
    color: #0a1d41;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
    display: block;
    width:100%;
    text-align:center;
    font-weight: 400;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
  .Main-section .logo_1 {
    font-size: 1.4rem; /* Reduce font size */
    top: 0px;           /* Remove unnecessary vertical offset*/ 
    margin: 10px 0;
  }
}
  .slider {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
  }
  
  .left, .right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .left img {
      width: 300px;
      max-width: 100%;
    }
  
 

 /* @keyframes chatigory-bg {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
  }*/
 
 @media (max-width: 768px) {
  .slider {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .right .container {
    margin-top: 20px;
    width: 90%;
  }
}
  
 
  .im {
    position: relative;
    background-image: url('3315.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
  }
  .im::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .container {
    position: relative;
    margin-top: 50px;
    z-index: 2;
    background: linear-gradient(to top, rgb(11, 25, 55), transparent);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  .containe1 {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.852);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  h2 {
    margin-top: 10px;
  }
  input {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  button {
    background-color: #01122c;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
  }
  button:hover {
    background-color: linear-gradient(to top, rgb(255, 255, 255), transparent);
  }
  .divider {
    margin: 15px 0;
    font-weight: bold;
  }
  #result {
    margin-top: 20px;
    font-weight: bold;
  }
  .valid { color: green; }
  .invalid { color: red; }
 
  
  /* Footer */
  .footer {
    background: linear-gradient(to top, rgb(5, 100, 126), transparent);
    padding: 20px 0;
    border-top: 1px solid #ccc;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  .footer-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
  }
  .footer-section p,
  .footer-section ul,
  .footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin-bottom: 10px;
  }
  .footer-section a:hover {
    color: #000;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #fafafa;
  }
  #logoimage {
    width: 80%;
  }
  
  
 

  