 * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
    body { 
     font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f3c22f 0%, #f7d969 100%);
      min-height: 100vh;
      color: #1a1a1a;
      line-height: 1.8;
    }

    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #f3c22f 0%, #f7d969 100%);
      padding: 15px 40px;
      position: relative;
      min-height: 80px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .logo img {
      height: 55px;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
      transition: filter 0.3s ease;
    }

    .logo:hover img {
      filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 45px;
    }

    .nav-menu a {
      color: #1a1a1a;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      position: relative;
      padding: 8px 0;
      transition: all 0.3s ease;
    }

    .nav-menu a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #0095ff, #0077cc);
      transition: all 0.3s ease;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .nav-menu a:hover {
      color: #0095ff;
      transform: translateY(-2px);
    }

    .nav-menu a:hover::before {
      width: 100%;
    }

    /* Dropdown Styles */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown > a {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .dropdown > a::after {
      content: '▼';
      font-size: 10px;
      transition: transform 0.3s ease;
    }

    .dropdown:hover > a::after {
      transform: rotate(180deg);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background: white;
      min-width: 200px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      border-radius: 12px;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      overflow: hidden;
      opacity: 0;
      animation: fadeInDown 0.3s ease forwards;
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    .dropdown.open .dropdown-content {
      display: block;
    }

    @media (min-width: 901px) {
      .dropdown:hover .dropdown-content {
        display: block;
      }
    }

    .dropdown-content a {
      color: #333;
      padding: 14px 20px;
      display: block;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .dropdown-content a:hover {
      background: linear-gradient(90deg, #f3f4f6, #e5e7eb);
      border-left-color: #0095ff;
      color: #0095ff;
      padding-left: 25px;
    }

    .register-btn {
      background: linear-gradient(135deg, #0095ff 0%, #0077cc 100%);
      color: white;
      border: none;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 149, 255, 0.3);
      position: relative;
      overflow: hidden;
    }

    .register-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .register-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .register-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(0, 149, 255, 0.4);
    }

    .register-btn:active {
      transform: translateY(0);
    }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      color: #1a1a1a;
      transition: transform 0.3s ease;
    }

    .hamburger:hover {
      transform: rotate(90deg);
    }

    /* Mobile Styles */
    @media (max-width: 900px) {
      .header {
        padding: 15px 20px;
      }

      .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(180deg, #f3c22f 0%, #f7d969 100%);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 40px;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 25px;
        z-index: 999;
        overflow-y: auto;
      }

      .nav-menu.active {
        left: 0;
      }

      .nav-menu a {
        font-size: 18px;
        width: 80%;
        text-align: center;
        padding: 12px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
      }

      .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.35);
      }

      .dropdown-content {
        position: static;
        display: none;
        width: 80%;
        box-shadow: none;
        background: rgba(230, 184, 0, 0.3);
        border-radius: 12px;
        margin-top: 10px;
      }

      .dropdown.active .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease;
      }

      .dropdown.open .dropdown-content {
        display: block;
        animation: slideDown 0.3s ease;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          max-height: 0;
        }
        to {
          opacity: 1;
          max-height: 500px;
        }
      }

      .dropdown > a::after {
        transition: transform 0.3s ease;
      }

      .dropdown.active > a::after {
        transform: rotate(180deg);
      }

      .dropdown.open > a::after {
        transform: rotate(180deg);
      }

      .hamburger {
        display: block;
      }

      .register-btn {
        padding: 12px 28px;
        font-size: 15px;
      }
    }

    @media (max-width: 500px) {
      .logo img {
        height: 45px;
      }

      .header {
        padding: 12px 15px;
        min-height: 70px;
      }

      .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
      }
    }


    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #f3c22f 0%, #f7d969 100%);
      min-height: 100vh;
     
      color: #333;
    }

    .home-container {
      max-width: 1200px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 28px;
      padding: 60px 50px;
      box-shadow: 0 25px 80px rgba(0,0,0,0.25),
                  0 0 0 12px rgba(243,194,47,0.15);
      border: 3px solid #f3c22f;
      position: relative;
      overflow: hidden;
    }

    .home-container::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 8px;
      background: linear-gradient(90deg, #d32f2f, #ff6b6b, #f3c22f, #00c853);
    }

    .home-container h1 {
      text-align: center;
      font-size: 42px;
      font-weight: 800;
      color: #000;
      margin-bottom: 30px;
      text-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* h2 headings ab blue */
    .home-container h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      color: #0066cc !important;
      margin: 50px 0 30px;
    }

      .home-container h3 {
      font-size: 24px;
      font-weight: 600;
      color: #b80000;
      margin: 40px 0 18px;
    }


    .home-container p {
      font-size: 18.5px;
      margin-bottom: 24px;
      text-align: justify;
      color: #222;
    }

    .btn-group {
      text-align: center;
      margin: 45px 0;
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .btn-login    { background: linear-gradient(45deg, #00c853, #00a046); }
    .btn-register { background: linear-gradient(45deg, #ff1744, #d50000); }
    .btn-download { background: linear-gradient(45deg, #0091ea, #0066b2); }

    .btn {
      padding: 18px 45px;
      border-radius: 50px;
      color: white;
      font-weight: 700;
      font-size: 20px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
      transition: all 0.3s;
    }

    .btn:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    }

    /* Gift box ab blue background */
    .gift-box {

      padding: 10px;
      border-radius: 20px;
      text-align: center;
      margin: 10px 0;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .gift-box h2 {
      font-size: 30px;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .gift-code {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 4px;
      background: #0066cc;
      color: #f4f7fa;
      padding: 15px 30px;
      border-radius: 12px;
      display: inline-block;
      margin: 15px 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin: 50px 0;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

    th {
      background: linear-gradient(90deg, #0066cc, #004b99);
      color: white;
      padding: 22px;
      font-size: 20px;
      text-align: left;
    }

    td {
      padding: 18px 22px;
      font-size: 18px;
      border-bottom: 1px solid #eee;
    }

    tr:nth-child(even) { background-color: #f0f8ff; }

    ul {
      margin: 25px 0 35px 40px;
    }

    li {
      font-size: 18.5px;
      margin-bottom: 14px;
      line-height: 1.7;
      color: #222;
    }

    @media (max-width: 868px) {
      .home-container { margin: 20px 15px; padding: 40px 25px; border-radius: 20px; }
      h1 { font-size: 34px; }
      h2 { font-size: 28px; }
      .btn { padding: 16px 35px; font-size: 18px; }
      .btn-group { flex-direction: column; align-items: center; }
      .gift-code { font-size: 22px; letter-spacing: 2px; }
    }


.faq-section {
    margin: 10px 0;
    padding: 50px;
    background: #f8fbff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,102,204,0.5);
  }

  .faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 50px;
  }

  .faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #0066cc solid;
  }

  .faq-item h3 {
    background: linear-gradient(135deg, #f3c22f 0%, #f7d969 100%);
    color: rgb(10, 10, 10);
    padding: 20px 25px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
  }

  .faq-item p {
    padding: 25px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    background: #f8fbff;
  }

  @media (max-width: 768px) {
    .faq-section { padding: 30px 20px; margin: 50px 15px; }
    .faq-section h2 { font-size: 30px; }
    .faq-item h3 { font-size: 18px; padding: 18px; }
    .faq-item p { font-size: 16.5px; padding: 20px; }
  }





   .center-img {
  display: block;
  margin: 30px auto;        
  max-width: 300px;       
  height: auto;          
  border-radius: 8px;    
}

@media (max-width: 768px) {
  .center-img {
    width: 90%;         
  }
}

@media (max-width: 480px) {
  .center-img {
    width: 100%;       
    border-radius: 4px;  
  }
}






    /* ess */

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

  
   
    .about-wrapper {
      max-width: 1200px;
      margin: 40px auto;
      background: #ffffff;
      border-radius: 28px;
      padding: 60px 50px;
      box-shadow: 
        0 25px 80px rgba(0,0,0,0.25),
        0 0 0 12px rgba(243,194,47,0.15);
      border: 3px solid #f3c22f;
      position: relative;
      overflow: hidden;
    }

    .about-wrapper::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 8px;
      background: linear-gradient(90deg, #d32f2f, #ff6b6b, #f3c22f, #00c853);
    }

     .about-wrapper h1 {
      text-align: center;
      font-size: 42px;
      font-weight: 800;
      color: #000;
      margin-bottom: 35px;
      text-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

     .about-wrapper h2 {
      font-size: 30px;
      font-weight: 700;
      color: #16569e;
      margin: 50px 0 22px;
      padding-left: 20px;
      border-left: 6px solid #f3c22f;
      position: relative;
    }

     .about-wrapper h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 20px;
      width: 80px;
      height: 5px;
      background: #f3c22f;
      border-radius: 10px;
    }

     .about-wrapper h3 {
      font-size: 24px;
      font-weight: 600;
      color: #b80000;
      margin: 40px 0 18px;
    }

     .about-wrapper p {
      font-size: 18.5px;
      margin-bottom: 24px;
      text-align: justify;
      color: #222;
    }

   
    .final-msg {
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      color: #000;
      margin: 60px 0 30px;
      padding: 30px;
      background: linear-gradient(135deg, #fffbe6, #fff8e1);
      border-radius: 20px;
      border: 3px dashed #f3c22f;
    }

    .thank-you {
      text-align: center;
      font-size: 26px;
      font-weight: 800;
      color: #d32f2f;
      margin-top: 50px;
      text-shadow: 0 3px 8px rgba(211,47,47,0.3);
    }

    /* Responsive */
    @media (max-width: 868px) {
      .about-wrapper {
        margin: 20px 15px;
        padding: 40px 25px;
        border-radius: 20px;
      }
      h1 { font-size: 34px;}
      h2 { font-size: 26px; }
      h3 { font-size: 22px; }
      p { font-size: 17px; }
      .final-msg { font-size: 21px; padding: 25px; }
      p, li { font-size: 17px; }
      .conclusion-box { font-size: 21px; padding: 35px; }
    
    }

    @media (max-width: 480px) {
      h1 { font-size: 30px; }
      .about-wrapper { padding: 30px 20px; }

    }


     ul {
      margin: 25px 0 35px 40px;
    }

    li {
      font-size: 18.5px;
      margin-bottom: 14px;
      line-height: 1.7;
      color: #222;
    }

   /* Footer Styling */
    footer {
      background-color: #f3c22f; /* Same color as header */
      color: #0e0d0d;
      text-align: center;
      padding: 30px 15px;
      position: relative;
      margin-top: 30px;
    }

    footer .footer-links {
      margin-bottom: 15px;
    }

    footer .footer-links a {
      color: #0a0a0a;
      text-decoration: none;
      margin: 0 15px;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    footer .footer-links a:hover {
      color: #f30a0a;
    }

    footer .footer-bottom {
      font-size: 14px;
      opacity: 0.9;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      footer .footer-links a {
        display: block;
        margin: 10px 0;
        font-size: 18px;
      }
    }