    body {
      margin: 0;
      font-family: 'Roboto Condensed', sans-serif;
       background: #05012b; 
    }

   /* Header */
.header {
  background: #05012b; 
  padding: 12px 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allows wrapping on small screens */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #00c6ff;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); /* added shadow */

}

/* Logo link */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: #00e5ff;
  font-family: 'Arial Black', sans-serif;
  text-decoration: none; 
  display: inline-block;
}

/* If logo is a link, remove underline */
.logo a {
  text-decoration: none;
  color: inherit;
}

/* Logo span */
.logo span {
  color: #ffffff;
  font-weight: normal;
  font-size: 18px;
  text-decoration: none; 
}


.logo a:hover {
  text-decoration: none;
}

/* Buttons */
.header-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #00e5ff;
  background: transparent;
  color: #00e5ff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #00e5ff;
  color: #000;
}

.btn.register {
  background: #00e5ff;
  color: #000;
}
.btn.register:hover {
  background: transparent;
  color: #00e5ff;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    flex-direction: row; /* ek line me rakho */
    align-items: center;
    justify-content: space-between;
  }

  .header-buttons {
    margin-top: 0; /* upar ka gap hata do */
    display: flex;
    gap: 10px; /* buttons ke beech space */
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }
  .logo span {
    font-size: 14px;
  }
  .btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}


/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.dropbtn {
  background: transparent;
  color: #00e5ff;
  font-weight: bold;
  border: 1px solid #00e5ff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.dropbtn:hover {
  background: #00e5ff;
  color: #000;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #05012b;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Toggle dropdown (mobile) */
.dropdown.show .dropdown-content {
  display: block;
}

/* Hamburger menu for mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #00e5ff;
  cursor: pointer;
  border: 2px solid #00e5ff;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Mobile nav hidden by default */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #05012b;
    padding: 15px 20px;
    z-index: 998;
    border-top: 1px solid #00c6ff;
  }

  .nav-menu.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: #0a032f;
    box-shadow: none;
  }

  .dropdown-content a {
    color: white;
  }

  .dropdown-content a:hover {
    background-color: #1c1357;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn, .dropbtn {
    width: 100%;
    text-align: center;
  }
}


    /* Single Image Section */
   .banner img {
  width: 70%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;   
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  cursor: pointer;
}

/* Hover effect */
.banner img:hover {
  transform: scale(1.05);                      
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);  
  filter: brightness(1.05);                    
}


    /* Footer */
    .footer {
      background: #e89d3c; /* orange shade */
      padding: 20px;
      text-align: center;
      font-size: 13px;
      font-family: Arial, sans-serif;
    }

    .footer p {
      margin: 0;
      font-weight: bold;
      display: inline-block;
      margin-right: 10px;
    }

    .footer-links {
      display: inline-block;
    }

    .footer-links a {
      color: #000;
      text-decoration: none;
      margin: 0 5px;
      font-weight: bold;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

@media (max-width: 600px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center; 
  }

  .footer p {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;             
    justify-content: center; 
    align-items: center;    
  }

  .footer-links a {
    font-weight: bold;
    text-align: center;
  }
}


    /* Mobile responsive */
    @media (max-width: 768px) {
     

      .banner img {
        width: 90%; /* full width on mobile */
        margin: 20px auto;
      }
    }

      .hero {
      text-align: center;
      padding: 20px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .hero h1 {
      font-size: 32px;
      color: #00e5ff;
      margin-bottom: 20px;
      text-align: center
    }

    .hero p {
      font-size: 18px;
      line-height: 1.6;
      color: #f3efef;
      margin-bottom: 30px;
    }

   .button-register {
  padding: 20px 22px;
  border-radius: 8px;
  border: 1px solid #00e5ff;
  background: transparent;
  color: #00e5ff;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
   text-decoration: none;  
  display: inline-block;
  text-align: center;
}

.button-register:hover {
  background: rgba(0, 229, 255, 0.1); /* subtle aqua tint */
  color: #00e5ff;
  border: 1px solid #00e5ff;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6); /* glowing effect */
  transform: scale(1.05); /* slight zoom */
}

    /* Mobile Responsive */
    @media (max-width: 600px) {
      .hero h1 {
        font-size: 24px;
      }
      .hero p {
        font-size: 16px;
      }
      .btn-register {
        font-size: 16px;
        padding: 12px 25px;
      }
    }

     .jalwa-section {
      max-width: 1200px;
      background: transparent;
      border: 2px solid #00c6ff;
      border-radius: 12px;
      margin: 0 auto;
      padding: 50px 20px;
      line-height: 1.8;
      margin: 20px auto;
    }

    .jalwa-section h2 {
      font-size: 32px;
      color: #00c6ff;
      margin-bottom: 20px;
      text-align: center;
    }

    .jalwa-section h3 {
      font-size: 26px;
      color: #00c6ff;
      margin-bottom: 20px;
      margin-left: 30px;
    
    }

    .jalwa-section ul {
  list-style-type: disc; 
  padding-left: 20px;   
  max-width: 1100px;
  margin: 0 auto; 
}

.jalwa-section ul li {
  color: white;          
  margin-bottom: 10px;  
  margin-top: 10px;
  font-size: 16px;        
  line-height: 1.5;      
}

.center-img {
  display: block;
  margin: 20px auto;
  width: 300px;        
  height: 300px;      
  object-fit: contain; 
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  cursor: pointer;
}



/* Hover effect: scale up + brighter shadow */
img.center-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  img.center-img {
    max-width: 70%;  /* tablet/desktop pe limit karo */
    height: auto;
  }
}


    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .feature-box {
      background: transparent; /* transparent background */
      border: 2px solid #00c6ff; /* blue border */
      border-radius: 12px;
      padding: 20px;
      color: #fff; /* white text */
      transition: transform 0.3s ease, background 0.3s ease;
      text-align: center;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      background: rgba(0,198,255,0.1); /* slight tint on hover */
    }

    .feature-box strong {
      font-size: 20px;
      color: #00c6ff; /* blue heading inside box */
      margin-bottom: 10px;
    }

    .jalwa-section p {
      font-size: 17px;
      color: #fff;
      margin-bottom: 20px;
      max-width: 1100px;
      margin: 8px auto;
      
    }

    .cta-box {
      text-align: center;
      margin-top: 30px;
    }

    .cta-box a {
      display: inline-block;
      padding: 12px 28px;
      font-size: 18px;
      color: #000;
      background: #00c6ff;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .cta-box a:hover {
      background: #0099cc;
      color: #fff;
    }


        .faq-section {
      max-width: 1200px;
      margin: 0 auto;
    }
    .faq-section h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #0099cc;
    }
    .faq-box {
     
      margin-bottom: 15px;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.5);
      transition: transform 0.3s ease;
    }
    .faq-box:hover {
      transform: scale(1.02);
    }
    .faq-box h3 {
      display: block;
      font-size: 24px;
      color: #0099cc;
      margin-bottom: 10px;
      align-items: flex-start;
    }
    .faq-box p {
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
      color: #ddd;
    }

    @media (max-width: 768px) {

         .jalwa-section {
    padding: 30px 15px;   /* reduce padding on tablets */
    margin: 15px;         /* reduce margin */
    line-height: 1.6;     /* slightly tighter text for small screens */
  }
  .features {
    grid-template-columns: 1fr; /* force single column on small screens */
  }
  .jalwa-section h2 {
    font-size: 22px;
  }
  .jalwa-section h3 {
    font-size: 18px;
    margin-left: 5px;
  }
  .jalwa-section ul li {
    font-size: 14px;
  }
  .cta-box a {
    font-size: 16px;
    padding: 10px 20px;
  }
  .faq-section h2 {
    font-size: 22px;
  }
  .faq-box h3 {
    font-size: 18px;
  }
  .faq-box p {
    font-size: 14px;
  }
}

/* about */
.about-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      line-height: 1.6;
    }

    .about-section h1 {
      font-size: 36px;
      color: #00c6ff;
      margin-bottom: 20px;
      text-align: center;
    }

    .about-section h2 {
      font-size: 26px;
      color: #00c6ff;
      margin: 30px 0 15px;
    }

    .about-section p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #fff;
    }

    /* Full-width single line box */
    .highlight-box {
      background: transparent;
      border: 2px solid #00c6ff;
      border-radius: 12px;
      padding: 20px;
      margin: 20px 0;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .highlight-box:hover {
      transform: translateY(-5px);
      background: rgba(0,198,255,0.1);
    }

    .highlight-box h3 {
      font-size: 20px;
      color: #00c6ff;
      margin-bottom: 10px;
    }

    .highlight-box h4 {
      font-size: 18px;
      color: #00c6ff;
      margin-bottom: 10px;
    }

    .highlight-box p,
    .highlight-box ul li {
      font-size: 16px;
      color: #fff;
    }

    .highlight-box ul {
     
      padding: 0;
      margin: 10px;
    }

    .highlight-box ul li {
      padding: 8px 0;
    
    }

    .highlight-box ul li:last-child {
      border-bottom: none;
    }

   
    @media (max-width: 600px) {
      .about-section h1 {
        font-size: 28px;
      }
      .about-section h2 {
        font-size: 22px;
      }
     
    }

    /* contact */
    .contact-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 50px 20px;
      line-height: 1.6;
    }

    .contact-section h1 {
      font-size: 36px;
      color: #00c6ff;
      margin-bottom: 20px;
      text-align: center;
    }

    .contact-section h2 {
      font-size: 26px;
      color: #00c6ff;
      margin: 30px 0 15px;
    }

    .contact-section p {
      font-size: 16px;
      margin-bottom: 20px;
    }
    h1 {
      text-align: center;
      font-size: 36px;
      margin-bottom: 30px;
      color: #00e5ff;
    }
   

     @media (max-width: 600px) {
      .contact-section h1 {
        font-size: 28px;
      }
      .contact-section h2 {
        font-size: 22px;
      }
    }

      .btn-box {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .main-btn {
      padding: 10px 26px;
      font-size: 15px;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    /* Login Button: outline style */
    .login-btn {
      background: transparent;
      color: #00f0ff;
      border: 2px solid #00f0ff;
    }
    .login-btn:hover {
      background: rgba(0, 240, 255, 0.1);
      box-shadow: 0 0 12px #00f0ff;
      transform: scale(1.05);
    }

    /* Register Button: filled style */
    .reg-btn {
      background: #00f0ff;
      color: #000;
      border: 2px solid #00f0ff;
    }
    .reg-btn:hover {
      background: #00d9e6;
      box-shadow: 0 0 12px #00f0ff;
      transform: scale(1.05);
    }

    @media (max-width: 480px) {
      .main-btn {
        width: 80%;
      }
    }

     .table-wrap {
    max-width: 900px;
    margin: 16px auto;
    padding: 12px;
    background: linear-gradient(180deg, #0b2f5a 0%, #073052 100%); /* dark blue gradient */
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(3, 22, 60, 0.25);
  }

  /* Table layout */
  .spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff; /* keep text white as requested */
    table-layout: auto;
  }

  .spec-table th,
  .spec-table td {
    padding: 12px 14px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .spec-table th {
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    width: 36%;
    white-space: nowrap;
    color: rgba(255,255,255,0.95);
  }

  .spec-table td {
    font-weight: 500;
    color: rgba(255,255,255,0.92);
  }

  /* Subtle striping for rows — uses semi-transparent white */
  .spec-table tr:nth-child(even) td {
    background: rgba(255,255,255,0.02);
  }

  /* Make header cells visually distinct */
  .spec-table thead th {
    background: rgba(255,255,255,0.03);
  }

  /* Responsive: stack on very small screens */
  @media (max-width: 520px) {
    .spec-table, .spec-table thead, .spec-table tbody, .spec-table th, .spec-table td, .spec-table tr {
      display: block;
      width: 100%;
    }
    .spec-table tr { margin-bottom: 12px; border-bottom: none; }
    .spec-table th {
      display: block;
      width: 100%;
      padding: 8px 10px;
      font-size: 0.9rem;
    }
    .spec-table td {
      display: block;
      padding: 8px 10px 12px;
      background: rgba(255,255,255,0.01);
      margin-top: 4px;
    }
  }

  