body {
      margin: 0;
      font-family: 'Roboto Condensed', sans-serif;
      background: #f5f5f5;
      line-height: 1.9;
    }

    /* Header */
    .header {
      background: #2c316f;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      position: sticky;
      top: 0;
     
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      font-size: 22px;
      cursor: pointer;
    }

    .logo img {
      height: 40px;
      width: auto;
      border-radius: 6px;
    }

    /* Nav Links (Desktop) */
    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 6px 10px;
      border-radius: 6px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #ffcc00;
    }

    /* Dropdown (Desktop) */
    .dropdown-content {
      display: none;
      position: absolute;
      background: #3b418a;
      top: 35px;
      left: 0;
      min-width: 160px;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    }

    .dropdown-content a {
      display: block;
      padding: 10px;
      color: white;
      text-decoration: none;
      transition: background 0.3s;
    }

    .dropdown-content a:hover {
      background: #4a50a3;
    }

    .dropdown-active .dropdown-content {
      display: block;
    }

    /* Buttons */
    .buttons {
      display: flex;
      gap: 10px;
    }

    .btn {
      padding: 8px 16px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-size: 14px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .btn-login {
      background: #ffffff;
      color: #2c316f;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    }

    .btn-download {
      background: #ffcc00;
      color: #2c316f;
      box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    }

    .btn-login:hover { background: #ddd; }
    .btn-download:hover { background: #f5b800; }

    /* Toggle button */
    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      user-select: none;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      z-index: 998;
    }

    /* Side menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 260px;
      height: 100%;
      background: #2c316f;
      padding: 80px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      transition: left 0.3s ease;
      z-index: 999;
    }

    .side-menu.active {
      left: 0;
    }

    .side-menu a {
      color: white;
      font-size: 18px;
      text-decoration: none;
      padding: 8px 0;
      border-radius: 6px;
      display: block;
    }

    .side-menu a:hover {
      background: rgba(255, 255, 255, 0.15);
      color: #ffcc00;
    }

    /* Dropdown (Mobile) */
    .side-dropdown {
      display: none;
      flex-direction: column;
      margin-left: 15px;
    }

    .side-dropdown a {
      font-size: 16px;
    }

    .side-dropdown-btn {
      cursor: pointer;
    }

    .side-dropdown-btn::after {
      content: " ▼";
      font-size: 14px;
    }

    .side-dropdown-btn.active::after {
      content: " ▲";
    }

    .side-menu .buttons {
      flex-direction: column;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; color: white; }
    }

    /* Banner */
    .banner-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background: white;
    }

    .banner-container img {
      width: 100%;
      max-width: 1000px;
      height: 500px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      display: block;
    }

    @media (max-width: 600px) {
      .banner-container {
        padding: 10px;
      }
       .banner-container img {
      width: 90%;
      height: 250px;
      
    }
    }

        .tiranga-section {
      max-width: 1200px;
      background: white;
      margin: 40px auto;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      text-align: center;
    }

    .tiranga-section h1{
      font-size: 38px;
      color: #2c316f;
      margin-bottom: 15px;
    }

    .tiranga-section p {
      font-size: 18px;
      color: #333;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 20px;
    }

    .btn {
      padding: 12px 28px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-register {
      background: #ff6600;
      color: white;
    }

    .btn-logins {
      background: #2c316f;
      color: white;
    }

    .btn-download {
      background: #ffcc00;
      color: #2c316f;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    @media (max-width: 600px) {
      .tiranga-section {
        margin: 20px;
        padding: 20px;
      }

      .tiranga-section h2 {
        font-size: 24px;
      }

      .tiranga-section p {
        font-size: 15px;
      }
    }

     .content-wrapper {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
  }

    .content-wrapper h2 {
      color: #222;
      margin-bottom: 10px;
      font-size: 30px;
    }
    .content-wrapper p {
      max-width: 1100px;
      margin: 0 auto 20px auto;
      font-size: 18px;
      color: #555;
    }
    .gift-code {
      font-weight: bold;
      font-size: 18px;
      color: #0d6efd;
      margin: 20px 0;
      letter-spacing: 2px;
    }
    .table-container {
      max-width: 800px;
      margin: 0 auto;
      overflow-x: auto;
      box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
      border-radius: 8px;
      background: white;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 16px;
    }
    thead {
      background: #0d6efd;
      color: white;
    }
    th, td {
      padding: 12px 15px;
      border-bottom: 1px solid #ddd;
      text-align: left;
    }
    tr:last-child td {
      border-bottom: none;
    }
    th {
      font-size: 18px;
      text-align: center;
    }
    @media (max-width: 600px) {
      body {
        padding: 10px;
      }
      table, th, td {
        font-size: 14px;
      }
      .gift-code {
        font-size: 16px;
      }
    }

    /* Mobile responsiveness */
@media (max-width: 768px) {
  .gift-code {
    font-size: 16px;        
    letter-spacing: 1px;   
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .gift-code {
    font-size: 15px;       
    padding: 6px 10px;
  }
}

/* nrml img */
.center-img {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
.center-img img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
}

/* banner type img */
.tiranga-img-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  padding: 0 15px; /* optional: adds spacing on mobile */
}

.tiranga-img {
  max-width: 100%;
  width: 100%;
  max-width: 600px;  /* limits size on desktop */
  height: auto;
  border-radius: 10px;
}



    /* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 10px;
}

/* Headings */
.container h2 {
  color: #2c316f;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
  border-left: 5px solid #0d6efd;
  padding-left: 10px;
}

.container h3 {
  color: #222;
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.container h4 {
  color: #222;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

/* Paragraphs */
 .container p {
  margin-bottom: 18px;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* Ordered and Unordered Lists */
 .container ul, ol {
  margin: 15px 0 20px 20px;
  padding-left: 20px;
}

.container ul li, ol li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #444;
  line-height: 1.5;
}

/* Custom List Style for UL */
.container ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2c316f;
  font-size: 18px;
}

/* Ordered List Numbers */
.container ol {
  counter-reset: list;
}

.container ol li {
  list-style: decimal;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .container h2 {
    font-size: 20px;
  }
  .container h3 {
    font-size: 18px;
  }
  .container p, ul li, ol li {
    font-size: 15px;
  }
}

.faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-section h2 {
  text-align: center;
  color: #222;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 20px;
  padding: 15px 20px;
  border-left: 5px solid #0d6efd;
  background: #fafafa;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #f0f8ff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0d6efd;
}

.faq-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}

 .footer {
    background: #2c316f;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
  }

  .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0 0 15px 0;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
  }

  .footer-links a:hover {
    color: #ffcc00;
  }

  .footer-bottom {
    font-size: 14px;
    opacity: 0.8;
  }


  /* about */
     .about-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-container h1 {
  text-align: center;
  color: #2c316f;
  margin-bottom: 30px;
  font-size: 2.7em;
  font-weight: 700;
  position: relative;
}

.about-container h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #2c316f;
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.about-container h2 {
  margin-top: 40px;
  color: #333;
  font-size: 1.8em;
  font-weight: 600;
  border-left: 6px solid #2c316f;
  padding-left: 14px;
}

.about-container p {
  margin: 14px 0;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555;
}

.about-container ul {
  margin: 15px 0 15px 25px;
  padding: 0;
}

.about-container ul li {
  margin-bottom: 8px;
  font-size: 1.08em;
  position: relative;
  padding-left: 25px;
  list-style: none;
}

.about-container ul li::before {
  content: '✔';
  color: #2c316f;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .about-container {
    padding: 25px 20px;
    margin: 20px auto;
  }
  .about-container h1 {
    font-size: 2.2em;
  }
  .about-container h2 {
    font-size: 1.5em;
  }
  .about-container p,
  .about-container ul li {
    font-size: 1em;
  }
}
