/* Additional styles for enhanced features */
.gift-code {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.code {
    font-family: monospace;
    font-size: 1.2rem;
    background: #e9ecef;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    word-break: break-all;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

    to {
        opacity: 1;
    }
}

.feature-card {
    animation: fadeIn 0.5s ease-in;
}

/* Print styles */
@media print {

    .header,
    .footer {
        background: none;
        color: #000;
    }

    .btn {
        display: none;
    }
}


/* tiranga game page css */

/* Header Wrapper */
.custom-header {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background-color: #5d5d5d;
  padding: 20px 30px;
  display: flex;
  justify-content: flex-end;
}

.auth-buttons {
  display: flex;
  gap: 60px;
}

.auth-btn {
  padding: 10px 20px;
  background-color: #edd07f;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.auth-btn:hover {
  background-color: #e2c55d;
}

/* Nav Bar */
.nav-bar {
  background-color: #edd07f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Toggle Button (mobile only) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #333;
}

/* Download Button */
.download-btn a {
  background: linear-gradient(45deg, #5ee7b9, #3ddc84);
  color: white;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: background 0.3s ease;
}

.download-btn a:hover {
  background: linear-gradient(45deg, #44cfa1, #34bb76);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #edd07f;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }

  .download-btn {
    margin-top: 10px;
  }

  .nav-bar {
    align-items: flex-start;
  }
}


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #111827;
}

.tiranga-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}



.tiranga-heading {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.tiranga-container h2 {
  font-size: 30px;
  margin-top: 30px;
  color: #1e3a8a;
}

.tiranga-container h3 {
  margin-top: 25px;
  color: #2563eb;
  font-size: 24px;
}

.tiranga-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

/* Buttons */
.tiranga-buttons {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.tiranga-btn {
  color: white;
  padding: 20px 35px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Individual button colors */
.btn-register {
  background: linear-gradient(45deg, #5ee7b9, #3ddc84);
}
.btn-register:hover {
  background: linear-gradient(45deg, #44cfa1, #2fb76d);
}

.btn-download {
  background: linear-gradient(45deg, #ff7b7b, #ff3b3b);
}
.btn-download:hover {
  background: linear-gradient(45deg, #e56767, #d92a2a);
}

.btn-login {
  background: linear-gradient(45deg, #5cb6ff, #2a8dff);
}
.btn-login:hover {
  background: linear-gradient(45deg, #4aa0e6, #1f75d1);
}


/* 📱 Mobile Responsive */
@media (max-width: 600px) {
  .tiranga-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .tiranga-btn {
    width: 80%;
    max-width: 150px;
    margin-bottom: 10px;
  
  }
}

/* Gift Code */
.gift-title {
  color: #2563eb;
  font-size: 24px;
  margin: 25px 0 10px;
  align-items: center;
  text-align: center
}

.gift-code {
  font-size: 20px;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  font-family: monospace;
  color: #000;
  background-color: #f9fafb;
  width: fit-content;
  margin: auto;
}

/* Table */
.tiranga-table {
  margin-top: 30px;
  overflow-x: auto;
}

.tiranga-table table {
  width: 100%;
  border-collapse: collapse;
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
}

.tiranga-table th, .tiranga-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.tiranga-table th {
  background-color: #f1f5f9;
  font-weight: 600;
  width: 30%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tiranga-heading {
    font-size: 24px;
  }

  .tiranga-buttons {
    flex-direction: column;
  }

  .tiranga-btn {
    width: 100%;
    text-align: center;
  }

  .tiranga-container p {
    text-align: left;
    font-size: 16px;
  }
  .tiranga-container h1{
    font-size: 28px;
  }
  .tiranga-container h2{
    font-size: 24px;
  }

  .tiranga-container h3{
    font-size: 20px;
  }
}


/* Image Styling */
.tiranga-image-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.tiranga-app-img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Tiranga Features List */
.tiranga-features {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.tiranga-features li {
  background-color: #f9fafb;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.tiranga-features li strong {
  color: #111827;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .tiranga-features li {
    font-size: 16px;
    padding: 10px 14px;
  }
}
.tiranga-features {
  list-style: disc;
  list-style-position: inside;
  padding-left: 20px;
}


.tiranga-faq-section {
  padding: 40px 20px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.faq-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #1e40af;
}

.faq-list {
  max-width: 1100px;
  margin: auto;
}

.faq-list h3 {
  margin-top: 25px;
  font-size: 24px;
  color: #1e3a8a;
}

.faq-list p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 24px;
  }

  .faq-list h3 {
    font-size: 18px;
  }

  .faq-list p {
    font-size: 14px;
  }
}


.simple-footer {
  background-color: #eed083;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #000;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-container p {
  margin: 0;
}

.footer-container a {
  color: #000;
  text-decoration: underline;
  margin-left: 15px;
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container a {
    display: block;
    margin: 5px 0;
  }

  .footer-links {
    margin-top: 10px;
  }
}
